cluster.routing.allocation.disk.watermark.high 设置 代码示例
时间: 2024-05-05 21:21:40 浏览: 238
路由配置实例
下面是一个 Elasticsearch 集群中设置 `cluster.routing.allocation.disk.watermark.high` 参数的示例代码:
```bash
curl -XPUT -H "Content-Type: application/json" http://localhost:9200/_cluster/settings -d '{
"persistent": {
"cluster.routing.allocation.disk.watermark.high": "90%"
}
}'
```
这会将 `cluster.routing.allocation.disk.watermark.high` 参数设置为 90%。当集群中的任何一个节点的磁盘使用率超过 90% 时,该节点将不再接受新的分片分配。请注意,这是一个持久性设置,因此它将一直保持,直到您明确地将其更改为其他值。
阅读全文