Hello,
I have recently started using alias filtering with our application and have seen some performance issues. I am using elastic v7.17.1 on a 12 node cluster.
The alias looks like the following (the array in terms contains 391 items):
{
"myIndex" : {
"aliases" : {
"myAlias" : {
"filter" : {
"bool" : {
"filter" : {
"terms" : {
"code" : [
"abc",
"xyz",
etc...
]
}
}
}
}
}
}
}
}
When this new alias is used, I see increased latency and request times on the index:
When I revert the change and go back to using a non-filtered alias, the metrics drop back down. Is there anything with this alias filter that would cause an issue with Elasticsearch v7.17.1?