Hi all,
I use the following request to perform a terms query with many terms:
{
"query" : {
"terms" : {
"users" : {
"index" : "termset",
"type" : "termset",
"id" : "TERMSET1",
"path" : "terms"
}
}
}
}
As my TERMSET1 is very big, I hit the maxbooleanclauses exception.
I tried to switch to "filter context", but then I get the exception "org.elasticsearch.index.query.QueryParsingException: request does not support [filter]".
Is the only way to perform a query using a big term set is to increase the maxbooleanclauses limit?
Thank you,