Hello! Wondering is there any documentation on how...
# all-things-deployment
r
Hello! Wondering is there any documentation on how to set up Datahub's Elasticsearch engine to consider Russian morphology in searches? We've been trying to use https://github.com/fooger/elasticsearch-analysis-morphology/, but unfortunately it doesn't work anymore.
e
Hey! For this you may have to fork the repository. If this is okay with you, take a look at the SettingsBuilder here https://github.com/linkedin/datahub/blob/master/metadata-io/src/main/java/com/link[…]metadata/search/elasticsearch/indexbuilder/SettingsBuilder.java It creates the base settings for all indices! Specifically all the analyzers should have a filter specific for russian morphology https://github.com/linkedin/datahub/blob/master/metadata-io/src/main/java/com/link[…]metadata/search/elasticsearch/indexbuilder/SettingsBuilder.java
r
Thanks!