Hi,
I created dashboard with some visualization and add filters on it.
But these are case sensitive.
Is it possible to search with lower or upper case. For exam Adam name searchable from Adam or adam or aDaM.
Thanks
Hi,
I created dashboard with some visualization and add filters on it.
But these are case sensitive.
Is it possible to search with lower or upper case. For exam Adam name searchable from Adam or adam or aDaM.
Thanks
Whether search is case sensitive or insensitive is a configuration of the index mapping in Elasticsearch, more specifically the "analyzer": Built-in analyzer reference | Elasticsearch Guide [8.4] | Elastic
It works like this: If a document is indexed into Elasticsearch, the text value is run through the analyzer which is transforming the string in various ways. The resulting string is what's actually put in the index. When searching on the field, the search term is run through the very same analyzer.
So for searches to be case insensitive the analyzer neeeds to lowercase all words. The standard analyzer does that already, so you are probably searching on a keyword field at the moment
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.
© 2020. All Rights Reserved - Elasticsearch
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant logo are trademarks of the Apache Software Foundation in the United States and/or other countries.