首页 > 其他分享 >ElasticSuite but this cluster currently has [1000]/[1000] maximum shards open

ElasticSuite but this cluster currently has [1000]/[1000] maximum shards open

时间:2022-11-25 13:57:20浏览次数:42  
标签:10000 currently shards maximum cluster open 1000

分析: Elasticsearch 7.x 默认 cluster.max_shards_per_node 为 1000

操作:

调整分片为每个节点的分片为10000

通过API 进行修改

PUT /_cluster/settings
    {
      "persistent": {
        "cluster": {
          "max_shards_per_node":10000
        }
      }
    }

标签:10000,currently,shards,maximum,cluster,open,1000
From: https://www.cnblogs.com/itcastwzp/p/16924881.html

相关文章