У меня есть несколько полей elasticsearch, которые я не хочу анализировать перед индексацией. Я прочитал, что правильный способ сделать это - изменить отображение индекса. Прямо сейчас мое сопоставление выглядит следующим образом:
{
"test" : {
"general" : {
"properties" : {
"message" : {
"type" : "string"
},
"source" : {
"type" : "string"
}
}
}
}
}
И я бы хотел, чтобы это выглядело так:
{
"test" : {
"general" : {
"properties" : {
"message" : {
"type" : "string",
"index" : "not_analyzed"
},
"source" : {
"type" : "string"
}
}
}
}
}
Я пытаюсь изменить настройки с помощью
client.admin().indices().prepareCreate("test")
.setSettings(getGrantSettings());
Где getGrantSettings() выглядит следующим образом:
static Settings getGrantSettings(){
JSONObject settingSource = new JSONObject();
try{
settingSource.put("mapping", new JSONObject()
.put("message", new JSONObject()
.put("type", "string")
.put("index", "not_analyzed")
));
} catch (JSONException e){
e.printStackTrace();
}
Settings set = ImmutableSettings.settingsBuilder()
.loadFromSource(settingSource.toString()).build();
return set;
}