Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Apache Ignite - (jvm-pause-detector-worker) Possible too long JVM pause:

Tags:

ignite

After using apache ignite 2.6, I am getting this warning constantly on JBoss start and stop. Could you please help me to know whats wrong configuration will lead this warnings.

Please let me know if you need any more details

like image 514
Sanjay Avatar asked Sep 19 '18 07:09

Sanjay


1 Answers

Most probably, JVM is experiencing long garbage collection pauses. You can configure detailed GC logs to see how much time is spent in GC: https://apacheignite.readme.io/docs/jvm-and-system-tuning#section-detailed-garbage-collection-stats

Try adding more heap to Ignite process or tuning the GC. Here is the documentation on GC tuning: https://apacheignite.readme.io/docs/jvm-and-system-tuning#garbage-collection-tuning

like image 186
Denis Avatar answered Sep 24 '22 04:09

Denis