是否可以在顶级弹性搜索分析插件上添加额外的同义词列表?
我感兴趣的分析插件是以下链接中的波兰分析器: https://www.elastic.co/guide/en/elasticsearch/plugins/current/analysis-stempel.html 但是在页面上却说这是不可配置的。
我想要做的是在该波兰语分析器的顶部添加额外的synonym list并成为polish_synonym分析器。有可能吗?
以下是我的索引映射:
"mappings": {
"question": {
"properties": {
"question": {
"type": "text", "analyzer": "polish",
"fields": {
"with_synonym": {"type": "text", "analyzer": "polish_synonym"}
}
},
"answer": {"type": "text"}
}
}
}