we are using elastic for very efficient search but it seems to be taking ~800ms for one simple search.. this is when we hit directly using elastic API..
we have our own cluster with 3 nodes where one is as master and other two are data node. we have only one index with one data type as all items are same.. we have around 8 million records in that. we have 5 primary and 2 replica shards.
My query is:
- having 8 million in one index/type might cause this?Should I consider splitting it?
- we always hit master node to write and read, should I consider calling data node for reading?
- anything else I should consider of doing it different to have better performance?
Thanks much in advance.