Hello Prabhat,
1. From your report I can see in the above graph your application is suffering from consecutive full GC problem. When a full GC event runs, it pauses the application completely for several seconds and the response time of your application transactions will degrade.
Here are few recommendations:
a. Increase JVM Heap Size:
Try to increase JVM Heap Size and study the results.
b. Increase JVM Count:
Adding more JVM instances is another solution to this problem. When you add more JVM instances, then traffic volume will get distributed. The amount of traffic volume handled by one single JVM instance will go down. If less traffic volume is sent to a JVM instance, then fewer objects will be created. If fewer objects are created, then you will not run into the consecutive Full GC problems.
Edit your Comment