【发布时间】:2015-03-01 00:20:09
【问题描述】:
我正在尝试使用 Curl 在 Elastic Search 中运行以下搜索查询:
curl -XGET 'http://localhost:9200/db/table_one/_search?q=Summary:None'
我不断收到以下错误:
{"error":"SearchPhaseExecutionException[Failed to execute phase [query], all shards failed]","status":503}
我无法调试这个。我编写 curl 命令的方式是否存在特定问题?谢谢!(我的数据库名称是 db,我正在搜索的表是 table_one-我使用 RethinkDB)
【问题讨论】:
-
查看索引状态
curl -XGET http://localhost:9200/db/_status?pretty=1
标签: curl elasticsearch rethinkdb