Hello everyone,
I am new to elasticsearch and still trying out a few things.
I have an ELK deployment with a single node with multiple indexes and shards . Are the search queries run on the data sequential or are they parallel in execution?
For example lets say I have two queries:
1- query={“bool”: {“must” : [{“match”: {“Object2Path.string”: “nginx”}},{“match”: {“message.type”: “RECORD_EVENT”}}]}}
2- query={“bool”: {“must” : [{“match”: {“TITLE.string”: “newtitle”}},{“match”: {“message.type”: “RECORD_SUBJECT”}}]}}
If I run both of them at the same time, are they executed one after the other or are they executed in parallel?