Amazon Elastic Search- Install Hunspell Stemmer
Asked Answered
L

1

7

I want to use some dictionary based stemming via the hunspell token filter. I am using Amazon Elastic Search, but not getting how to configure these plugins to my domain. If any other dcitionary stemmer is available in AWS ES then it will be helpful. This service is turning out to be useless.

Leviathan answered 11/1, 2016 at 17:3 Comment(2)
Hi, have you figure out this problem? I cant find a solution eitherEntremets
I'm also looking for a solution to thisTonietonight
B
-1

Looks like there is no way to do this. But to get the stemming working, i have used english stemmer, which works well for english words.

I have created a custom analyzer with following settings:

"analysis": {
      "filter": {
        "english_stemmer": {
          "type": "stemmer",
          "language": "english"
        },
        "english_possessive_stemmer": {
          "type": "stemmer",
          "language": "possessive_english"
        }
      },
      "analyzer": {
        "english": {
          "tokenizer": "standard",
          "char_filter": [
            "html_strip"
          ],
          "filter": [
            "asciifolding",
            "english_possessive_stemmer",
            "lowercase",
            "stop",
            "english_stemmer"
          ]
        }
      }
    }
Bushelman answered 10/11, 2017 at 16:18 Comment(1)
The question asks for Hunspell stemmer explicitly, not this algorithmic stemmer token-filter.Henbane

© 2022 - 2024 — McMap. All rights reserved.