Java Memory Management Performance Analysis: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
(3 intermediate revisions by the same user not shown)
Line 9: Line 9:
  gc event-type:FULL_COLLECTION -o old-after, old-capacity, heap-capacity ./gc.log  > gc.csv
  gc event-type:FULL_COLLECTION -o old-after, old-capacity, heap-capacity ./gc.log  > gc.csv


Full collection frequency, time, and CPU usage:
=Garbage Collection Time Analysis=
 
Full collection frequency, time and CPU usage:
 
gc event-type:FULL_COLLECTION -o collection-time ./gc.log > full-collection-time.csv


New generation collection frequency, time, and CPU usage:
New generation collection frequency, time, and CPU usage:


=Garbage Collection Time Analysis=
gc event-type:YOUNG_GENERATION_COLLECTION -o collection-time ./gc.log  > new-generation-collection-time.csv


=Leak Analysis=
=Leak Analysis=


{{Internal|YourKit Operations#Memory_Snapshot_Comparison|YourKit Memory Snapshot Comparison}}
{{Internal|YourKit Operations#Memory_Snapshot_Comparison|YourKit Memory Snapshot Comparison}}

Latest revision as of 15:25, 31 August 2017

Internal

Old Generation Analysis

Old generation occupancy after full collections. This is the primary indicator of memory leaks.

gc event-type:FULL_COLLECTION -o old-after, old-capacity, heap-capacity ./gc.log  > gc.csv

Garbage Collection Time Analysis

Full collection frequency, time and CPU usage:

gc event-type:FULL_COLLECTION -o collection-time ./gc.log > full-collection-time.csv

New generation collection frequency, time, and CPU usage:

gc event-type:YOUNG_GENERATION_COLLECTION -o collection-time ./gc.log  > new-generation-collection-time.csv

Leak Analysis

YourKit Memory Snapshot Comparison