Set the location of search indexes
Data that is added to a DSE Search node is locally indexed on the DSE node. Data changes to one node also apply to the other nodes. DSE Search has its own indexing documents. You can control where the DSE Search indexing documents are saved.
|
It is critical that you locate DSE Apache Cassandra transactional data and Solr-based DSE Search data on separate Solid State Drives (SSDs). Failure to do so will very likely result in sub-optimal search indexing performance. |
By default, each DSE Search index is saved in solr_data_dir/keyspace_name.table_name or as specified by the dse.solr.data.dir system property.
The dataDir parameter in the solrconfig.xml file is not supported.
To set the location of the search indexes:
-
Stop the Search node.
-
Move the
solr.datadirectory to the new location. -
Specify the location at startup or in
dse.yaml.In the following examples, replace
/var/lib/cassandra/solr.datawith the path to your new data directory.-
Dynamically set the location at startup on the command line:
INSTALL_DIRECTORY/bin/dse cassandra -s -Ddse.solr.data.dir=/var/lib/cassandra/solr.data -
Permanently set the location in
dse.yaml:solr_data_dir: /var/lib/cassandra/solr.data
-
-
Restart the node.