mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-04-25 15:47:23 -04:00
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.
26 lines
475 B
Text
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[]
|