https://www.cnblogs.com/xietianhua/p/11345641.html
https://blog.csdn.net/zhangsaho/article/details/104005741
https://www.elastic.co/guide/cn/elasticsearch/guide/current/index-settings.html
number_of_shards每个索引的主分片数,默认值是 5 。这个配置在索引创建后不能修改。number_of_replicas每个主分片的副本数,默认值是 1 。对于活动的索引库,这个配置可以随时修改。
例如,我们可以创建只有 一个主分片,没有副本的小索引:
PUT /my_temp_index
{
"settings": {
"number_of_shards" : 1,
"number_of_replicas" : 0
}
}
然后,我们可以用 update-index-settings API 动态修改副本数:
PUT /my_temp_index/_settings
{
"number_of_replicas": 1
}
PUT方式
http://localhost:9200/索引名称
参数
{
"settings":{
"number_of_shards":1,
"number_of_replicas":0
}
}