Query Order of Execution

What is the order of execution of all the clauses inside the Bool clause , are they executed in parallel by elastic search and then aggregated or are they executed sequentially one after another ?

POST _search
{
"query": {
"bool" : {
"must" : {
"term" : { "user" : "kimchy" }
},
"filter": {
"term" : { "tag" : "tech" }
},
"must_not" : {
"range" : {
"age" : { "gte" : 10, "lte" : 20 }
}
},
"should" : [
{ "term" : { "tag" : "wow" } },
{ "term" : { "tag" : "elasticsearch" } }
],
"minimum_should_match" : 1,
"boost" : 1.0
}
}
}

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.