When i'm using elastic search , i've to indecies it first. In this process i blindly using "SNOWBALL" , "KEYWORD" n analyzer coloumn. What is the main use of Analyzer (I know it is a booster) but it helps me in elastic search n What is the key word "Snowball" mean?

'data.description': {'analyzer': 'snowball', 'type': 'string'},
'data.title': {'analyzer': 'snowball', 'type': 'string'}
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Analyzers are process which extracts indexable terms from text given for indexing. For example in the text "i am a dinosaur from modern age" When this is analyzed against "stop word" analyzer only dinosaur, modern and age keywords are stored in the index. Which means if you search for "am" , though the word is present in the text you indexed , it wont point to that indexed document.

Similarly snowball is a combination of stopword , lowercase and standard analyzer - http://www.elasticsearch.org/guide/reference/index-modules/analysis/snowball-analyzer.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.