4

我正在尝试在弹性搜索服务器中对我的字段实施完成建议。当我尝试执行 curl 命令时

curl -X POST localhost:9200/anisug/_suggest?pretty -d '{
 "test" : {
    "text" : "n",
    "completion" : {
        "field" : "header"
    }
}
}'

我得到一个例外:

ElasticSearchException[Field [header] 不是完成建议字段]。

我错过了什么?

4

1 回答 1

5

我认为,在定义anisug的映射时,您需要设置完成建议的标题字段。例如,您可以使用这个

curl -X PUT localhost:9200/anisug/_mapping -d '{
  "test" : {
        "properties" : {
            "name" : { "type" : "string" },
            "header" : { "type" : "completion",
                          "index_analyzer" : "simple",
                          "search_analyzer" : "simple",
                          "payloads" : true
            }
         }
    }
}'

同样,在索引数据时,您需要发送额外的完成信息。欲了解更多信息,请访问此链接

于 2013-10-31T10:21:18.750 回答