elasticsearch/docs/reference/tab-widgets/multi-data-path.asciidoc
James Rodewig 485e7deaa0
[DOCS] Re-add docs for multiple data paths (MDP) (#78342)
We deprecated support for multiple data paths (MDP) in 7.13. However,
we won't remove support until after 8.0.

Changes:

* Reverts PR #72267, which removed MDP docs
* Removes a related item from the 8.0 breaking changes.
2021-09-28 09:20:45 -04:00

26 lines
475 B
Text

// tag::unix[]
Linux and macOS installations support multiple Unix-style paths in `path.data`:
[source,yaml]
----
path:
data:
- /mnt/elasticsearch_1
- /mnt/elasticsearch_2
- /mnt/elasticsearch_3
----
// end::unix[]
// tag::win[]
Windows installations support multiple DOS paths in `path.data`:
[source,yaml]
----
path:
data:
- "C:\\Elastic\\Elasticsearch_1"
- "E:\\Elastic\\Elasticsearch_1"
- "F:\\Elastic\\Elasticsearch_3"
----
// end::win[]