0

Do you please have any idea about the number of analysables formats in ElasticSearch?

Thank you

Regards

Mawassa
  • 5
  • 2

1 Answers1

0

there is no limit - there are the following default analysers:

  • Standard Analyzer
  • Simple Analyzer
  • Whitespace Analyzer
  • Stop Analyzer
  • Keyword Analyzer
  • Pattern Analyzer
  • Language Analyzers
  • Snowball Analyzer
  • Custom Analyzer

But you can easily define your own analyser to meet your own specific needs.

Olly Cruickshank
  • 6,120
  • 3
  • 33
  • 30
  • I don't understand your comment. Could you rephrase it? – Olly Cruickshank Dec 22 '14 at 13:34
  • Yes - as per my answer, you can create an analyser to support whatever format you are working with. Elasticsearch is designed to work with free text but I use it heavily with EDI formats such as EDIFACT, X12, XML, Fixed length, CSV, etc. – Olly Cruickshank Dec 22 '14 at 13:43
  • 300 is a meaningless, abitrary number - it can support any flavour of CSV or XML. But you could find it doesn't work well for some Fujitsu char encoded binary document containing packed decimals. It all depends on your requirement. – Olly Cruickshank Dec 22 '14 at 14:04