弹性搜索不会返回突出显示结果

时间:2016-06-10 20:39:54

标签: elasticsearch

我发送的请求是这样的:

append("text")

但我的回复没有附带突出显示字段。 响应:

{
    "from": 0, 
    "query": {
        "match": {
            "_all": "presidencia"
        }
    }
    ,
    "aggs": {
        //... some aggregations 
    }
    ,
    "highlight": {
        "fields": {
            "nomeOrgaoSuperior": {}
        }
    }
}

我的索引还需要一些额外的配置吗?

1 个答案:

答案 0 :(得分:4)

发现问题。我试图在我的分析仪没有分析的字段上使用突出显示。所以,我的搜索被分析,我试图获得突出显示的字段不是。这使得荧光笔永远不会回归。