修改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的主要内容,如果未能解决你的问题,请参考以下文章

es学习-索引管理

设置elasticsearch的默认分区数和副本数

kafka之partition分区及副本replica升级

es集群share平衡问题

ES集群修改index副本数报错 :index read-only / allow delete

es指定分片以及分片副本数