Possible bug when running an heavy Query

Hi @paolodipietro58 ,

I suggest you to read this 2 posts.

Your DBMS is dying due to garbage collection issues, this line 2022-04-29 16:15:00.868+0000 WARN [o.n.k.i.c.VmPauseMonitorComponent] Detected VM stop-the-world pause: {pauseTime=30391, gcTime=10186, gcCount=2} means that your db paused for more than 30 seconds (and I guess its not the only pause. This is mainly due to lack of query tuning.

Can you split your logic of transaction creation and other elements in a way that the Plan of each query doesn't contain any eager operation?

Regards,

Bennu