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}'
本文来自博客园,作者:Linux小飞象,转载请注明原文链接:https://www.cnblogs.com/linux-xiaofeixiang/p/18558823