当前位置:  开发笔记 > 数据库 > 正文

ElasticsearchIllegalArgumentException没有名称的功能

如何解决《ElasticsearchIllegalArgumentException没有名称的功能》经验,为你挑选了1个好方法。

我有一个Elasticsearch节点设置.当我通过curl命令查询索引时,我得到了预期的输出.

curl -XPOST 'http://localhost:9200/one/employee/_search?pretty=true' -d '{
"query": {
"term": {
"emp_id":"4318W01149"
}
}
}'

但是当我通过浏览器运行类似的查询时,我得到错误

http://localhost:9200/one/employee/?q=emp_id:4318W01149

{"error":"ElasticsearchIllegalArgumentException[No feature for name [employee]]","status":400}

我在ES版本1.5.2上

谢谢



1> djaszczurows..:

你忘_searchhttp://localhost:9200/one/employee/?q=emp_id:4318W01149

应该

http://localhost:9200/one/employee/_search?q=emp_id:4318W01149

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