以下のようにします。(Kuromoji Pluginインストール済み前提)
curl -H "Content-Type: application/json" -XPUT http://localhost:9200/[index名] -d '
{
"settings": {
"index":
{ "analysis":
{ "tokenizer":
{ "kuromoji_tokenizer" :
{ "type":"kuromoji_tokenizer" }
},
"analyzer":
{ "analyzer":
{ "type":"custom", "tokenizer": "kuromoji_tokenizer" }
}
}
}
},
"mappings": {
"properties": {
"[カラム名1]": {
"type": "text",
"analyzer": "analyzer"
},
"[カラム名2]": {
"type": "text",
"analyzer": "analyzer"
} }
}
}'