Analyzed or not, we want to limit length of one token in ES. Is there a way to enforce this?
E.g.
- "Quick brown fox SomeTextWithoutSpacesExceedingLimit" to "Quick brown fox SomeTextTruncatedWithConfiguredLimit".
- "SomeTextWithoutSpacesExceedingLimit" to "SomeTextTruncatedWithConfiguredLimit"
Here we want to truncate "SomeTextWithoutSpacesExceedingLimit" to some configurable limit.
Thank you.