I'm trying to run a specific search in ElasticSearch using the Java API. It works well, but I need to use a snowball analyser.
What I really want is to implement this kind of search: http://localhost:9200/myindex/myfeed/_search?q=myterm:myvalue&analyzer=myanalyzer using Java API.
I'm using a TransportClient with many different types of queries (filtered, match all, text). I'm running multiple search queries in bulk.
I don't see anything relevant to analysers in the SearchRequestBuilder. Am I looking in the wrong place?