使用JSON对象搜索特定索引

时间:2015-05-28 20:21:54

标签: elasticsearch mapping elasticsearch-dsl

我有问题。在我的应用程序中,我正在使用ElasticSearch。我正在将JSON对象发布到我的ElasticSearch服务器。该JSON对象包含DSL查询。所以,我需要做的是查询某些数据的特定索引。

这是查询:

{  
   "query":{  
      "indices":{  
         "indices":[  
            "index-1"
         ],
         "query":{  
            "bool":{  
               "must":[  
                  {  
                     "match":{  
                        "_all":"this is test"
                     }
                  }
               ],
               "should":[  
                  {  
                     "match":{  
                        "country":"PL"
                     }
                  }
               ],
               "minimum_should_match":1
            }
         },
         "no_match_query":"none"
      }
   },
   "from":0,
   "size":10,
   "sort":{  
      "name":{  
         "order":"ASC"
      }
   }
}

查询工作正常,它返回我想要的数据。但是,在ElasticSearch日志中,我可以看到:

[2015-05-28 22:08:20,942][DEBUG][action.search.type] [index] [twitter][0], node[X_ASxSKmn-Bzmn-nHLQ8g], [P], s[STARTED]: Failed to execute [org.elasticsearch.action.search.SearchRequest@7b98e9ad] lastShard [true]
org.elasticsearch.search.SearchParseException: [twitter][0]: query[MatchNoDocsQuery],from[0],size[10]: Parse Failure [Failed to parse source [HERE_COMES_MY_JSON]]
        at org.elasticsearch.search.SearchService.parseSource(SearchService.java:681)
        at org.elasticsearch.search.SearchService.createContext(SearchService.java:537)
        at org.elasticsearch.search.SearchService.createAndPutContext(SearchService.java:509)
        at org.elasticsearch.search.SearchService.executeQueryPhase(SearchService.java:264)
        at org.elasticsearch.search.action.SearchServiceTransportAction$5.call(SearchServiceTransportAction.java:231)
        at org.elasticsearch.search.action.SearchServiceTransportAction$5.call(SearchServiceTransportAction.java:228)
        at org.elasticsearch.search.action.SearchServiceTransportAction$23.run(SearchServiceTransportAction.java:559)
        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
        at java.lang.Thread.run(Thread.java:745)
Caused by: org.elasticsearch.search.SearchParseException: [twitter][0]: query[MatchNoDocsQuery],from[0],size[10]: Parse Failure [No mapping found for [name] in order to sort on]

它试图从twitter索引中获取一些东西,这是一些标准的开箱即用的测试索引。为什么?我指定我想在index-1中搜索,而不是全部搜索。

我找到了解决方法,只是添加: "ignore_unmapped" : true 在排序,但它不是一个真正的解决方案。

我不知道它是否重要,但我设置了一个我正在调用的REST,在我的Java应用程序中,我将JSON传递给ElasticSearch:

Client client = new TransportClient(settings);
SearchRequestBuilder builder = client .prepareSearch().setSource(json);
SearchResponse response = builder.execute().actionGet();

任何人都有任何线索有什么问题?我真的很感激

1 个答案:

答案 0 :(得分:4)

我认为你在这里误解了indices的功能:当某个查询需要针对索引列表执行需要执行的另一个查询时,可以使用它不匹配的索引索引列表。

所以,所有这些都取决于你对此运行的指数。

例如:

GET /abc,test1,test2,test3/_search
{
  "query": {
    "indices": {
      "indices": ["abc"],
      "query": {
        "bool": {
          "must": [
...

将针对abc, test1, test2, test3索引运行。与"indices": ["abc"]匹配的索引将运行query。不匹配的其他索引(在我的示例中为test1, test2, test3)将使no_match_query的查询针对它们运行。

因此,运行indices查询的索引非常重要。而ignoring unmapped fields是前往这里的方式。