单个节点上索引的总分片数超过

编辑

单个节点上索引的总分片数超过编辑

Elasticsearch 试图通过在集群中的节点之间分配数据(索引分片)来利用所有可用资源。

用户可能希望通过配置 index.routing.allocation.total_shards_per_node 索引设置来影响此数据分配,将其设置为自定义值(例如,对于流量很大的索引,设置为 1)。各种限制索引在一个节点上可以有多少分片的配置会导致分片未分配,因为集群没有足够的节点来满足索引配置。

要解决此问题,请按照以下步骤操作

为了让分片分配,我们需要增加可以在一个节点上共置的分片数量。我们将通过检查 index.routing.allocation.total_shards_per_node 索引设置 的配置并增加未分配分片的索引的配置值来实现。

使用 Kibana

  1. 登录 Elastic Cloud 控制台
  2. Elasticsearch 服务 面板中,单击您的部署的名称。

    如果您的部署名称被禁用,您的 Kibana 实例可能不正常,在这种情况下,请联系 Elastic 支持。如果您的部署不包含 Kibana,您只需 先启用它 即可。

  3. 打开您的部署的侧边导航菜单(位于左上角的 Elastic 徽标下方),然后转到 开发工具 > 控制台

    Kibana Console
  4. 检查未分配分片的索引的 index.routing.allocation.total_shards_per_node 索引设置

    response = client.indices.get_settings(
      index: 'my-index-000001',
      name: 'index.routing.allocation.total_shards_per_node',
      flat_settings: true
    )
    puts response
    GET /my-index-000001/_settings/index.routing.allocation.total_shards_per_node?flat_settings

    响应将如下所示

    {
      "my-index-000001": {
        "settings": {
          "index.routing.allocation.total_shards_per_node": "1" 
        }
      }
    }

    表示 my-index-000001 索引在一个节点上可以驻留的总分片数的当前配置值。

  5. 增加 可以分配在一个节点上的总分片数的值,使其更高

    response = client.indices.put_settings(
      index: 'my-index-000001',
      body: {
        index: {
          'routing.allocation.total_shards_per_node' => '2'
        }
      }
    )
    puts response
    PUT /my-index-000001/_settings
    {
      "index" : {
        "routing.allocation.total_shards_per_node" : "2" 
      }
    }

    针对 my-index-000001 索引的 total_shards_per_node 配置的新值从之前的 1 增加到 2total_shards_per_node 配置也可以设置为 -1,表示关于同一个索引的多少个分片可以驻留在一个节点上没有上限。