Hi all,
When I make query_string search exact phrase in Elasticsearch,
POST /myindex_*/_search
{
"query": {
"query_string": {
"query": "\"Classe A\""
}
}
The query is run and shows hits, but shows below performance issue:
"failed to create query: field expansion for [*] matches too many fields, limit: 1024, got: 1779"
If I increase field limit, it may again cause performance issue.
Anyway we can overcome this issue for the query.