赞
踩
hash(<文档id>) % <主分片数量>
(如果有3个分片,最终结果必然=0、1、2)节点数 <= 主分片数 * (副本分片数 + 1)
请求参数说明
请求示例
请求方式:PUT
发送请求:
curl -X PUT http://192.168.3.201:9201/index001 -H 'Content-Type:application/json' -d'
{
"settings": {
"number_of_shards": 3,
"number_of_replicas": 1
}
}'
响应结果:
{
"acknowledged": true,
"shards_acknowledged": true,
"index": "index001"
}
请求示例
请求方式:PUT
发送请求:
curl -X PUT http://192.168.3.201:9201/index001 -H 'Content-Type:application/json' -d'
{
"number_of_replicas": 2
}'
响应结果:
{
"acknowledged": true
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。