Ho alcuni campi elasticsearch che non desidero analizzare prima dell'indicizzazione. Ho letto che il modo giusto per farlo è modificando la mappatura dell'indice. In questo momento il mio mappatura assomiglia a questo:Configurare il mapping elasticsearch con java api
{
"test" : {
"general" : {
"properties" : {
"message" : {
"type" : "string"
},
"source" : {
"type" : "string"
}
}
}
}
}
E vorrei a questo aspetto:
{
"test" : {
"general" : {
"properties" : {
"message" : {
"type" : "string",
"index" : "not_analyzed"
},
"source" : {
"type" : "string"
}
}
}
}
}
ho cercato di modificare le impostazioni tramite
client.admin().indices().prepareCreate("test")
.setSettings(getGrantSettings());
Dove getGrantSettings() è simile a:
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;
}
Non vedo una domanda qui. Stai avendo problemi? Se sì, di che tipo? –