how to move elasticsearch data from one server to another

后端 未结 12 1459
悲哀的现实
悲哀的现实 2020-12-12 12:27

How do I move Elasticsearch data from one server to another?

I have server A running Elasticsearch 1.1.1 on one local node with mul

12条回答
  •  死守一世寂寞
    2020-12-12 12:59

    If you can add the second server to cluster, you may do this:

    1. Add Server B to cluster with Server A
    2. Increment number of replicas for indices
    3. ES will automatically copy indices to server B
    4. Close server A
    5. Decrement number of replicas for indices

    This will only work if number of replaces equal to number of nodes.

提交回复
热议问题