当前位置:  开发笔记 > 前端 > 正文

错误:index_not_found_exception

如何解决《错误:index_not_found_exception》经验,为你挑选了2个好方法。

我使用ELK堆栈来分析我的日志文件.我上周测试过,一切正常.

今天,我测试但是当我键入" http:// localhost:9200/iot_log/_count "(iot_log是我的索引模式)时出现此错误:

{"error":{"root_cause":[{"type":"index_not_found_exception","reason":"no such index","resource.type":"index_or_alias","resource.id":"iot_log", "index_uuid":" na ","index":"iot_log"}],"type":"index_not_found_exception","reason":"no such index","resource.type":"index_or_alias","resource.id ":"iot_log","index_uuid":" na ","index":"iot_log"},"状态":404}

我真的搜索了论坛,但我还没有找到解决方案,我想知道这个问题的原因是什么,我该如何纠正呢?



1> Yao Li..:

确保索引iot_log存在并创建它,如果不存在:

curl -X PUT "localhost:9200/iot_log" -H 'Content-Type: application/json' -d'{ "settings" : { "index" : { } }}'



2> 小智..:

您需要action.auto_create_indexelasticsearch.yml文件中设置参数。

例:

action.auto_create_index: -l*,+z*

通过这种配置,将自动创建以“ z”开头的索引,而不会自动创建以“ l”开头的索引。

推荐阅读
jerry613
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有