This documentation contains work-in-progress information for future Elastic Stack and Cloud releases. Use the version selector to view supported release docs. It also contains some Elastic Cloud serverless information. Check out our serverless docs for more details.
Reimplementing and extending the analyzers
editReimplementing and extending the analyzers
editThe polish
analyzer could be reimplemented as a custom
analyzer that can
then be extended and configured differently as follows:
PUT /stempel_example { "settings": { "analysis": { "analyzer": { "rebuilt_stempel": { "tokenizer": "standard", "filter": [ "lowercase", "polish_stop", "polish_stem" ] } } } } }