Elasticsearch 5.6.0 : using kstem in custom analyzer throws error

Been using elasticsearch 5.6.0 in prod environment. now we are replicating prod setup. during which when creating the same index with same settings, it throws illegal argument exception.

{"error":{"root_cause":[{"type":"illegal_argument_exception","reason":"unknown setting [index.name.settings.index.analysis.analyzer.custom_kstem.filter.0] please
check that any required plugins are installed, or check the breaking changes documentation for removed settings"}],"type":"illegal_argument_exception","reason":"unknown setting [index.name.settings.index.analysis.analyzer.custom_kstem.filter.0] please check that any required plugins are installed, or check the breaking changes documentation for removed settings"},"status":400}

setting :
"custom_kstem" : { "filter" : [ "standard","lowercase", "stop", "kstem" ], "type" : "custom", "tokenizer" : "standard" }

now, the same setting throws error even if I remove standard filter from above setting. just tried removing standard as standard is no more supported from 7.0. but I'm facing these issues in 5.6.0. Pls help to solve this. thanks.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.