I\'m trying to set up an ElasticSearch index with different analyzers for the individual fields. However, I can\'t seem to find a way to set field-specific analyzers; here\'s ho
I recommend to you use https://github.com/lmenezes/elasticsearch-kopf can test all analyzers and copy mapp from another index and monitor your indexes... http://www.elasticsearch.org/guide/en/elasticsearch/client/community/current/health.html
To use a field-specific analyzer you need to specify this field in the query. Otherwise, default analyzer is used. Try
curl -XGET 'localhost:9200/twitter/_search?q=message:fight'
or
curl -XGET 'localhost:9200/twitter/_search?df=message&q=looking'