0 votes
in ElasticSearch by
What is an analyzer in Elasticsearch?

1 Answer

0 votes
by

Analyzer helps to transform the data while indexing it to Elasticsearch. It transforms the data internally defined for an index and then index it. Tokenizer and filters collectively make an analyzer.

There are following types of analyzers offered by Elasticsearch -

  • Standard Analyzer
  • Whitespace Analyzer
  • Simple Analyzer
  • Keyword Analyzer
  • Pattern Analyzer
  • Stop Analyzer
  • Language Analyzer
  • Snowball Analyzer
...