I'd set default analyzer for index with this definition:
"index": {
"analysis": {
"analyzer": {
"default": {
"type": 'simple'
}
}
}
}
but then I getting settings of this index with query http://localhost:9200/test/_settings?pretty=true I getting only this, nothing about analyzer:
{
"test" : {
"settings" : {
"index" : {
"creation_date" : "1423575850265",
"uuid" : "Ac8QSGWbTtSCG7ib4VpV3Q",
"number_of_replicas" : "1",
"number_of_shards" : "5",
"version" : {
"created" : "1040299"
}
}
}
}
}