WARNING: Version 6.2 of Elasticsearch has passed its EOL date.
This documentation is no longer being maintained and may be removed. If you are running this version, we strongly advise you to upgrade. For the latest information, see the current release documentation.
Cluster changes
editCluster changes
editCluster name no longer allowed in path.data
editPreviously the cluster name could be used in the path.data
setting with a
warning. This is now no longer allowed. For instance, in the previous version
this was valid:
# Assuming path.data is /tmp/mydata # No longer supported: $ tree /tmp/mydata /tmp/mydata ├── <cluster_name> │ └── nodes │ └── 0 │ └── <etc> # Should be changed to: $ tree /tmp/mydata /tmp/mydata ├── nodes │ └── 0 │ └── <etc>