How can I use my own analyzer implementation with ElasticSearch
analyzer, elasticsearch
Solution
You will need to implement AnalysisBinderProcessor, which would make your analyzer available to elasticsearch and than wrap it into an elasticsearch plugin. The simplest way to do it is by starting with one of the many examples available on github.
Problem
I have implemented own Lucene Analyzer. How can I use it with ElasticSearch?