我正在尝试在弹性搜索中使用同义词功能
以下是我的弹性搜索配置
<elasticsearch:node-client id="client" local="true"/>
<bean name="elasticsearchTemplate" class="org.springframework.data.elasticsearch.core.ElasticsearchTemplate">
<constructor-arg name="client" ref="client"/>
</bean>
根据文档,提到将同义词文件放在相对于Elastic Search的config目录中。
但在我的情况下,我想在创建索引时以编程方式传递同义词文本。用户可以选择在同义词文件中添加其他条目,应用程序将刷新索引并使用更新的同义词文件再次分析数据
创建索引时,可以选择传递设置
elasticSearchTemplate.createIndex(MyClass.class , Map settings )
例如:elasticsearchTemplate.createIndex(Entity.class, "max_result_window = 15000");
但同义词设置在Analyzer模块中。
如果在创建索引
时可以将其作为设置传递,请返回答案 0 :(得分:0)
我找到的最接近的解决方案如下。
@Document(indexName = "myindex", type = "mytype")
@Setting(settingPath = "/mysetting/mysetting.json")
public class Employee implements Serializable {
@Id
private String employeeId;
@Field(type = FieldType.String, analyzer = "synonym_analyzer")
private String transformedTitle ;
以下是mysetting.json
{
"index": {
"number_of_shards": "1",
"number_of_replicas": "0",
"analysis": {
"analyzer": {
"synonym_analyzer": {
"tokenizer": "whitespace",
"filter": [
"synonym_filter"
]
}
},
"filter": {
"synonym_filter": {
"type": "synonym",
"synonyms": [
"english,british",
],
"ignore_case": "true"
}
}
}
}
}