修改es 副本数 replicas
Posted xiaohanlin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了修改es 副本数 replicas相关的知识,希望对你有一定的参考价值。
可以用 update-index-settings API 动态修改副本数:
PUT /my_temp_index/_settings { "number_of_replicas": 1 }
curl -XPUT http://192.168.0.200:9200/index_execution_20200414/_settings -d ‘{"number_of_replicas":1}‘
curl -XPUT http://192.168.0.200:9200/index_execution_20200414/_settings -d ‘{"number_of_replicas":0}‘
以上是关于修改es 副本数 replicas的主要内容,如果未能解决你的问题,请参考以下文章