es动态分配分片_Elasticsearch模块功能之-索引分片分配(Index shard allocation)

Elasticsearch模块功能之-索引分片分配(Index shard allocation)http://www.bieryun.com/1903.html

1、分片分配

包含或者排除filters可以来控制基于节点的索引分配。filters可以在索引级别和集群级别进行设置。如下使用集群级别举例:

设定有4个节点,每个的节点指定一个属性tag(可以随意修改),并赋予特定值,比如节点1设置为node.tag:value1,节点二设置为node.tag:value2等等。创建索引时将index.routing.allocation.include.tag属性设置为value1和value2后,我们将会创建一个只部署在节点1和节点2的索引。命令如下:

[html] view plaincopy

curl -XPUT localhost:9200/test/_settings -d ‘{

“index.routing.allocation.include.tag” : “value1,value2”

}’

如果不想将索引添加到上述两个节点上,可以使用index.routing.allocation.exclude.tag属性。如下:

[html] view plaincopy

curl -XPUT localhost:9200/test/_settings -d ‘{

“index.routing.allocation.exclude.tag” : “value1,value2”

}’

index.routing.allocation.requir

你可能感兴趣的:(es动态分配分片)