Hi,
I could see some surprising behavior from elastic search , please see below.
For one index, its returning different count with different casing. For one index, it is same. Is there some setting at index level for case sensitive querying?
GET customevent-2017.05/_search
{
"query": {"match": {
"EventTemplateName": "CustomEvent"
}}
}
hits : 42172940
GET customevent-2017.05/_search
{
"query": {"match": {
"EventTemplateName": "customevent"
}}
}
hits : 0
GET customevent/_search
{
"query": {"match": {
"EventTemplateName": "CustomEvent"
}}
}
hits : 1044672074
GET customevent/_search
{
"query": {"match": {
"EventTemplateName": "customevent"
}}
}
hits: 1044672074