gpt4 book ai didi

ElasticSearch 找不到分析器?

转载 作者:行者123 更新时间:2023-12-02 18:01:29 24 4
gpt4 key购买 nike

我在elasticsearch.yml中配置了全局自定义分析器,这是我的配置:

index :
analysis :
analyzer :
titleAnalyzer :
type : custom
tokenizer : ik_max_word
filter : [titleSynoymFilter, englishStemmerFilter]
filter :
titleSynoymFilter :
type : synonym
synonyms_path : ../analysis/title_synonym.txt
englishStemmerFilter :
type : stemmer
name : english

然后我通过运行命令 $ echo 'A drop in the ocean'| 来测试我的分析器。 http:5600/_analyze?analyzer=titleAnalyzer

但是elasticsearch告诉我它找不到分析器:

{
"error": {
"reason": "failed to find analyzer [titleAnalyzer]",
"root_cause": [
{
"reason": "[elastisearch][127.0.0.1:9300][indices:admin/analyze[s]]",
"type": "remote_transport_exception"
}
],
"type": "illegal_argument_exception"
},
"status": 400
}

最佳答案

如果在根路径上调用 /_analyze 未找到分析器,请尝试在该路径上至少指定一个现有索引

$ echo 'A drop in the ocean'| http :5600/some_index/_analyze?analyzer=titleAnalyzer
^
|
add an index here

关于ElasticSearch 找不到分析器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37028981/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com