SlideShare a Scribd company logo
Java Garbage Collector:
Friend or Foe
Krasimir Semerdzhiev
Development Architect / SAP Labs Bulgaria
Agenda
1. Brief historical view
2. Myths and Urban legends
3. GC machinery
4. Try to stay out of trouble
History of Garbage Collection
A long time ago, in a galaxy far far away…
* Counting from [McCarthy 1959]
McCarthy (1959)
LISt Processor (LISP)
Reference counting (IBM)
Naive Mark/sweep GC
Semi-space collector
1959*
Knuth (1973/1978)
Copying collector
Mark/sweep GC
Mark/don’t sweep GC
1970 1990 2000 2011
Appel (1988), Baker (1992)
Generational GC
Train GC
Stop the world
Cheng-Blelloch (2001)
Concurrent
Parallel
Real-Time GC
2003
Bacon, Cheng, Rajan (2003)
Metronome GC
Garbage first GC (G1)
Ergonomics
20091995
Agenda
1. Brief historical view
2. Myths and Urban legends
3. GC machinery
4. Try to stay out of trouble
5. Tools for the masses
Myths
Java and C/C++ performance
Is C/C++ faster than Java?
The short answer: it depends.
/Cliff Click
Myths
My GC cleans up tons of memory – what’s going on.
String s = "c"?
= ref + 8 + (12 + 2) + 4 + 4 + 4 > 34 bytes.
/** The value is used for character storage. */
private final char value[];
/** The offset is the first index of the storage that is used. */
private final int offset;
/** The count is the number of characters in the String. */
private final int count;
/** Cache the hash code for the string */
private int hash; // Default to 0
/** use serialVersionUID from JDK 1.0.2 for interoperability */
private static final long serialVersionUID =
-6849794470754667710L;
Is Java bad at memory management?
public static void main(String[] args) throws Exception {
final long start = Runtime.getRuntime().freeMemory();
final byte[][] arrays = new byte[100][];
for (int i = 0; i < arrays.length; i++) {
arrays[i] = new byte[100];
long current = Runtime.getRuntime().freeMemory();
System.out.println(start + " " + current);
Thread.sleep(1000);
}
}
Agenda
1. Brief historical view
2. Myths and Urban legends
3. GC machinery*
4. Try to stay out of trouble
5. Tony Printezis
* Credits for the GC insights go to
Tony Printezis and his excellent
J1 sessions
Garbage collector
Let’s start with a simple memory example…
Garbage collector
Mark-Sweep
Root object
Mark-Sweep
Garbage collector
Mark-Sweep
Root object
Mark-Sweep – Marking…
Garbage collector
Mark-Sweep
Root object
Free List Root
Mark-Sweep – Sweeping…
Garbage collector
Let’s try another one …
Garbage collector
Mark-Compact
Root object
Mark-Compact
Garbage collector
Mark-Compact
Root object
Mark-Compact – Marking…
Garbage collector
Mark-Compact
Root object
Mark-Sweep – Compacting…
Free Pointer
Garbage collector
Let’s try another one …
Garbage collector
Copying
Root object
Copying
From space
To space Free and unused
Garbage collector
Copying
Root object
Copying – Evacuation
From space
To space Free and unused
Garbage collector
Copying
Root object
Copying – Flipping
From space
To space Free and unused
Free Pointer
Garbage collector
Let’s try another one … ;o)
Garbage collector
Generational Garbage Collection
Generational Garbage Collection – moving to more modern times
Young generation
Old Generation
Allocations
Promotion
Java Heap
Hotspot JVM
Memory layout
Hotspot JVM (Java) heap layout
Young generation
Old Generation
Perm Generation
Everything
else
Java Heap
Hotspot JVM
Memory layout
Hotspot JVM (Java) heap layout
Young generation
Old Generation
Perm Generation
Everything
else
Maximum size is limited:
■ 32 bit -> 2Gb
■ 64 bit -> way larger
If 2Gb is the max for the process – you can’t get it all
for the Java heap only!
Hotspot JVM
Memory layout
Hotspot JVM (Java) heap layout
Survivor spaces
Old Generation
Perm Generation
Young generation
unused
Eden
From To
Hotspot JVM
Memory layout
Hotspot JVM (Java) – (Small) GC running
Survivor spaces
Old Generation
Perm Generation
Young generation
unused
Eden
From To
Hotspot JVM
Memory layout
Hotspot JVM (Java) – (Minor) GC running
Survivor spaces
Old Generation
Perm Generation
Young generation
unused
Eden
From To
Hotspot JVM
Memory details
-Xmx, -Xms, -Xmn
 Control the Java Object heap size only
 Doesn’t have impact on Perm size, native heap and the Thread stack size
-XX:PermSize, -XX:MaxPermSize
 Stores class definitions, methods, statis fields
 Common reason for OOM errors.
-Xss
 Configures the stack size of every thread.
-XX:+UseTLAB, -XX:-UseTLAB, -XX:+PrintTLAB
 Enables the Thread Local Allocation Buffer.
 Since Java SE 1.5 – this is automatically tuned to each and every thread.
TCP Connection buffer sizes – allocated in native space
 Use Socket.setSendBufferSize(int) and Socket.setReceiveBufferSize(int).
 OS will use the smaller of the two or will simply ignore that setting.
Object allocation statistics:
■ Up to 98% of new objects are
short-lived
■ Up to 98% die before another
Mb is allocated
Agenda
1. Brief historical view
2. Myths and Urban legends
3. GC machinery
4. Try to stay out of trouble
OutOfMemoryError
How to proceed?
java.lang.OutOfMemoryError: PermGen space
 Increase the Perm Space – will help if there is no code generation happening
 In case of a leak – the only solution is frequent system restart.
java.lang.OutOfMemoryError: unable to create new native thread
 Decrease –Xmx or –Xss
java.lang.StackOverflowError
 Increase –Xss or fix the corresponding algorithm
IOException: Too many open files (for example)
 Increase the OS file handle limit per process
 Check for leaking file handles
 Physical limit of the VM is 2048 ZIP/JAR files opened at the same time.
java.lang.OutOfMemoryError: Direct buffer memory
 Direct mapped memory – used for java.nio.ByteBuffer
 Increase -XX:MaxDirectMemorySize
Finalizer methods
Good or bad
Again short answer: it depends ;-)
Infrastructure components
 Might be used for debugging/tracing purposes
 Major scenario – closing of critical backend resources
 All finalizer methods are collected separately. No mass-wipe is performed on them!
 Never, ever throw an exception in a finalizer!
Applications
 Avoid finalizers by all means!
Per-request created objects
 Avoid finalizers by all means!
Finalizer queue
Working threads
Finalizer thread (singleton)
Response time peaks
without CMS
All those are full GCs…
No more full GCs…
Response time peaks
with CMS
Garbage Collection Strategies
Does it pay off to play with that?
-XX:+UseSerialGC
 Default state before Java 5. Obsolete!
-XX:+UseParallelGC - Parallel Scavange GC (1.4.2)
 Works on Young Generation only
 Use -XX:ParallelGCThreads to configure it
-XX:+UseParNewGC - Parallel New-Gen GC (5.0)
 Use also –XX:SurvivorRatio and –XX:MaxTenuringThreshold to
define the lifespan of objects in the eden space.
 -XX:+CMSClassUnloadingEnabled to trigger concurrent cleanup of
the Perm space
-XX:+UseConcMarkSweepGC - Concurrent Old-Gen GC
 Default since Java SE 5.
-XX:+UseParallelOldGC - Concurrent Old-Gen GC (5.0)
 Parallel Compaction of Old space
Terms:
• Serial – 1 thing at a
time
• Parallel – work is
done in multiple
threads
• Concurrent – work
happens
simultaneously
Garbage Collection Ergonomics
What’s that?
New way to configure GC – specify:
 Max pause time goal (-XX:MaxGCPauseMillis)
 Throughput goal (-XX:GCTimeRatio)
 Assumes minimal footprint goal
 Use -XX:+UseParallelGC with those.
 Garbage First (G1) GC will be the default in Java SE 7. Released
with JDK 1.6.0_u14 for non-productive usage.
 Enable that for testing via:
 -XX:+UnlockExperimentalVMOptions
 -XX:+UseG1GC
Analyzing Garbage Collection output
Getting GC output is critical for further analysis!
 -verbose:gc get 1 line per GC run with some basic inf
 -XX:+PrintGCDetails get more extended info (perm, eden, tenured)
 -XX:+PrintGCTimeStamps get timestamps since the start of the VM. Allows correlation
 -XX:-TraceClassUnloading get also the unloaded classes – helps tracing leaks
 -Xloggc:gc.log direct GC output to a special file instead of the process output
 -XX:+HeapDumpOnOutOfMemoryError Heap dump generation on OutOfMemory
GC Viewer
GC output viewer
 Import the gc.out file.
 Correlate over time
 So far the most
comprehensive viewer
 Stay tuned and monitor
the Eclipse news ;-)
Visual VM
Supplied by Oracle with JDK
 Free and very comprehensive
 Evolves together with the VM.
 Focus shifting from that to
Mission Control (the Jrockit
profiling solution)
Eclipse Memory Analyzer
Developed by SAP and IBM in Eclipse
 Track GC roots
 Do what-if analysis
 SQL-like query language
 Custom filters
 Track Leaking
classloaders
Garbage Collection – the universal settings
There are NO universal settings! Sorry. :(
 G1 is the first GC, trying to go in that direction and leave the self-tuning to the VM
 You have to test with realistic load!
 You have to test on realistic hardware!
 Tune the GC as you fix the memory leaks which will inevitably show up.
 Try to find the balance of uptime/restart intervals.
Contact Questions?
Krasimir Semerdzhiev
krasimir.semerdzhiev@sap.com

More Related Content

PDF
PDF
Accelerating microbiome research with OpenACC
PPTX
Garbage Collection of Java VM
PPTX
The Internet
PPTX
Sun jdk 1.6 gc english version
PPT
2017 10 17_quantum_program_v2
PDF
Adaptive Linear Solvers and Eigensolvers
PPT
jvm goes to big data
Accelerating microbiome research with OpenACC
Garbage Collection of Java VM
The Internet
Sun jdk 1.6 gc english version
2017 10 17_quantum_program_v2
Adaptive Linear Solvers and Eigensolvers
jvm goes to big data

What's hot (20)

PDF
第11回 配信講義 計算科学技術特論A(2021)
PDF
Exploring Garbage Collection
PDF
Shared Memory Performance: Beyond TCP/IP with Ben Cotton, JPMorgan
PDF
Ping to Pong
PDF
JVM Garbage Collection Tuning
PPTX
Am I reading GC logs Correctly?
PDF
On heap cache vs off-heap cache
PPTX
Scheduling in Linux and Web Servers
PDF
淺談 Java GC 原理、調教和 新發展
PDF
PPTX
Java memory problem cases solutions
PDF
Processing Big Data in Realtime
PDF
Pain points with M3, some things to address them and how replication works
PDF
Fight with Metaspace OOM
PDF
CIFAR-10 for DAWNBench: Wide ResNets, Mixup Augmentation and "Super Convergen...
KEY
証明駆動開発のたのしみ@名古屋reject会議
PDF
【論文紹介】Relay: A New IR for Machine Learning Frameworks
PDF
Kafka short
PDF
FOSDEM 2019: M3, Prometheus and Graphite with metrics and monitoring in an in...
PPTX
Lrz kurs: big data analysis
第11回 配信講義 計算科学技術特論A(2021)
Exploring Garbage Collection
Shared Memory Performance: Beyond TCP/IP with Ben Cotton, JPMorgan
Ping to Pong
JVM Garbage Collection Tuning
Am I reading GC logs Correctly?
On heap cache vs off-heap cache
Scheduling in Linux and Web Servers
淺談 Java GC 原理、調教和 新發展
Java memory problem cases solutions
Processing Big Data in Realtime
Pain points with M3, some things to address them and how replication works
Fight with Metaspace OOM
CIFAR-10 for DAWNBench: Wide ResNets, Mixup Augmentation and "Super Convergen...
証明駆動開発のたのしみ@名古屋reject会議
【論文紹介】Relay: A New IR for Machine Learning Frameworks
Kafka short
FOSDEM 2019: M3, Prometheus and Graphite with metrics and monitoring in an in...
Lrz kurs: big data analysis
Ad

Viewers also liked (6)

PDF
Options for running Kubernetes at scale across multiple cloud providers
DOC
risk assessment
PDF
Eclipse Open Source @ SAP
PPTX
SEO in 2017/18
PDF
Taming the ever-evolving Compliance Beast : Lessons learnt at LinkedIn [Strat...
PPTX
Inside Google's Numbers in 2017
Options for running Kubernetes at scale across multiple cloud providers
risk assessment
Eclipse Open Source @ SAP
SEO in 2017/18
Taming the ever-evolving Compliance Beast : Lessons learnt at LinkedIn [Strat...
Inside Google's Numbers in 2017
Ad

Similar to [BGOUG] Java GC - Friend or Foe (20)

PPT
Performance tuning jvm
PPTX
7 jvm-arguments-v1
PPTX
7 jvm-arguments-Confoo
PDF
OSCON2012TroubleShootJava
PDF
Let's talk about Garbage Collection
PDF
JVM Performance Tuning
PPT
Enhancing the region model of RTSJ
PPTX
Jvm problem diagnostics
PDF
Software Profiling: Understanding Java Performance and how to profile in Java
PDF
State of Java Elasticity. Tuning Java Efficiency - GIDS.JAVA LIVE 2020
PPT
Java8 bench gc
PDF
Mastering java in containers - MadridJUG
PDF
Choosing Right Garbage Collector to Increase Efficiency of Java Memory Usage
PDF
Solr Troubleshooting - TreeMap approach
PDF
Solr Troubleshooting - Treemap Approach: Presented by Alexandre Rafolovitch, ...
PPTX
Вячеслав Блинов «Java Garbage Collection: A Performance Impact»
PPT
Heap & thread dump
PDF
Container Performance Analysis Brendan Gregg, Netflix
PPT
[CCC-28c3] Post Memory Corruption Memory Analysis
PPTX
Performance tuning jvm
7 jvm-arguments-v1
7 jvm-arguments-Confoo
OSCON2012TroubleShootJava
Let's talk about Garbage Collection
JVM Performance Tuning
Enhancing the region model of RTSJ
Jvm problem diagnostics
Software Profiling: Understanding Java Performance and how to profile in Java
State of Java Elasticity. Tuning Java Efficiency - GIDS.JAVA LIVE 2020
Java8 bench gc
Mastering java in containers - MadridJUG
Choosing Right Garbage Collector to Increase Efficiency of Java Memory Usage
Solr Troubleshooting - TreeMap approach
Solr Troubleshooting - Treemap Approach: Presented by Alexandre Rafolovitch, ...
Вячеслав Блинов «Java Garbage Collection: A Performance Impact»
Heap & thread dump
Container Performance Analysis Brendan Gregg, Netflix
[CCC-28c3] Post Memory Corruption Memory Analysis

More from SAP HANA Cloud Platform (15)

PDF
SAP Hack2Build hackathon - SAP Commerce Cloud & Kyma runtime
PDF
Gardener: Managed Kubernetes on Your Terms
PDF
Kyma: Extending Business systems with Kubernetes, Istio and <fill the blank>.
PDF
Using Kubernetes to Extend Enterprise Software
PDF
Kubernetes, Istio and Knative - noteworthy practical experience
PDF
SAP DKOM 2016 | 30154 | SAP HCP Cloud Extensions Intro
PDF
SAP TechEd 2015 | DEV109 | Extending Cloud Solutions from SAP using SAP HANA ...
PDF
SAP D-Code/TechEd 2014|DEV203|Extending SuccessFactors using SAP HANA Cloud P...
PDF
SAP TechEd 2013: CD105: Extending SuccessFactors EmployeeCentral with apps on...
PDF
SAP HANA Cloud Platform Community BOF @ Devoxx 2013
PDF
SAP HANA Cloud Platform: The void between your Datacenter and the Cloud
PDF
SAP HANA Cloud: From Your Datacenter to the Cloud and Back
PDF
OSGI in Java EE servers:Sneak peak
PDF
[BGOUG] Memory analyzer
PDF
JavaOne 2010: OSGI Migrat
SAP Hack2Build hackathon - SAP Commerce Cloud & Kyma runtime
Gardener: Managed Kubernetes on Your Terms
Kyma: Extending Business systems with Kubernetes, Istio and <fill the blank>.
Using Kubernetes to Extend Enterprise Software
Kubernetes, Istio and Knative - noteworthy practical experience
SAP DKOM 2016 | 30154 | SAP HCP Cloud Extensions Intro
SAP TechEd 2015 | DEV109 | Extending Cloud Solutions from SAP using SAP HANA ...
SAP D-Code/TechEd 2014|DEV203|Extending SuccessFactors using SAP HANA Cloud P...
SAP TechEd 2013: CD105: Extending SuccessFactors EmployeeCentral with apps on...
SAP HANA Cloud Platform Community BOF @ Devoxx 2013
SAP HANA Cloud Platform: The void between your Datacenter and the Cloud
SAP HANA Cloud: From Your Datacenter to the Cloud and Back
OSGI in Java EE servers:Sneak peak
[BGOUG] Memory analyzer
JavaOne 2010: OSGI Migrat

Recently uploaded (20)

PDF
NewMind AI Monthly Chronicles - July 2025
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PDF
Machine learning based COVID-19 study performance prediction
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PPTX
A Presentation on Artificial Intelligence
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Approach and Philosophy of On baking technology
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Modernizing your data center with Dell and AMD
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PPTX
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
NewMind AI Monthly Chronicles - July 2025
Advanced methodologies resolving dimensionality complications for autism neur...
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
Machine learning based COVID-19 study performance prediction
Understanding_Digital_Forensics_Presentation.pptx
A Presentation on Artificial Intelligence
Unlocking AI with Model Context Protocol (MCP)
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Approach and Philosophy of On baking technology
Dropbox Q2 2025 Financial Results & Investor Presentation
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
MYSQL Presentation for SQL database connectivity
Review of recent advances in non-invasive hemoglobin estimation
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Digital-Transformation-Roadmap-for-Companies.pptx
Modernizing your data center with Dell and AMD
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication

[BGOUG] Java GC - Friend or Foe

  • 1. Java Garbage Collector: Friend or Foe Krasimir Semerdzhiev Development Architect / SAP Labs Bulgaria
  • 2. Agenda 1. Brief historical view 2. Myths and Urban legends 3. GC machinery 4. Try to stay out of trouble
  • 3. History of Garbage Collection A long time ago, in a galaxy far far away… * Counting from [McCarthy 1959] McCarthy (1959) LISt Processor (LISP) Reference counting (IBM) Naive Mark/sweep GC Semi-space collector 1959* Knuth (1973/1978) Copying collector Mark/sweep GC Mark/don’t sweep GC 1970 1990 2000 2011 Appel (1988), Baker (1992) Generational GC Train GC Stop the world Cheng-Blelloch (2001) Concurrent Parallel Real-Time GC 2003 Bacon, Cheng, Rajan (2003) Metronome GC Garbage first GC (G1) Ergonomics 20091995
  • 4. Agenda 1. Brief historical view 2. Myths and Urban legends 3. GC machinery 4. Try to stay out of trouble 5. Tools for the masses
  • 5. Myths Java and C/C++ performance Is C/C++ faster than Java? The short answer: it depends. /Cliff Click
  • 6. Myths My GC cleans up tons of memory – what’s going on. String s = "c"? = ref + 8 + (12 + 2) + 4 + 4 + 4 > 34 bytes. /** The value is used for character storage. */ private final char value[]; /** The offset is the first index of the storage that is used. */ private final int offset; /** The count is the number of characters in the String. */ private final int count; /** Cache the hash code for the string */ private int hash; // Default to 0 /** use serialVersionUID from JDK 1.0.2 for interoperability */ private static final long serialVersionUID = -6849794470754667710L;
  • 7. Is Java bad at memory management? public static void main(String[] args) throws Exception { final long start = Runtime.getRuntime().freeMemory(); final byte[][] arrays = new byte[100][]; for (int i = 0; i < arrays.length; i++) { arrays[i] = new byte[100]; long current = Runtime.getRuntime().freeMemory(); System.out.println(start + " " + current); Thread.sleep(1000); } }
  • 8. Agenda 1. Brief historical view 2. Myths and Urban legends 3. GC machinery* 4. Try to stay out of trouble 5. Tony Printezis * Credits for the GC insights go to Tony Printezis and his excellent J1 sessions
  • 9. Garbage collector Let’s start with a simple memory example…
  • 12. Garbage collector Mark-Sweep Root object Free List Root Mark-Sweep – Sweeping…
  • 13. Garbage collector Let’s try another one …
  • 17. Garbage collector Let’s try another one …
  • 18. Garbage collector Copying Root object Copying From space To space Free and unused
  • 19. Garbage collector Copying Root object Copying – Evacuation From space To space Free and unused
  • 20. Garbage collector Copying Root object Copying – Flipping From space To space Free and unused Free Pointer
  • 21. Garbage collector Let’s try another one … ;o)
  • 22. Garbage collector Generational Garbage Collection Generational Garbage Collection – moving to more modern times Young generation Old Generation Allocations Promotion
  • 23. Java Heap Hotspot JVM Memory layout Hotspot JVM (Java) heap layout Young generation Old Generation Perm Generation Everything else
  • 24. Java Heap Hotspot JVM Memory layout Hotspot JVM (Java) heap layout Young generation Old Generation Perm Generation Everything else Maximum size is limited: ■ 32 bit -> 2Gb ■ 64 bit -> way larger If 2Gb is the max for the process – you can’t get it all for the Java heap only!
  • 25. Hotspot JVM Memory layout Hotspot JVM (Java) heap layout Survivor spaces Old Generation Perm Generation Young generation unused Eden From To
  • 26. Hotspot JVM Memory layout Hotspot JVM (Java) – (Small) GC running Survivor spaces Old Generation Perm Generation Young generation unused Eden From To
  • 27. Hotspot JVM Memory layout Hotspot JVM (Java) – (Minor) GC running Survivor spaces Old Generation Perm Generation Young generation unused Eden From To
  • 28. Hotspot JVM Memory details -Xmx, -Xms, -Xmn  Control the Java Object heap size only  Doesn’t have impact on Perm size, native heap and the Thread stack size -XX:PermSize, -XX:MaxPermSize  Stores class definitions, methods, statis fields  Common reason for OOM errors. -Xss  Configures the stack size of every thread. -XX:+UseTLAB, -XX:-UseTLAB, -XX:+PrintTLAB  Enables the Thread Local Allocation Buffer.  Since Java SE 1.5 – this is automatically tuned to each and every thread. TCP Connection buffer sizes – allocated in native space  Use Socket.setSendBufferSize(int) and Socket.setReceiveBufferSize(int).  OS will use the smaller of the two or will simply ignore that setting. Object allocation statistics: ■ Up to 98% of new objects are short-lived ■ Up to 98% die before another Mb is allocated
  • 29. Agenda 1. Brief historical view 2. Myths and Urban legends 3. GC machinery 4. Try to stay out of trouble
  • 30. OutOfMemoryError How to proceed? java.lang.OutOfMemoryError: PermGen space  Increase the Perm Space – will help if there is no code generation happening  In case of a leak – the only solution is frequent system restart. java.lang.OutOfMemoryError: unable to create new native thread  Decrease –Xmx or –Xss java.lang.StackOverflowError  Increase –Xss or fix the corresponding algorithm IOException: Too many open files (for example)  Increase the OS file handle limit per process  Check for leaking file handles  Physical limit of the VM is 2048 ZIP/JAR files opened at the same time. java.lang.OutOfMemoryError: Direct buffer memory  Direct mapped memory – used for java.nio.ByteBuffer  Increase -XX:MaxDirectMemorySize
  • 31. Finalizer methods Good or bad Again short answer: it depends ;-) Infrastructure components  Might be used for debugging/tracing purposes  Major scenario – closing of critical backend resources  All finalizer methods are collected separately. No mass-wipe is performed on them!  Never, ever throw an exception in a finalizer! Applications  Avoid finalizers by all means! Per-request created objects  Avoid finalizers by all means! Finalizer queue Working threads Finalizer thread (singleton)
  • 32. Response time peaks without CMS All those are full GCs…
  • 33. No more full GCs… Response time peaks with CMS
  • 34. Garbage Collection Strategies Does it pay off to play with that? -XX:+UseSerialGC  Default state before Java 5. Obsolete! -XX:+UseParallelGC - Parallel Scavange GC (1.4.2)  Works on Young Generation only  Use -XX:ParallelGCThreads to configure it -XX:+UseParNewGC - Parallel New-Gen GC (5.0)  Use also –XX:SurvivorRatio and –XX:MaxTenuringThreshold to define the lifespan of objects in the eden space.  -XX:+CMSClassUnloadingEnabled to trigger concurrent cleanup of the Perm space -XX:+UseConcMarkSweepGC - Concurrent Old-Gen GC  Default since Java SE 5. -XX:+UseParallelOldGC - Concurrent Old-Gen GC (5.0)  Parallel Compaction of Old space Terms: • Serial – 1 thing at a time • Parallel – work is done in multiple threads • Concurrent – work happens simultaneously
  • 35. Garbage Collection Ergonomics What’s that? New way to configure GC – specify:  Max pause time goal (-XX:MaxGCPauseMillis)  Throughput goal (-XX:GCTimeRatio)  Assumes minimal footprint goal  Use -XX:+UseParallelGC with those.  Garbage First (G1) GC will be the default in Java SE 7. Released with JDK 1.6.0_u14 for non-productive usage.  Enable that for testing via:  -XX:+UnlockExperimentalVMOptions  -XX:+UseG1GC
  • 36. Analyzing Garbage Collection output Getting GC output is critical for further analysis!  -verbose:gc get 1 line per GC run with some basic inf  -XX:+PrintGCDetails get more extended info (perm, eden, tenured)  -XX:+PrintGCTimeStamps get timestamps since the start of the VM. Allows correlation  -XX:-TraceClassUnloading get also the unloaded classes – helps tracing leaks  -Xloggc:gc.log direct GC output to a special file instead of the process output  -XX:+HeapDumpOnOutOfMemoryError Heap dump generation on OutOfMemory
  • 37. GC Viewer GC output viewer  Import the gc.out file.  Correlate over time  So far the most comprehensive viewer  Stay tuned and monitor the Eclipse news ;-)
  • 38. Visual VM Supplied by Oracle with JDK  Free and very comprehensive  Evolves together with the VM.  Focus shifting from that to Mission Control (the Jrockit profiling solution)
  • 39. Eclipse Memory Analyzer Developed by SAP and IBM in Eclipse  Track GC roots  Do what-if analysis  SQL-like query language  Custom filters  Track Leaking classloaders
  • 40. Garbage Collection – the universal settings There are NO universal settings! Sorry. :(  G1 is the first GC, trying to go in that direction and leave the self-tuning to the VM  You have to test with realistic load!  You have to test on realistic hardware!  Tune the GC as you fix the memory leaks which will inevitably show up.  Try to find the balance of uptime/restart intervals.