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

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

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

  1. See response:
  2. {
  3. "took": 332,
  4. "timed_out": false,
  5. "_shards": {
  6. "total": 9,
  7. "successful": 8,
  8. "skipped": 8,
  9. "failed": 1,
  10. "failures": [
  11. {
  12. "shard": 0,
  13. "index": ".apm-agent-configuration",
  14. "node": "_KJoEVfvT9W8-ezUwcdPlg",
  15. "reason": {
  16. "type": "illegal_argument_exception",
  17. "reason": "Trying to retrieve too many docvalue_fields. Must be less
  18. than or equal to: [100] but was [136]. This limit can be set by
  19. changing the [index.max_docvalue_fields_search] index level
  20. setting."
  21. }
  22. }
  23. ]
  24. },
  25. "hits": {
  26. "total": 0,
  27. "max_score": 0,
  28. "hits": []
  29. }
  30. }

拜托,你知道吗?

webghufk

webghufk1#

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

  1. PUT .apm-agent-configuration/_settings
  2. {
  3. "index.max_docvalue_fields_search": 200
  4. }

相关问题