Skip to content
Advertisement

Hazelcast Java – Query latency maximum optimization

I am currently working on a context where the application uses Hazelcast. The paradigm used is not embedded, therefore server-client is used.

I am having a flow where on a distributed map is executed a query. After all the optimizations I could think of, different combinations with memory format, query cache, indexes etc. The most I could achieve was around ~10 milliseconds latency, which I know it sounds fast for a single operation.

The issue is that the current application is basing some flows on microseconds latency.

So my question is, is that kind of optimization possible for the query engine of Hazelcast. ? Or should I try to focus on maybe updating the business code ?

I am using Hazelcast: 4.2 with a map of around 14 000 items, with a memory count (total) of around 10 MB, so not that big. The testing is done using local workstation.

Advertisement

Answer

So after all the debugging, seems that the query is capped in latency in milliseconds range. Doesn’t seem that there is a way to go towards microseconds in the 4.2 version. When using continous query cache, there seem to be some unnecessary serialization carried out, which in certain cases can take 30-40 percent of the total latency, but even without that the total latency will still stay in the milliseconds range.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement