「 ELASTICSEARCH 」 三月 12, 2021
Elasticsearch maximum shards open 的问题
文章字数 473 阅读约需 1 mins.
https://www.elastic.co/guide/en/elasticsearch/reference/7.10/modules-cluster.html
修改 yml 文件:
cluster.max_shards_per_node 的配置
或者
PUT _cluster/settings
{
"transient": {
"cluster.max_shards_per_node": 5000
}
}
查看全文