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

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

操作:

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

通过API 进行修改

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

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

操作:

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

通过API 进行修改

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