0

我正在遵循本指南并在 scala 中转换此 percolate api java 代码,但是当我在 SBT 中运行它时,它会引发以下异常

[error] (run-main-0) org.elasticsearch.index.percolator.PercolatorException: [myindex] failed to parse query [myDesignatedQueryName]
org.elasticsearch.index.percolator.PercolatorException: [myindex] failed to parse query [myDesignatedQueryName]
    at org.elasticsearch.index.percolator.PercolatorQueriesRegistry.parsePercolatorDocument(PercolatorQueriesRegistry.java:194)
    at org.elasticsearch.index.percolator.PercolatorQueriesRegistry$RealTimePercolatorOperationListener.preIndex(PercolatorQueriesRegistry.java:309)
    at org.elasticsearch.index.indexing.ShardIndexingService.preIndex(ShardIndexingService.java:139)
    at org.elasticsearch.index.shard.service.InternalIndexShard.index(InternalIndexShard.java:420)
    at org.elasticsearch.action.index.TransportIndexAction.shardOperationOnPrimary(TransportIndexAction.java:193)
    at org.elasticsearch.action.support.replication.TransportShardReplicationOperationAction$AsyncShardOperationAction.performOnPrimary(TransportShardReplicationOperationAction.java:511)
    at org.elasticsearch.action.support.replication.TransportShardReplicationOperationAction$AsyncShardOperationAction$1.run(TransportShardReplicationOperationAction.java:419)
    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.index.query.QueryParsingException: [myindex] Strict field resolution and no field mapping can be found for the field with name [content]
    at org.elasticsearch.index.query.QueryParseContext.failIfFieldMappingNotFound(QueryParseContext.java:393)
    at org.elasticsearch.index.query.QueryParseContext.smartFieldMappers(QueryParseContext.java:372)
    at org.elasticsearch.index.query.TermQueryParser.parse(TermQueryParser.java:95)
    at org.elasticsearch.index.query.QueryParseContext.parseInnerQuery(QueryParseContext.java:277)
    at org.elasticsearch.index.query.IndexQueryParserService.parseInnerQuery(IndexQueryParserService.java:321)
    at org.elasticsearch.index.percolator.PercolatorQueriesRegistry.parseQuery(PercolatorQueriesRegistry.java:207)
    at org.elasticsearch.index.percolator.PercolatorQueriesRegistry.parsePercolatorDocument(PercolatorQueriesRegistry.java:191)
    at org.elasticsearch.index.percolator.PercolatorQueriesRegistry$RealTimePercolatorOperationListener.preIndex(PercolatorQueriesRegistry.java:309)
    at org.elasticsearch.index.indexing.ShardIndexingService.preIndex(ShardIndexingService.java:139)
    at org.elasticsearch.index.shard.service.InternalIndexShard.index(InternalIndexShard.java:420)
    at org.elasticsearch.action.index.TransportIndexAction.shardOperationOnPrimary(TransportIndexAction.java:193)
    at org.elasticsearch.action.support.replication.TransportShardReplicationOperationAction$AsyncShardOperationAction.performOnPrimary(TransportShardReplicationOperationAction.java:511)
    at org.elasticsearch.action.support.replication.TransportShardReplicationOperationAction$AsyncShardOperationAction$1.run(TransportShardReplicationOperationAction.java:419)
    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)
[trace] Stack trace suppressed: run last compile:run for the full output.

这是我的代码

object PercolateApiES extends App{
  val node =nodeBuilder().client(true).node()
val client =node.client()

  val qb=QueryBuilders.termQuery("content","amazing")

val res=client.prepareIndex("myindex", ".percolator", "myDesignatedQueryName")
    .setSource(jsonBuilder()
        .startObject()
            .field("query", qb) // Register the query
        .endObject())
    .setRefresh(true) // Needed when the query shall be available immediately
    .execute().actionGet();
val docBuilder = XContentFactory.jsonBuilder().startObject();
docBuilder.field("doc").startObject(); //This is needed to designate the document
docBuilder.field("content", "This is amazing!");
docBuilder.endObject(); //End of the doc field
docBuilder.endObject(); //End of the JSON root object
//Percolate
val response = client.preparePercolate()
                        .setIndices("myindex")
                        .setDocumentType("myDocumentType")
                        .setSource(docBuilder).execute().actionGet();
node.close
}

当我使用 curl 编写这些命令时,它们工作正常

curl -XPUT 'localhost:9200/myindex1' -d '{
  "mappings": {
    "mytype": {
      "properties": {
        "content": {
          "type": "string"
        }
      }
    }
  }
}'

{"acknowledged":true}

curl -XPUT 'localhost:9200/myindex1/.percolator/myDesignatedQueryName' -d '{
    "query" : {
        "term" : {
            "content" : "amazing"
        }
    }
}'


{"_index":"myindex1","_type":".percolator","_id":"myDesignatedQueryName","_version":1,"created":true}

curl -XGET 'localhost:9200/myindex1/content/_percolate' -d '{
    "doc" : {
        "content" : "This is amazing!"
    }
}'

{"took":231,"_shards":{"total":5,"successful":5,"failed":0},"total":1,"matches":[{"_index":"myindex1","_id":"myDesignatedQueryName"}]}

我正在使用弹性搜索-1.4.1 请帮助我在哪里出错,我也想查看结果,因为我不知道如何在代码中执行此操作

matches":[{"_index":"myindex1","_id":"myDesignatedQueryName"}

我如何获取结果,请帮助我并指导我,谢谢

4

1 回答 1

0

ES 1.4.0.Beta1 引入了影响 percolator API 的重大更改。基本上,我们需要index.query.parse.allow_unmapped_fields明确地将true. 有关详细信息,请参阅http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/mapping-dynamic-mapping.html#_unmapped_fields_in_queries

添加此更改的实际对话在他们的 Github https://github.com/elasticsearch/elasticsearch/issues/6664中。

这是另一个相关问题:index.query.parse.allow_unmapped_fields 设置似乎不允许别名过滤器中的未映射字段

于 2014-12-22T05:21:35.973 回答