kibana显示您看到的数据可能不完整或错误

ocebsuys  于 2021-06-15  发布在  ElasticSearch
关注(0)|答案(1)|浏览(1430)

配置我的麋鹿堆栈=>kibana、elasticsearch和filebeat。一切正常,但当我想查看kibana上的日志时,我收到了这个错误
8个碎片中有1个失败您看到的数据可能不完整或错误。

See response:

    {
      "took": 332,
      "timed_out": false,
      "_shards": {
        "total": 9,
        "successful": 8,
        "skipped": 8,
        "failed": 1,
        "failures": [
          {
            "shard": 0,
            "index": ".apm-agent-configuration",
            "node": "_KJoEVfvT9W8-ezUwcdPlg",
            "reason": {
              "type": "illegal_argument_exception",
              "reason": "Trying to retrieve too many docvalue_fields. Must be less 
                than or equal to: [100] but was [136]. This limit can be set by 
                 changing the [index.max_docvalue_fields_search] index level 
                   setting."
            }
          }
        ]
      },
      "hits": {
        "total": 0,
        "max_score": 0,
        "hits": []
      }
    }

拜托,你知道吗?

webghufk

webghufk1#

这个问题可以通过改变 index.max_docvalue_fields_search 该索引的设置:

PUT .apm-agent-configuration/_settings
{
  "index.max_docvalue_fields_search": 200
}

相关问题