【问题标题】:Elastic search nested object auto complete弹性搜索嵌套对象自动完成
【发布时间】:2019-02-20 13:52:56
【问题描述】:

我正在尝试将自动完成功能添加到我在弹性搜索中创建的嵌套对象中。

我设置的映射设置:

"mappings": {
    "doc": {
        "object": {
            "type": "nested",
            "properties": {
                "author": {
                    "type": "text",
                    "analyzer": "hebrew"
                },
                "content": {
                    "type": "text",
                    "analyzer": "hebrew"
                },
                "title": {
                    "type": "text",
                    "analyzer": "hebrew"
                }, 
                "suggest" : { "type": "completion"}
            }
       }
   }
}

我使用的是嵌套对象,因为我还使用 fscrawler 将 json 文档添加到索引中。

我使用以下查询:

{
    "suggest": {
        "suggester" : {
            "prefix" : "test", 
            "completion" : { 
                "field" : "object.suggest"
            }
        }
    }
}

但问题是,无论我输入什么,我都没有得到任何结果。

我是否正确设置了映射?还是查询错误?

【问题讨论】:

  • 您解决了这个问题吗?如果是意味着请在答案中更新它,这样它对我和其他人也有帮助谢谢

标签: elasticsearch


【解决方案1】:

最后对我有用的是为每个我想使用自动建议的对象字段使用建议子字段,例如,如果我想对字段“作者”和“标题”使用自动建议,那么我' d 使用:

"mappings": {
"doc": {
    "object": {
        "type": "nested",
        "properties": {
            "author": {
                "type": "text",
                "analyzer": "hebrew",
                "fields": {
                    "exact": {
                        "type": "text",
                        "analyzer": "hebrew_exact"
                    },
                    "suggest": {
                        "type": "completion",
                        "analyzer": "simple",
                        "preserve_separators": false,
                        "preserve_position_increments": true,
                        "max_input_length": 50
                    }
                }
            },
            "content": {
                "type": "text",
                "analyzer": "hebrew_exact"
            },
            "title": {
                "type": "text",
                "analyzer": "hebrew",
                "fields": {
                    "exact": {
                        "type": "text",
                        "analyzer": "hebrew_exact"
                    },
                    "suggest": {
                        "type": "completion",
                        "analyzer": "simple",
                        "preserve_separators": false,
                        "preserve_position_increments": true,
                        "max_input_length": 50
                    }
                }
            }
        }
    }
}

要使用它,我会使用文档中的建议器搜索字段:“object.title.suggest”。

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2017-07-19
    • 1970-01-01
    • 2023-04-09
    • 1970-01-01
    • 2015-07-30
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多