linux小飞象

导航

elasticsearch修改副本数量

在创建索引前可通过模板确定下副本和分片的数量
通过修改模板修改索引的副本和分片数量,副本:replicas,分片:shards

curl -XPUT -H'Content-Type: application/json' 'http://127.0.0.1:9200/_template/your_template' -d '{"index_patterns":["mintunnel_*"],"order":0,"settings":{"number_of_shards":3,"number_of_replicas":1}}'

已经存在的索引,分片数量不可以修改,副本数量可按下面方法修改

curl -XPUT -H'Content-Type: application/json' 'http://127.0.0.1:9200/your_index/_settings?pretty" -d '{"number_of_replicas":1}'

posted on 2024-11-20 17:21  Linux小飞象  阅读(8)  评论(0编辑  收藏  举报