cluster.asciidoc 703 B

123456789101112131415161718192021222324252627
  1. [[breaking_60_cluster_changes]]
  2. === Cluster changes
  3. ==== Cluster name no longer allowed in path.data
  4. Previously the cluster name could be used in the `path.data` setting with a
  5. warning. This is now no longer allowed. For instance, in the previous version
  6. this was valid:
  7. [source,sh]
  8. --------------------------------------------------
  9. # Assuming path.data is /tmp/mydata
  10. # No longer supported:
  11. $ tree /tmp/mydata
  12. /tmp/mydata
  13. ├── <cluster_name>
  14. │   └── nodes
  15. │   └── 0
  16. │   └── <etc>
  17. # Should be changed to:
  18. $ tree /tmp/mydata
  19. /tmp/mydata
  20. ├── nodes
  21. │   └── 0
  22. │   └── <etc>
  23. --------------------------------------------------