我用于调试日志的Graylog2服务器上存在一些磁盘问题。现在有未分配的分片:
curl -XGET http://host:9200/_cat/shards
graylog_292 1 p STARTED 751733 648.4mb 127.0.1.1 Doctor Leery
graylog_292 1 r UNASSIGNED
graylog_292 2 p STARTED 756663 653.2mb 127.0.1.1 Doctor Leery
graylog_292 2 r UNASSIGNED
graylog_290 0 p STARTED 299059 257.2mb 127.0.1.1 Doctor Leery
graylog_290 0 r UNASSIGNED
graylog_290 3 p STARTED 298759 257.1mb 127.0.1.1 Doctor Leery
graylog_290 3 r UNASSIGNED
graylog_290 1 p STARTED 298314 257.3mb 127.0.1.1 Doctor Leery
graylog_290 1 r UNASSIGNED
graylog_290 2 p STARTED 297722 257.1mb 127.0.1.1 Doctor Leery
graylog_290 2 r UNASSIGNED
....
超过400个分片。我可以删除它们而不会丢失数据,因为它是单节点设置。为了做到这一点,我需要遍历索引(graylog_xxx)和分片(1,2,...)。
如何用Bash循环这个(2个变量)?删除API调用有2个变量,我需要替换它(afaik):
curl -XPOST 'host:9200/_cluster/reroute' -d '{
"commands" : [ {
"allocate" : {
"index" : "$index",
"shard" : $shard,
"node" : "Doctor Leery",
"allow_primary" : true
}
}
]
}'
令我困扰的是,未分配的分片没有节点。但是在API调用中我需要指定一个。
答案 0 :(得分:2)
形成您共享的_cat/shards
输出,它看起来就像是未分配的副本,您只需通过更新群集设置并将副本计数设置为0即可删除,如下所示:
curl -XPUT 'localhost:9200/_settings' -d '{
"index" : {
"number_of_replicas" : 0
}
}'
运行上述卷曲后,您的群集将再次变为绿色。