Search

GC easy – Universal Java GC Log Analyser

Tag

heap size

How to reduce CPU consumption caused by Garbage Collection?

Modern programming languages with automatic garbage collection, while convenient, can lead to excessive CPU usage and increased cloud costs. Strategies to mitigate this include tuning GC parameters, switching algorithms, minimizing object creation, adjusting heap size, and scaling instances. Optimizing these factors enhances application performance and reduces expenses.

DIAGNOSE MEMORY LEAK

Procedures to diagnose and solve all the 5 types of OutOfMemoryErrors that happen within the JVM heap are same. In this article, let's explore how to diagnose these 5 types of OutOfMemoryErrors.

A CASE STUDY: DIFFERENT GC ALGORITHMS BEHAVIOR IN PRODUCTION

On a major B2B application different GC algorithms behaviors were studied. This application is basically a web service provider servicing SOAP and REST requests from its clients.

Up ↑