Configuring Metadata Storage
Prerequisites
Disk size requirements for base and high availability configurations are on the System Requirements page.
Default Location
The default location for metadata storage is the ${DREMIO_HOME}/data
directory.
- For an RPM installation, the default metadata storage location is create for you at
/var/lib/dremio
, however, you can change this location by setting up a custom location. - For a Tarball installation, manually create the directory and add the location to the
dremio.conf
file. It is recommended that you use the default:/data/dremio
Configuration
To customize metadata storage configuration, modify the paths.local
property. To setup a custom metadata storage location:
-
Create your custom directory if it doesn't exist, for example: /data/customDremio
Creating metadata store directorysudo mkdir /data/customDremio && sudo chown dremio:dremio /data/customDremio
-
Add the new location to the
Metadata locationdremio.conf
file in thelocal
field underpaths
. This is done in thedremio.conf
file on the coordinator nodes(s) only.paths: {
local: "/data/customDremio"
}