SlideShare uma empresa Scribd logo
1 de 61
Baixar para ler offline
©2017 Azul Systems, Inc.	 	 	 	 	 	
Understanding
Java Garbage Collection
[JavaOne Session: CON5026]
Gil Tene, CTO & co-Founder, Azul Systems
@giltene
©2011 Azul Systems, Inc.	 	 	 	 	 	
This Talk’s Purpose / Goals
This talk is focused on GC education

This is not a “how to use flags to tune a collector” talk

This is a talk about how the “GC machine” works

Purpose: Once you understand how it works, you can use your own brain...

You’ll learn just enough to be dangerous...

The “Azul makes the world’s greatest GC” stuff will only come at the end,
I promise...
©2017 Azul Systems, Inc.	 	 	 	 	 	
High level agenda
Some GC fundamentals, terminology & mechanisms

Classifying currently available production collectors

Why Stop-The-World is a problem

The C4 collector: What a solution to STW looks like...
©2017 Azul Systems, Inc.	 	 	 	 	 	
About me: Gil Tene
* working on real-world trash compaction issues, circa 2004
co-founder, CTO @Azul Systems

Have been working on “think different”
GC and runtime approaches since 2002

Created Pauseless & C4 core GC
algorithms (Tene, Wolf)

A Long history building Virtual &
Physical Machines, Operating Systems,
Enterprise apps, etc...

I also depress people by demonstrating
how terribly wrong their latency
measurements are…
©2011 Azul Systems, Inc.	 	 	 	 	 	
Memory use
How many of you use heap sizes of:

F more than ½ GB?

F more than 1 GB?

F more than 2 GB?

F more than 4 GB?

F more than 10 GB?

F more than 20 GB?

F more than 50 GB?

F more than 100 GB?
©2017 Azul Systems, Inc.	 	 	 	 	 	
Why should you understand
(at least a little) how GC works?
©2017 Azul Systems, Inc.	 	 	 	 	 	
The story of the good little architect

A good architect must, first and foremost, be able to impose their
architectural choices on the project...

Early in Azul’s concurrent collector days, we encountered an
application exhibiting 18 second pauses

Upon investigation, we found the collector was performing 10s of millions of
object finalizations per GC cycle

*We have since made reference processing fully concurrent...

Every single class written in the project had a finalizer

The only work the finalizers did was nulling every reference field

The right discipline for a C++ ref-counting environment

The wrong discipline for a precise garbage collected environment
©2017 Azul Systems, Inc.	 	 	 	 	 	
Much of what People seem to “know”
about Garbage Collection is wrong
In many cases, it’s much better than you may think

GC is extremely efficient. Much more so that malloc()

Dead objects cost nothing to collect

GC will find all the dead objects (including cyclic graphs)

...

In many cases, it’s much worse than you may think

Yes, it really will stop for ~1 sec per live GB (except with Zing)

No, GC does not mean you can’t have memory leaks

No, those pauses you eliminated from your 20 minute test are not gone

...
©2017 Azul Systems, Inc.	 	 	 	 	 	
Some GC Terminology
©2017 Azul Systems, Inc.	 	 	 	 	 	
A Concurrent Collector performs garbage collection work concurrently with
the application’s own execution

A Parallel Collector uses multiple CPUs to perform garbage collection
Classifying a collector’s operation

©2017 Azul Systems, Inc.	 	 	 	 	 	
A Concurrent Collector performs garbage collection work concurrently with
the application’s own execution

A Parallel Collector uses multiple CPUs to perform garbage collection
Classifying a collector’s operation

An Incremental collector performs a garbage collection operation or phase as
a series of smaller discrete operations with (potentially long) gaps in between

A Stop-the-World collector performs garbage collection while the
application is completely stopped
Mostly means sometimes it isn’t (usually means a different fall back
mechanism exists)
A Monolithic Collector performs the entire collection work in a single,
indivisible step
©2017 Azul Systems, Inc.	 	 	 	 	 	
Precise vs. Conservative Collection

A Collector is Conservative if it is unaware of some object
references at collection time, or is unsure about whether a
field is a reference or not

A Collector is Precise if it can fully identify and process all
object references at the time of collection

A collector MUST be precise in order to move objects

The COMPILERS need to produce a lot of information (OopMaps)

All commercial server JVMs use precise collectors

All commercial server JVMs use some form of a moving collector
©2017 Azul Systems, Inc.	 	 	 	 	 	
Safepoints

A GC Safepoint is a point or range in a thread’s execution where the
collector can identify all the references in that thread’s execution stack

“Safepoint” and “GC Safepoint” are often used interchangeably

But there are other types of safepoints, including ones that require more
information than a GC safepoint does (e.g. deoptimization)

“Bringing a thread to a safepoint” is the act of getting a thread to
reach a safepoint and not execute past it

Close to, but not exactly the same as “stop at a safepoint”

e.g. JNI: you can keep running in, but not past the safepoint

Safepoint opportunities are (or should be) frequent

In a Global Safepoint all threads are at a Safepoint
©2017 Azul Systems, Inc.	 	 	 	 	 	
Behavior that is common to ALL precise GC mechanisms
Identify the live objects in the memory heap

Reclaim resources held by dead objects

Periodically relocate live objects

Examples:

Mark/Sweep/Compact (common for Old Generations)

Copying collector (common for Young Generations)
©2017 Azul Systems, Inc.	 	 	 	 	 	
Mark (aka “Trace”)
Start from “roots” (thread stacks, statics, etc.)

“Paint” anything you can reach as “live”

At the end of a mark pass:

all reachable objects will be marked “live”

all non-reachable objects will be marked “dead” (aka “non-live”).

Note: work is generally linear to “live set”
©2017 Azul Systems, Inc.	 	 	 	 	 	
Sweep
Scan through the heap, identify “dead” objects and track them somehow

(usually in some form of free list)

Note: work is generally linear to heap size
©2017 Azul Systems, Inc.	 	 	 	 	 	
Compact
Over time, heap will get “swiss cheesed”: contiguous dead space between
objects may not be large enough to fit new objects (aka “fragmentation”)

Compaction moves live objects together to reclaim contiguous empty space
(aka “relocate”)

Compaction has to correct all object references to point to new object
locations (aka “remap” or “fixup”)

Remap scan must cover all references that could possibly point to
relocated objects

Note: work is generally linear to “live set”
©2017 Azul Systems, Inc.	 	 	 	 	 	
Copy
A copying collector moves all lives objects from a “from” space to a “to”
space & reclaims “from” space

At start of copy, all objects are in “from” space and all references point
to “from” space.

Start from “root” references, copy any reachable object to “to” space,
correcting references as we go

At end of copy, all objects are in “to” space, and all references point to
“to” space

Note: work generally linear to “live set”
©2017 Azul Systems, Inc.	 	 	 	 	 	
Mark/Sweep/Compact, Copy, Mark/Compact
Copy requires 2x the max. live set to be reliable

Mark/Compact [typically] requires 2x the max. live set in order to fully
recover garbage in each cycle

Mark/Sweep/Compact only requires 1x (plus some) 

Copy and Mark/Compact are linear only to live set

Mark/Sweep/Compact linear (in sweep) to heap size

Mark/Sweep/(Compact) may be able to avoid some moving work

Copying is [typically] “monolithic”
©2017 Azul Systems, Inc.	 	 	 	 	 	
Generational Collection
Weak Generational Hypothesis; “most objects die young”

Focus collection efforts on young generation:

Use a moving collector: work is linear to the live set

The live set in the young generation is a small % of the space 

Promote objects that live long enough to older generations

Only collect older generations as they fill up

“Generational filter” reduces rate of allocation into older generations

Tends to be (order of magnitude) more efficient

Great way to keep up with high allocation rate

Practical necessity for keeping up with processor throughput
©2017 Azul Systems, Inc.	 	 	 	 	 	
Generational Collection
Requires a “Remembered set”: a way to track all references into the
young generation from the outside

Remembered set is also part of “roots” for young generation collection

No need for 2x the live set: Can “spill over” to old gen

Usually want to keep surviving objects in young generation for a while
before promoting them to the old generation

Immediate promotion can significantly reduce gen. filter efficiency

Waiting too long to promote can eliminate generational benefits
©2017 Azul Systems, Inc.	 	 	 	 	 	
The typical combos
in commercial server JVMS
Young generation usually uses a copying collector

Young generation is usually monolithic, stop-the-world

Old generation usually uses Mark/Sweep/Compact

Old generation may be STW, or Concurrent, or mostly-Concurrent, or
Incremental-STW, or mostly-Incremental-STW
©2017 Azul Systems, Inc.	 	 	 	 	 	
Some non monolithic-STW stuff
©2017 Azul Systems, Inc.	 	 	 	 	 	
Concurrent Marking
Mark all reachable objects as “live”, but object graph is “mutating”
under us.

Classic concurrent marking race: mutator may move reference that has
not yet been seen by the marker into an object that has already been
visited

If not intercepted or prevented in some way, will corrupt the heap

Example technique: track mutations, multi-pass marking

Track reference mutations during mark (e.g. in card table)

Re-visit all mutated references (and track new mutations)

When set is “small enough”, do a STW catch up (mostly concurrent)

Note: work grows with mutation rate, may fail to finish
©2017 Azul Systems, Inc.	 	 	 	 	 	
Incremental Compaction
Track cross-region remembered sets (which region points to which)

To compact a single region, only need to scan regions that point into
it to remap all potential references 

identify regions sets that fit in limited time

Each such set of regions is a Stop-the-World increment

Safe to run application between (but not within) increments

Note: work can grow with the square of the heap size

The number of regions pointing into a single region is generally linear to the
heap size (the number of regions in the heap)
©2017 Azul Systems, Inc.	 	 	 	 	 	
Delaying the inevitable
Some form of copying/compaction is inevitable in practice

And compacting anything requires scanning/fixing all references to it

Delay tactics focus on getting “easy empty space” first

This is the focus for the vast majority of GC tuning

Most objects die young [Generational]

So collect young objects only, as much as possible. Hope for short STW.

But eventually, some old dead objects must be reclaimed

Most old dead space can be reclaimed without moving it 

[e.g. CMS] track dead space in lists, and reuse it in place

But eventually, space gets fragmented, and needs to be moved

Much of the heap is not “popular” [e.g. G1, “Balanced”]

A non popular region will only be pointed to from a small % of the heap

So compact non-popular regions in short stop-the-world pauses

But eventually, popular objects and regions need to be compacted
©2017 Azul Systems, Inc.	 	 	 	 	 	
Classifying common collectors
©2017 Azul Systems, Inc.	 	 	 	 	 	
The typical combos
in commercial server JVMs
Young generation usually uses a copying collector

Young generation is usually monolithic, stop-the-world

Old generation usually uses a Mark/Sweep/Compact collector

Old generation may be STW, or Concurrent, or mostly-Concurrent, or
Incremental-STW, or mostly-Incremental-STW
©2017 Azul Systems, Inc.	 	 	 	 	 	
HotSpot™ ParallelGC

Collector mechanism classification
Monolithic Stop-the-world copying NewGen

Monolithic Stop-the-world Mark/Sweep/Compact OldGen
©2017 Azul Systems, Inc.	 	 	 	 	 	
HotSpot™ ConcMarkSweepGC (aka CMS)

Collector mechanism classification
Monolithic Stop-the-world copying NewGen (ParNew)

Mostly Concurrent, non-compacting OldGen (CMS)

Mostly Concurrent marking

Mark concurrently while mutator is running

Track mutations in card marks

Revisit mutated cards (repeat as needed)

Stop-the-world to catch up on mutations, ref processing, etc.

Concurrent Sweeping

Does not Compact (maintains free list, does not move objects)

Fallback to Full Collection (Monolithic Stop the world).

Used for Compaction, etc.
©2017 Azul Systems, Inc.	 	 	 	 	 	
HotSpot™ G1GC (aka “Garbage First”) 

Collector mechanism classification
Monolithic Stop-the-world copying NewGen

Mostly Concurrent, OldGen marker

Mostly Concurrent marking

Stop-the-world to catch up on mutations, ref processing, etc.

Tracks inter-region relationships in remembered sets

Stop-the-world mostly incremental compacting old gen 

Objective: “Avoid, as much as possible, having a Full GC…”

Compact sets of regions that can be scanned in limited time

Delay compaction of popular objects, popular regions

Fallback to Full Collection (Monolithic Stop the world).

Used for compacting popular objects, popular regions, etc.
©2017 Azul Systems, Inc.	 	 	 	 	 	
Monolithic-STW GC Problems
©2017 Azul Systems, Inc.	 	 	 	 	 	
One way to deal with Monolithic-STW GC
©2017 Azul Systems, Inc.	 	 	 	 	 	
0"
2000"
4000"
6000"
8000"
10000"
12000"
14000"
16000"
18000"
0" 2000" 4000" 6000" 8000" 10000"
Hiccup&Dura*on&(msec)&
&Elapsed&Time&(sec)&
Hiccups&by&Time&Interval&
Max"per"Interval" 99%" 99.90%" 99.99%" Max"
0%" 90%" 99%" 99.9%" 99.99%" 99.999%" 99.9999%"
Max=16023.552&
0"
2000"
4000"
6000"
8000"
10000"
12000"
14000"
16000"
18000"Hiccup&Dura*on&(msec)&
&
&
Percen*le&
Hiccups&by&Percen*le&Distribu*on&
©2017 Azul Systems, Inc.	 	 	 	 	 	
0"
2000"
4000"
6000"
8000"
10000"
12000"
14000"
16000"
18000"
0" 2000" 4000" 6000" 8000" 10000"
Hiccup&Dura*on&(msec)&
&Elapsed&Time&(sec)&
Hiccups&by&Time&Interval&
Max"per"Interval" 99%" 99.90%" 99.99%" Max"
0%" 90%" 99%" 99.9%" 99.99%" 99.999%" 99.9999%"
Max=16023.552&
0"
2000"
4000"
6000"
8000"
10000"
12000"
14000"
16000"
18000"
Hiccup&Dura*on&(msec)&
&
&
Percen*le&
Hiccups&by&Percen*le&Distribu*on&
©2017 Azul Systems, Inc.
©2017 Azul Systems, Inc.	 	 	 	 	 	
Another way to cope: Creative Language
“Guarantee a worst case of X msec, 99% of the time” 

“Mostly” Concurrent, “Mostly” Incremental

Translation: “Will at times exhibit long monolithic stop-the-world
pauses”

“Fairly Consistent”

Translation: “Will sometimes show results well outside this range” 

“Typical pauses in the tens of milliseconds”

Translation: “Some pauses are much longer than tens of milliseconds”
©2017 Azul Systems, Inc.	 	 	 	 	 	
Actually measuring things
(e.g. jHiccup)
©2017 Azul Systems, Inc.	 	 	 	 	 	
Incontinuities in Java platform execution
0"
200"
400"
600"
800"
1000"
1200"
1400"
1600"
1800"
0" 200" 400" 600" 800" 1000" 1200" 1400" 1600" 1800"
Hiccup&Dura*on&(msec)&
&Elapsed&Time&(sec)&
Hiccups"by"Time"Interval"
Max"per"Interval" 99%" 99.90%" 99.99%" Max"
0%" 90%" 99%" 99.9%" 99.99%" 99.999%"
Max=1665.024&
0"
200"
400"
600"
800"
1000"
1200"
1400"
1600"
1800"
Hiccup&Dura*on&(msec)&
&
&
Percen*le&
Hiccups"by"Percen@le"Distribu@on"
©2017 Azul Systems, Inc.	 	 	 	 	 	
C4: Solving Stop-The-World
©2017 Azul Systems, Inc.	 	 	 	 	 	
The problems that needed solving
(areas where the state of the art needed improvement)
Robust Concurrent Marking

In the presence of high mutation and allocation rates

Cover modern runtime semantics (e.g. weak refs, lock deflation)

Compaction that is not monolithic-stop-the-world 

E.g. stay responsive while compacting ¼ TB heaps

Must be robust: not just a tactic to delay STW compaction

[current “incremental STW” attempts fall short on robustness]

Young-Gen that is not monolithic-stop-the-world 

Stay responsive while promoting multi-GB data spikes

Concurrent or “incremental STW” may both be ok

Surprisingly little work done in this specific area
©2017 Azul Systems, Inc.	 	 	 	 	 	
Azul’s “C4” Collector 

Continuously Concurrent Compacting Collector
Concurrent guaranteed-single-pass marker

Oblivious to mutation rate

Concurrent ref (weak, soft, final) processing

Concurrent Compactor

Objects moved without stopping mutator

References remapped without stopping mutator

Can relocate entire generation (New, Old) in every GC cycle

Concurrent, compacting old generation

Concurrent, compacting new generation

No stop-the-world fallback

Always compacts, and always does so concurrently
©2017 Azul Systems, Inc.	 	 	 	 	 	
C4’s Prime Directives
Always do the same thing

Avoid the temptation to “solve” things by delaying them

Avoid rare code paths

Running under load for an hour should exercise the whole thing

Don’t be in a hurry

Avoid the “if we don’t do this quickly it will get worse” trap

e.g. multi-pass marking

or pauses that depend on scale metrics

or being consistently slow during an entire phase of GC

Allow collector to be “lazy” and run at a “relaxed pace” 

Keep up with allocation rate is only “pacing” reason
©2017 Azul Systems, Inc.	 	 	 	 	 	
The secret to GC efficiency
©2017 Azul Systems, Inc.	 	 	 	 	 	
100%
CPU%
Heap size
Live set
Heap size vs. GC
CPU %
©2017 Azul Systems, Inc.	 	 	 	 	 	
What empty memory controls
Empty memory controls efficiency (amount of collector work needed per
amount of application work performed)

Empty memory controls the frequency of pauses (if the collector
performs any Stop-the-world operations)

Empty memory DOES NOT control pause times (only their frequency)

With C4, we get the upside with no downside…
©2017 Azul Systems, Inc.	 	 	 	 	 	
C4 algorithm highlights
Same core mechanism used for both generations

Concurrent Mark-Compact

A Loaded Value Barrier (LVB) is central to the algorithm

Every heap reference is verified as “sane” when loaded

“Non-sane” refs are caught and fixed in a self-healing barrier

Refs that have not yet been “marked through” are caught

Guaranteed single pass concurrent marker

Refs that point to relocated objects are caught

Lazily (and concurrently) remap refs, no hurry

Relocation and remapping are both concurrent

Uses “quick release” to recycle memory

Forwarding information is kept outside of object pages

Physical memory released immediately upon relocation

“Hand-over-hand” compaction without requiring empty memory
©2017 Azul Systems, Inc.	 	 	 	 	 	
Relocation Phase
Compaction
A B C D E
A’ D’
A -> A’ B -> B’ C -> C’ D -> D’ E -> E’
B’ C’ E’
Forwarding info:
©2017 Azul Systems, Inc.	 	 	 	 	 	
PHYSICAL
VIRTUAL
Quick Release
A -> A’ B -> B’ C -> C’ D -> D’ E -> E’
©2017 Azul Systems, Inc.	 	 	 	 	 	
Benefits
ELIMINATES Garbage Collection as a
concern for enterprise applications
©2017 Azul Systems, Inc.	 	 	 	 	 	
GC Tuning
©2017 Azul Systems, Inc.	 	 	 	 	 	
Java GC tuning is “hard”…
Examples of actual command line GC tuning parameters:

Java -Xmx12g -XX:MaxPermSize=64M -XX:PermSize=32M -XX:MaxNewSize=2g 

-XX:NewSize=1g -XX:SurvivorRatio=128 -XX:+UseParNewGC 

-XX:+UseConcMarkSweepGC -XX:MaxTenuringThreshold=0

-XX:CMSInitiatingOccupancyFraction=60 -XX:+CMSParallelRemarkEnabled

-XX:+UseCMSInitiatingOccupancyOnly -XX:ParallelGCThreads=12 

-XX:LargePageSizeInBytes=256m …

Java –Xms8g –Xmx8g –Xmn2g -XX:PermSize=64M -XX:MaxPermSize=256M

-XX:-OmitStackTraceInFastThrow -XX:SurvivorRatio=2 -XX:-UseAdaptiveSizePolicy 

-XX:+UseConcMarkSweepGC -XX:+CMSConcurrentMTEnabled

-XX:+CMSParallelRemarkEnabled -XX:+CMSParallelSurvivorRemarkEnabled

-XX:CMSMaxAbortablePrecleanTime=10000 -XX:+UseCMSInitiatingOccupancyOnly

-XX:CMSInitiatingOccupancyFraction=63 -XX:+UseParNewGC –Xnoclassgc …
©2017 Azul Systems, Inc.	 	 	 	 	 	
A few more GC tuning flags
Source: Word Cloud created by Frank Pavageau in his Devoxx FR 2012 presentation titled “Death by Pauses”
©2017 Azul Systems, Inc.	 	 	 	 	 	
java -Xmx40g

The complete guide to
modern GC tuning**
java -Xmx20g

java -Xmx10g

java -Xmx5g
©2017 Azul Systems, Inc.	 	 	 	 	 	
java -Xmx40g

java -Xmx20g

java -Xmx10g

java -Xmx5g
The complete guide to
modern GC tuning**
©2017 Azul Systems, Inc.	 	 	 	 	 	
Cassandra under heavy load, Intel E5-2690 v4 server
This is 1 msec
©2017 Azul Systems, Inc.	 	 	 	 	 	
Sustainable Throughput:
The throughput achieved while
safely maintaining service levels
©2017 Azul Systems, Inc.	 	 	 	 	 	
Warning: results may be too good
©2017 Azul Systems, Inc.	 	 	 	 	 	
A practical real-world example:

Improve Digital (Video Advertising)
Cassandra cluster running on 6x AWS i3.2xlarge

Approx. 80/20 write/read split

Data read and written with quorum consistency

6 client machines sending requests collocated in the same AZs

SLA requirements for read operations:

20ms at 99.9%

50ms at 99.99%

100ms at 99.998% (not a typo, last 9 hard to maintain on AWS)

HotSpot w/G1: can maintain ~4K TPS before SLA breach

Zing: can maintain ~21K TPS before SLA breach
©2017 Azul Systems, Inc.	 	 	 	 	 	
Transaction	 Load
Success	 Rate
©2017 Azul Systems, Inc.	 	 	 	 	 	
Q & A
Understanding Java Garbage Collection
[CON5026]
@giltene
http://www.azul.com
http://giltene.github.com/jHiccup 

http://giltene.github.com/HdrHistogram

Mais conteúdo relacionado

Mais procurados

Garbage collection in JVM
Garbage collection in JVMGarbage collection in JVM
Garbage collection in JVMaragozin
 
Introduction to Garbage Collection
Introduction to Garbage CollectionIntroduction to Garbage Collection
Introduction to Garbage CollectionArtur Mkrtchyan
 
Basic Garbage Collection Techniques
Basic  Garbage  Collection  TechniquesBasic  Garbage  Collection  Techniques
Basic Garbage Collection TechniquesAn Khuong
 
Ceph, Xen, and CloudStack: Semper Melior
Ceph, Xen, and CloudStack: Semper MeliorCeph, Xen, and CloudStack: Semper Melior
Ceph, Xen, and CloudStack: Semper MeliorPatrick McGarry
 
Quick introduction to Java Garbage Collector (JVM GC)
Quick introduction to Java Garbage Collector (JVM GC)Quick introduction to Java Garbage Collector (JVM GC)
Quick introduction to Java Garbage Collector (JVM GC)Marcos García
 
.NET Fest 2018. Maarten Balliauw. Let’s refresh our memory! Memory management...
.NET Fest 2018. Maarten Balliauw. Let’s refresh our memory! Memory management....NET Fest 2018. Maarten Balliauw. Let’s refresh our memory! Memory management...
.NET Fest 2018. Maarten Balliauw. Let’s refresh our memory! Memory management...NETFest
 
JetBrains Day Seoul - Exploring .NET’s memory management – a trip down memory...
JetBrains Day Seoul - Exploring .NET’s memory management – a trip down memory...JetBrains Day Seoul - Exploring .NET’s memory management – a trip down memory...
JetBrains Day Seoul - Exploring .NET’s memory management – a trip down memory...Maarten Balliauw
 
JVM Mechanics: A Peek Under the Hood
JVM Mechanics: A Peek Under the HoodJVM Mechanics: A Peek Under the Hood
JVM Mechanics: A Peek Under the HoodAzul Systems Inc.
 
A History of Modern Garbage Collection Techniques
A History of Modern Garbage Collection TechniquesA History of Modern Garbage Collection Techniques
A History of Modern Garbage Collection TechniquesSasha Goldshtein
 
DotNetFest - Let’s refresh our memory! Memory management in .NET
DotNetFest - Let’s refresh our memory! Memory management in .NETDotNetFest - Let’s refresh our memory! Memory management in .NET
DotNetFest - Let’s refresh our memory! Memory management in .NETMaarten Balliauw
 
An Introduction to JVM Internals and Garbage Collection in Java
An Introduction to JVM Internals and Garbage Collection in JavaAn Introduction to JVM Internals and Garbage Collection in Java
An Introduction to JVM Internals and Garbage Collection in JavaAbhishek Asthana
 
Garbage collection
Garbage collectionGarbage collection
Garbage collectionMudit Gupta
 

Mais procurados (14)

Garbage collection in JVM
Garbage collection in JVMGarbage collection in JVM
Garbage collection in JVM
 
Java GC
Java GCJava GC
Java GC
 
Introduction to Garbage Collection
Introduction to Garbage CollectionIntroduction to Garbage Collection
Introduction to Garbage Collection
 
Basic Garbage Collection Techniques
Basic  Garbage  Collection  TechniquesBasic  Garbage  Collection  Techniques
Basic Garbage Collection Techniques
 
Ceph, Xen, and CloudStack: Semper Melior
Ceph, Xen, and CloudStack: Semper MeliorCeph, Xen, and CloudStack: Semper Melior
Ceph, Xen, and CloudStack: Semper Melior
 
Quick introduction to Java Garbage Collector (JVM GC)
Quick introduction to Java Garbage Collector (JVM GC)Quick introduction to Java Garbage Collector (JVM GC)
Quick introduction to Java Garbage Collector (JVM GC)
 
JVM Magic
JVM MagicJVM Magic
JVM Magic
 
.NET Fest 2018. Maarten Balliauw. Let’s refresh our memory! Memory management...
.NET Fest 2018. Maarten Balliauw. Let’s refresh our memory! Memory management....NET Fest 2018. Maarten Balliauw. Let’s refresh our memory! Memory management...
.NET Fest 2018. Maarten Balliauw. Let’s refresh our memory! Memory management...
 
JetBrains Day Seoul - Exploring .NET’s memory management – a trip down memory...
JetBrains Day Seoul - Exploring .NET’s memory management – a trip down memory...JetBrains Day Seoul - Exploring .NET’s memory management – a trip down memory...
JetBrains Day Seoul - Exploring .NET’s memory management – a trip down memory...
 
JVM Mechanics: A Peek Under the Hood
JVM Mechanics: A Peek Under the HoodJVM Mechanics: A Peek Under the Hood
JVM Mechanics: A Peek Under the Hood
 
A History of Modern Garbage Collection Techniques
A History of Modern Garbage Collection TechniquesA History of Modern Garbage Collection Techniques
A History of Modern Garbage Collection Techniques
 
DotNetFest - Let’s refresh our memory! Memory management in .NET
DotNetFest - Let’s refresh our memory! Memory management in .NETDotNetFest - Let’s refresh our memory! Memory management in .NET
DotNetFest - Let’s refresh our memory! Memory management in .NET
 
An Introduction to JVM Internals and Garbage Collection in Java
An Introduction to JVM Internals and Garbage Collection in JavaAn Introduction to JVM Internals and Garbage Collection in Java
An Introduction to JVM Internals and Garbage Collection in Java
 
Garbage collection
Garbage collectionGarbage collection
Garbage collection
 

Semelhante a Understanding GC, JavaOne 2017

Understanding Zulu Garbage Collection by Matt Schuetze, Director of Product M...
Understanding Zulu Garbage Collection by Matt Schuetze, Director of Product M...Understanding Zulu Garbage Collection by Matt Schuetze, Director of Product M...
Understanding Zulu Garbage Collection by Matt Schuetze, Director of Product M...zuluJDK
 
GC @ jmaghreb2014
GC @ jmaghreb2014GC @ jmaghreb2014
GC @ jmaghreb2014Ivan Krylov
 
Garbage Collection in Hotspot JVM
Garbage Collection in Hotspot JVMGarbage Collection in Hotspot JVM
Garbage Collection in Hotspot JVMjaganmohanreddyk
 
Enabling Java in Latency-Sensitive Applications
Enabling Java in Latency-Sensitive ApplicationsEnabling Java in Latency-Sensitive Applications
Enabling Java in Latency-Sensitive ApplicationsAzul Systems Inc.
 
Enabling Java in Latency Sensitive Applications by Gil Tene, CTO, Azul Systems
Enabling Java in Latency Sensitive Applications by Gil Tene, CTO, Azul SystemsEnabling Java in Latency Sensitive Applications by Gil Tene, CTO, Azul Systems
Enabling Java in Latency Sensitive Applications by Gil Tene, CTO, Azul SystemszuluJDK
 
Enabling Java in Latency Sensitive Environments
Enabling Java in Latency Sensitive EnvironmentsEnabling Java in Latency Sensitive Environments
Enabling Java in Latency Sensitive EnvironmentsC4Media
 
“Show Me the Garbage!”, Understanding Garbage Collection
“Show Me the Garbage!”, Understanding Garbage Collection“Show Me the Garbage!”, Understanding Garbage Collection
“Show Me the Garbage!”, Understanding Garbage CollectionHaim Yadid
 
DotCMS Bootcamp: Enabling Java in Latency Sensitivie Environments
DotCMS Bootcamp: Enabling Java in Latency Sensitivie EnvironmentsDotCMS Bootcamp: Enabling Java in Latency Sensitivie Environments
DotCMS Bootcamp: Enabling Java in Latency Sensitivie EnvironmentsAzul Systems Inc.
 
Understanding Java Garbage Collection and What You Can Do About It: Gil Tene
Understanding Java Garbage Collection and What You Can Do About It: Gil TeneUnderstanding Java Garbage Collection and What You Can Do About It: Gil Tene
Understanding Java Garbage Collection and What You Can Do About It: Gil Tenejaxconf
 
Memory Management in the Java Virtual Machine(Garbage collection)
Memory Management in the Java Virtual Machine(Garbage collection)Memory Management in the Java Virtual Machine(Garbage collection)
Memory Management in the Java Virtual Machine(Garbage collection)Prashanth Kumar
 
Exploring .NET memory management - JetBrains webinar
Exploring .NET memory management - JetBrains webinarExploring .NET memory management - JetBrains webinar
Exploring .NET memory management - JetBrains webinarMaarten Balliauw
 
Java Garbage Collection, Monitoring, and Tuning
Java Garbage Collection, Monitoring, and TuningJava Garbage Collection, Monitoring, and Tuning
Java Garbage Collection, Monitoring, and TuningCarol McDonald
 
GWT is Smarter Than You
GWT is Smarter Than YouGWT is Smarter Than You
GWT is Smarter Than YouRobert Cooper
 
How NOT to Measure Latency, Gil Tene, London, Oct. 2013
How NOT to Measure Latency, Gil Tene, London, Oct. 2013How NOT to Measure Latency, Gil Tene, London, Oct. 2013
How NOT to Measure Latency, Gil Tene, London, Oct. 2013Azul Systems Inc.
 
An introduction to G1 collector for busy developers
An introduction to G1 collector for busy developersAn introduction to G1 collector for busy developers
An introduction to G1 collector for busy developersSanjoy Kumar Roy
 
The Java Evolution Mismatch - Why You Need a Better JVM
The Java Evolution Mismatch - Why You Need a Better JVMThe Java Evolution Mismatch - Why You Need a Better JVM
The Java Evolution Mismatch - Why You Need a Better JVMAzul Systems Inc.
 
Method Swizzling with Objective-C
Method Swizzling with Objective-CMethod Swizzling with Objective-C
Method Swizzling with Objective-CAdamFallon4
 
The Java Evolution Mismatch by Gil Tene, CTO at Azul Systems
The Java Evolution Mismatch by Gil Tene, CTO at Azul SystemsThe Java Evolution Mismatch by Gil Tene, CTO at Azul Systems
The Java Evolution Mismatch by Gil Tene, CTO at Azul SystemszuluJDK
 
Java at Scale, Dallas JUG, October 2013
Java at Scale, Dallas JUG, October 2013Java at Scale, Dallas JUG, October 2013
Java at Scale, Dallas JUG, October 2013Azul Systems Inc.
 

Semelhante a Understanding GC, JavaOne 2017 (20)

Understanding Zulu Garbage Collection by Matt Schuetze, Director of Product M...
Understanding Zulu Garbage Collection by Matt Schuetze, Director of Product M...Understanding Zulu Garbage Collection by Matt Schuetze, Director of Product M...
Understanding Zulu Garbage Collection by Matt Schuetze, Director of Product M...
 
GC @ jmaghreb2014
GC @ jmaghreb2014GC @ jmaghreb2014
GC @ jmaghreb2014
 
Garbage Collection in Hotspot JVM
Garbage Collection in Hotspot JVMGarbage Collection in Hotspot JVM
Garbage Collection in Hotspot JVM
 
Enabling Java in Latency-Sensitive Applications
Enabling Java in Latency-Sensitive ApplicationsEnabling Java in Latency-Sensitive Applications
Enabling Java in Latency-Sensitive Applications
 
Enabling Java in Latency Sensitive Applications by Gil Tene, CTO, Azul Systems
Enabling Java in Latency Sensitive Applications by Gil Tene, CTO, Azul SystemsEnabling Java in Latency Sensitive Applications by Gil Tene, CTO, Azul Systems
Enabling Java in Latency Sensitive Applications by Gil Tene, CTO, Azul Systems
 
Enabling Java in Latency Sensitive Environments
Enabling Java in Latency Sensitive EnvironmentsEnabling Java in Latency Sensitive Environments
Enabling Java in Latency Sensitive Environments
 
“Show Me the Garbage!”, Understanding Garbage Collection
“Show Me the Garbage!”, Understanding Garbage Collection“Show Me the Garbage!”, Understanding Garbage Collection
“Show Me the Garbage!”, Understanding Garbage Collection
 
DotCMS Bootcamp: Enabling Java in Latency Sensitivie Environments
DotCMS Bootcamp: Enabling Java in Latency Sensitivie EnvironmentsDotCMS Bootcamp: Enabling Java in Latency Sensitivie Environments
DotCMS Bootcamp: Enabling Java in Latency Sensitivie Environments
 
Understanding Java Garbage Collection and What You Can Do About It: Gil Tene
Understanding Java Garbage Collection and What You Can Do About It: Gil TeneUnderstanding Java Garbage Collection and What You Can Do About It: Gil Tene
Understanding Java Garbage Collection and What You Can Do About It: Gil Tene
 
Memory Management in the Java Virtual Machine(Garbage collection)
Memory Management in the Java Virtual Machine(Garbage collection)Memory Management in the Java Virtual Machine(Garbage collection)
Memory Management in the Java Virtual Machine(Garbage collection)
 
Exploring .NET memory management - JetBrains webinar
Exploring .NET memory management - JetBrains webinarExploring .NET memory management - JetBrains webinar
Exploring .NET memory management - JetBrains webinar
 
Java Garbage Collection, Monitoring, and Tuning
Java Garbage Collection, Monitoring, and TuningJava Garbage Collection, Monitoring, and Tuning
Java Garbage Collection, Monitoring, and Tuning
 
GWT is Smarter Than You
GWT is Smarter Than YouGWT is Smarter Than You
GWT is Smarter Than You
 
How NOT to Measure Latency, Gil Tene, London, Oct. 2013
How NOT to Measure Latency, Gil Tene, London, Oct. 2013How NOT to Measure Latency, Gil Tene, London, Oct. 2013
How NOT to Measure Latency, Gil Tene, London, Oct. 2013
 
An introduction to G1 collector for busy developers
An introduction to G1 collector for busy developersAn introduction to G1 collector for busy developers
An introduction to G1 collector for busy developers
 
The Java Evolution Mismatch - Why You Need a Better JVM
The Java Evolution Mismatch - Why You Need a Better JVMThe Java Evolution Mismatch - Why You Need a Better JVM
The Java Evolution Mismatch - Why You Need a Better JVM
 
Method Swizzling with Objective-C
Method Swizzling with Objective-CMethod Swizzling with Objective-C
Method Swizzling with Objective-C
 
The Java Evolution Mismatch by Gil Tene, CTO at Azul Systems
The Java Evolution Mismatch by Gil Tene, CTO at Azul SystemsThe Java Evolution Mismatch by Gil Tene, CTO at Azul Systems
The Java Evolution Mismatch by Gil Tene, CTO at Azul Systems
 
rsyslog meets docker
rsyslog meets dockerrsyslog meets docker
rsyslog meets docker
 
Java at Scale, Dallas JUG, October 2013
Java at Scale, Dallas JUG, October 2013Java at Scale, Dallas JUG, October 2013
Java at Scale, Dallas JUG, October 2013
 

Mais de Azul Systems Inc.

Zulu Embedded Java Introduction
Zulu Embedded Java IntroductionZulu Embedded Java Introduction
Zulu Embedded Java IntroductionAzul Systems Inc.
 
What's New in the JVM in Java 8?
What's New in the JVM in Java 8?What's New in the JVM in Java 8?
What's New in the JVM in Java 8?Azul Systems Inc.
 
ObjectLayout: Closing the (last?) inherent C vs. Java speed gap
ObjectLayout: Closing the (last?) inherent C vs. Java speed gapObjectLayout: Closing the (last?) inherent C vs. Java speed gap
ObjectLayout: Closing the (last?) inherent C vs. Java speed gapAzul Systems Inc.
 
Priming Java for Speed at Market Open
Priming Java for Speed at Market OpenPriming Java for Speed at Market Open
Priming Java for Speed at Market OpenAzul Systems Inc.
 
Azul Systems open source guide
Azul Systems open source guideAzul Systems open source guide
Azul Systems open source guideAzul Systems Inc.
 
Start Fast and Stay Fast - Priming Java for Market Open with ReadyNow!
Start Fast and Stay Fast - Priming Java for Market Open with ReadyNow!Start Fast and Stay Fast - Priming Java for Market Open with ReadyNow!
Start Fast and Stay Fast - Priming Java for Market Open with ReadyNow!Azul Systems Inc.
 
Intelligent Trading Summit NY 2014: Understanding Latency: Key Lessons and Tools
Intelligent Trading Summit NY 2014: Understanding Latency: Key Lessons and ToolsIntelligent Trading Summit NY 2014: Understanding Latency: Key Lessons and Tools
Intelligent Trading Summit NY 2014: Understanding Latency: Key Lessons and ToolsAzul Systems Inc.
 
The evolution of OpenJDK: From Java's beginnings to 2014
The evolution of OpenJDK: From Java's beginnings to 2014The evolution of OpenJDK: From Java's beginnings to 2014
The evolution of OpenJDK: From Java's beginnings to 2014Azul Systems Inc.
 
Push Technology's latest data distribution benchmark with Solarflare and Zing
Push Technology's latest data distribution benchmark with Solarflare and ZingPush Technology's latest data distribution benchmark with Solarflare and Zing
Push Technology's latest data distribution benchmark with Solarflare and ZingAzul Systems Inc.
 
Webinar: Zing Vision: Answering your toughest production Java performance que...
Webinar: Zing Vision: Answering your toughest production Java performance que...Webinar: Zing Vision: Answering your toughest production Java performance que...
Webinar: Zing Vision: Answering your toughest production Java performance que...Azul Systems Inc.
 
Speculative Locking: Breaking the Scale Barrier (JAOO 2005)
Speculative Locking: Breaking the Scale Barrier (JAOO 2005)Speculative Locking: Breaking the Scale Barrier (JAOO 2005)
Speculative Locking: Breaking the Scale Barrier (JAOO 2005)Azul Systems Inc.
 
Towards a Scalable Non-Blocking Coding Style
Towards a Scalable Non-Blocking Coding StyleTowards a Scalable Non-Blocking Coding Style
Towards a Scalable Non-Blocking Coding StyleAzul Systems Inc.
 
Experiences with Debugging Data Races
Experiences with Debugging Data RacesExperiences with Debugging Data Races
Experiences with Debugging Data RacesAzul Systems Inc.
 
Lock-Free, Wait-Free Hash Table
Lock-Free, Wait-Free Hash TableLock-Free, Wait-Free Hash Table
Lock-Free, Wait-Free Hash TableAzul Systems Inc.
 
How NOT to Write a Microbenchmark
How NOT to Write a MicrobenchmarkHow NOT to Write a Microbenchmark
How NOT to Write a MicrobenchmarkAzul Systems Inc.
 
The Art of Java Benchmarking
The Art of Java BenchmarkingThe Art of Java Benchmarking
The Art of Java BenchmarkingAzul Systems Inc.
 
Azul Zulu on Azure Overview -- OpenTech CEE Workshop, Warsaw, Poland
Azul Zulu on Azure Overview -- OpenTech CEE Workshop, Warsaw, PolandAzul Zulu on Azure Overview -- OpenTech CEE Workshop, Warsaw, Poland
Azul Zulu on Azure Overview -- OpenTech CEE Workshop, Warsaw, PolandAzul Systems Inc.
 
Understanding Application Hiccups - and What You Can Do About Them
Understanding Application Hiccups - and What You Can Do About ThemUnderstanding Application Hiccups - and What You Can Do About Them
Understanding Application Hiccups - and What You Can Do About ThemAzul Systems Inc.
 

Mais de Azul Systems Inc. (20)

Zulu Embedded Java Introduction
Zulu Embedded Java IntroductionZulu Embedded Java Introduction
Zulu Embedded Java Introduction
 
What's New in the JVM in Java 8?
What's New in the JVM in Java 8?What's New in the JVM in Java 8?
What's New in the JVM in Java 8?
 
ObjectLayout: Closing the (last?) inherent C vs. Java speed gap
ObjectLayout: Closing the (last?) inherent C vs. Java speed gapObjectLayout: Closing the (last?) inherent C vs. Java speed gap
ObjectLayout: Closing the (last?) inherent C vs. Java speed gap
 
Priming Java for Speed at Market Open
Priming Java for Speed at Market OpenPriming Java for Speed at Market Open
Priming Java for Speed at Market Open
 
Azul Systems open source guide
Azul Systems open source guideAzul Systems open source guide
Azul Systems open source guide
 
Start Fast and Stay Fast - Priming Java for Market Open with ReadyNow!
Start Fast and Stay Fast - Priming Java for Market Open with ReadyNow!Start Fast and Stay Fast - Priming Java for Market Open with ReadyNow!
Start Fast and Stay Fast - Priming Java for Market Open with ReadyNow!
 
Intelligent Trading Summit NY 2014: Understanding Latency: Key Lessons and Tools
Intelligent Trading Summit NY 2014: Understanding Latency: Key Lessons and ToolsIntelligent Trading Summit NY 2014: Understanding Latency: Key Lessons and Tools
Intelligent Trading Summit NY 2014: Understanding Latency: Key Lessons and Tools
 
The evolution of OpenJDK: From Java's beginnings to 2014
The evolution of OpenJDK: From Java's beginnings to 2014The evolution of OpenJDK: From Java's beginnings to 2014
The evolution of OpenJDK: From Java's beginnings to 2014
 
Push Technology's latest data distribution benchmark with Solarflare and Zing
Push Technology's latest data distribution benchmark with Solarflare and ZingPush Technology's latest data distribution benchmark with Solarflare and Zing
Push Technology's latest data distribution benchmark with Solarflare and Zing
 
Webinar: Zing Vision: Answering your toughest production Java performance que...
Webinar: Zing Vision: Answering your toughest production Java performance que...Webinar: Zing Vision: Answering your toughest production Java performance que...
Webinar: Zing Vision: Answering your toughest production Java performance que...
 
Speculative Locking: Breaking the Scale Barrier (JAOO 2005)
Speculative Locking: Breaking the Scale Barrier (JAOO 2005)Speculative Locking: Breaking the Scale Barrier (JAOO 2005)
Speculative Locking: Breaking the Scale Barrier (JAOO 2005)
 
Java vs. C/C++
Java vs. C/C++Java vs. C/C++
Java vs. C/C++
 
What's Inside a JVM?
What's Inside a JVM?What's Inside a JVM?
What's Inside a JVM?
 
Towards a Scalable Non-Blocking Coding Style
Towards a Scalable Non-Blocking Coding StyleTowards a Scalable Non-Blocking Coding Style
Towards a Scalable Non-Blocking Coding Style
 
Experiences with Debugging Data Races
Experiences with Debugging Data RacesExperiences with Debugging Data Races
Experiences with Debugging Data Races
 
Lock-Free, Wait-Free Hash Table
Lock-Free, Wait-Free Hash TableLock-Free, Wait-Free Hash Table
Lock-Free, Wait-Free Hash Table
 
How NOT to Write a Microbenchmark
How NOT to Write a MicrobenchmarkHow NOT to Write a Microbenchmark
How NOT to Write a Microbenchmark
 
The Art of Java Benchmarking
The Art of Java BenchmarkingThe Art of Java Benchmarking
The Art of Java Benchmarking
 
Azul Zulu on Azure Overview -- OpenTech CEE Workshop, Warsaw, Poland
Azul Zulu on Azure Overview -- OpenTech CEE Workshop, Warsaw, PolandAzul Zulu on Azure Overview -- OpenTech CEE Workshop, Warsaw, Poland
Azul Zulu on Azure Overview -- OpenTech CEE Workshop, Warsaw, Poland
 
Understanding Application Hiccups - and What You Can Do About Them
Understanding Application Hiccups - and What You Can Do About ThemUnderstanding Application Hiccups - and What You Can Do About Them
Understanding Application Hiccups - and What You Can Do About Them
 

Último

Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsJhone kinadey
 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AIABDERRAOUF MEHENNI
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxbodapatigopi8531
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceCALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceanilsa9823
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Modelsaagamshah0812
 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...OnePlan Solutions
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsAlberto González Trastoy
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerThousandEyes
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsAndolasoft Inc
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...Health
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfkalichargn70th171
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comFatema Valibhai
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️anilsa9823
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxComplianceQuest1
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfkalichargn70th171
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...MyIntelliSource, Inc.
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...kellynguyen01
 

Último (20)

Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptx
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceCALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.js
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docx
 
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS LiveVip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
 

Understanding GC, JavaOne 2017

  • 1. ©2017 Azul Systems, Inc. Understanding Java Garbage Collection [JavaOne Session: CON5026] Gil Tene, CTO & co-Founder, Azul Systems @giltene
  • 2. ©2011 Azul Systems, Inc. This Talk’s Purpose / Goals This talk is focused on GC education This is not a “how to use flags to tune a collector” talk This is a talk about how the “GC machine” works Purpose: Once you understand how it works, you can use your own brain... You’ll learn just enough to be dangerous... The “Azul makes the world’s greatest GC” stuff will only come at the end, I promise...
  • 3. ©2017 Azul Systems, Inc. High level agenda Some GC fundamentals, terminology & mechanisms Classifying currently available production collectors Why Stop-The-World is a problem The C4 collector: What a solution to STW looks like...
  • 4. ©2017 Azul Systems, Inc. About me: Gil Tene * working on real-world trash compaction issues, circa 2004 co-founder, CTO @Azul Systems Have been working on “think different” GC and runtime approaches since 2002 Created Pauseless & C4 core GC algorithms (Tene, Wolf) A Long history building Virtual & Physical Machines, Operating Systems, Enterprise apps, etc... I also depress people by demonstrating how terribly wrong their latency measurements are…
  • 5. ©2011 Azul Systems, Inc. Memory use How many of you use heap sizes of: F more than ½ GB? F more than 1 GB? F more than 2 GB? F more than 4 GB? F more than 10 GB? F more than 20 GB? F more than 50 GB? F more than 100 GB?
  • 6. ©2017 Azul Systems, Inc. Why should you understand (at least a little) how GC works?
  • 7. ©2017 Azul Systems, Inc. The story of the good little architect
 A good architect must, first and foremost, be able to impose their architectural choices on the project... Early in Azul’s concurrent collector days, we encountered an application exhibiting 18 second pauses Upon investigation, we found the collector was performing 10s of millions of object finalizations per GC cycle *We have since made reference processing fully concurrent... Every single class written in the project had a finalizer The only work the finalizers did was nulling every reference field The right discipline for a C++ ref-counting environment The wrong discipline for a precise garbage collected environment
  • 8. ©2017 Azul Systems, Inc. Much of what People seem to “know” about Garbage Collection is wrong In many cases, it’s much better than you may think GC is extremely efficient. Much more so that malloc() Dead objects cost nothing to collect GC will find all the dead objects (including cyclic graphs) ... In many cases, it’s much worse than you may think Yes, it really will stop for ~1 sec per live GB (except with Zing) No, GC does not mean you can’t have memory leaks No, those pauses you eliminated from your 20 minute test are not gone ...
  • 9. ©2017 Azul Systems, Inc. Some GC Terminology
  • 10. ©2017 Azul Systems, Inc. A Concurrent Collector performs garbage collection work concurrently with the application’s own execution A Parallel Collector uses multiple CPUs to perform garbage collection Classifying a collector’s operation

  • 11. ©2017 Azul Systems, Inc. A Concurrent Collector performs garbage collection work concurrently with the application’s own execution A Parallel Collector uses multiple CPUs to perform garbage collection Classifying a collector’s operation
 An Incremental collector performs a garbage collection operation or phase as a series of smaller discrete operations with (potentially long) gaps in between A Stop-the-World collector performs garbage collection while the application is completely stopped Mostly means sometimes it isn’t (usually means a different fall back mechanism exists) A Monolithic Collector performs the entire collection work in a single, indivisible step
  • 12. ©2017 Azul Systems, Inc. Precise vs. Conservative Collection
 A Collector is Conservative if it is unaware of some object references at collection time, or is unsure about whether a field is a reference or not A Collector is Precise if it can fully identify and process all object references at the time of collection A collector MUST be precise in order to move objects The COMPILERS need to produce a lot of information (OopMaps) All commercial server JVMs use precise collectors All commercial server JVMs use some form of a moving collector
  • 13. ©2017 Azul Systems, Inc. Safepoints
 A GC Safepoint is a point or range in a thread’s execution where the collector can identify all the references in that thread’s execution stack “Safepoint” and “GC Safepoint” are often used interchangeably But there are other types of safepoints, including ones that require more information than a GC safepoint does (e.g. deoptimization) “Bringing a thread to a safepoint” is the act of getting a thread to reach a safepoint and not execute past it Close to, but not exactly the same as “stop at a safepoint” e.g. JNI: you can keep running in, but not past the safepoint Safepoint opportunities are (or should be) frequent In a Global Safepoint all threads are at a Safepoint
  • 14. ©2017 Azul Systems, Inc. Behavior that is common to ALL precise GC mechanisms Identify the live objects in the memory heap Reclaim resources held by dead objects Periodically relocate live objects Examples: Mark/Sweep/Compact (common for Old Generations) Copying collector (common for Young Generations)
  • 15. ©2017 Azul Systems, Inc. Mark (aka “Trace”) Start from “roots” (thread stacks, statics, etc.) “Paint” anything you can reach as “live” At the end of a mark pass: all reachable objects will be marked “live” all non-reachable objects will be marked “dead” (aka “non-live”). Note: work is generally linear to “live set”
  • 16. ©2017 Azul Systems, Inc. Sweep Scan through the heap, identify “dead” objects and track them somehow (usually in some form of free list) Note: work is generally linear to heap size
  • 17. ©2017 Azul Systems, Inc. Compact Over time, heap will get “swiss cheesed”: contiguous dead space between objects may not be large enough to fit new objects (aka “fragmentation”) Compaction moves live objects together to reclaim contiguous empty space (aka “relocate”) Compaction has to correct all object references to point to new object locations (aka “remap” or “fixup”) Remap scan must cover all references that could possibly point to relocated objects Note: work is generally linear to “live set”
  • 18. ©2017 Azul Systems, Inc. Copy A copying collector moves all lives objects from a “from” space to a “to” space & reclaims “from” space At start of copy, all objects are in “from” space and all references point to “from” space. Start from “root” references, copy any reachable object to “to” space, correcting references as we go At end of copy, all objects are in “to” space, and all references point to “to” space Note: work generally linear to “live set”
  • 19. ©2017 Azul Systems, Inc. Mark/Sweep/Compact, Copy, Mark/Compact Copy requires 2x the max. live set to be reliable Mark/Compact [typically] requires 2x the max. live set in order to fully recover garbage in each cycle Mark/Sweep/Compact only requires 1x (plus some) Copy and Mark/Compact are linear only to live set Mark/Sweep/Compact linear (in sweep) to heap size Mark/Sweep/(Compact) may be able to avoid some moving work Copying is [typically] “monolithic”
  • 20. ©2017 Azul Systems, Inc. Generational Collection Weak Generational Hypothesis; “most objects die young” Focus collection efforts on young generation: Use a moving collector: work is linear to the live set The live set in the young generation is a small % of the space Promote objects that live long enough to older generations Only collect older generations as they fill up “Generational filter” reduces rate of allocation into older generations Tends to be (order of magnitude) more efficient Great way to keep up with high allocation rate Practical necessity for keeping up with processor throughput
  • 21. ©2017 Azul Systems, Inc. Generational Collection Requires a “Remembered set”: a way to track all references into the young generation from the outside Remembered set is also part of “roots” for young generation collection No need for 2x the live set: Can “spill over” to old gen Usually want to keep surviving objects in young generation for a while before promoting them to the old generation Immediate promotion can significantly reduce gen. filter efficiency Waiting too long to promote can eliminate generational benefits
  • 22. ©2017 Azul Systems, Inc. The typical combos in commercial server JVMS Young generation usually uses a copying collector Young generation is usually monolithic, stop-the-world Old generation usually uses Mark/Sweep/Compact Old generation may be STW, or Concurrent, or mostly-Concurrent, or Incremental-STW, or mostly-Incremental-STW
  • 23. ©2017 Azul Systems, Inc. Some non monolithic-STW stuff
  • 24. ©2017 Azul Systems, Inc. Concurrent Marking Mark all reachable objects as “live”, but object graph is “mutating” under us. Classic concurrent marking race: mutator may move reference that has not yet been seen by the marker into an object that has already been visited If not intercepted or prevented in some way, will corrupt the heap Example technique: track mutations, multi-pass marking Track reference mutations during mark (e.g. in card table) Re-visit all mutated references (and track new mutations) When set is “small enough”, do a STW catch up (mostly concurrent) Note: work grows with mutation rate, may fail to finish
  • 25. ©2017 Azul Systems, Inc. Incremental Compaction Track cross-region remembered sets (which region points to which) To compact a single region, only need to scan regions that point into it to remap all potential references identify regions sets that fit in limited time Each such set of regions is a Stop-the-World increment Safe to run application between (but not within) increments Note: work can grow with the square of the heap size The number of regions pointing into a single region is generally linear to the heap size (the number of regions in the heap)
  • 26. ©2017 Azul Systems, Inc. Delaying the inevitable Some form of copying/compaction is inevitable in practice And compacting anything requires scanning/fixing all references to it Delay tactics focus on getting “easy empty space” first This is the focus for the vast majority of GC tuning Most objects die young [Generational] So collect young objects only, as much as possible. Hope for short STW. But eventually, some old dead objects must be reclaimed Most old dead space can be reclaimed without moving it [e.g. CMS] track dead space in lists, and reuse it in place But eventually, space gets fragmented, and needs to be moved Much of the heap is not “popular” [e.g. G1, “Balanced”] A non popular region will only be pointed to from a small % of the heap So compact non-popular regions in short stop-the-world pauses But eventually, popular objects and regions need to be compacted
  • 27. ©2017 Azul Systems, Inc. Classifying common collectors
  • 28. ©2017 Azul Systems, Inc. The typical combos in commercial server JVMs Young generation usually uses a copying collector Young generation is usually monolithic, stop-the-world Old generation usually uses a Mark/Sweep/Compact collector Old generation may be STW, or Concurrent, or mostly-Concurrent, or Incremental-STW, or mostly-Incremental-STW
  • 29. ©2017 Azul Systems, Inc. HotSpot™ ParallelGC
 Collector mechanism classification Monolithic Stop-the-world copying NewGen Monolithic Stop-the-world Mark/Sweep/Compact OldGen
  • 30. ©2017 Azul Systems, Inc. HotSpot™ ConcMarkSweepGC (aka CMS)
 Collector mechanism classification Monolithic Stop-the-world copying NewGen (ParNew) Mostly Concurrent, non-compacting OldGen (CMS) Mostly Concurrent marking Mark concurrently while mutator is running Track mutations in card marks Revisit mutated cards (repeat as needed) Stop-the-world to catch up on mutations, ref processing, etc. Concurrent Sweeping Does not Compact (maintains free list, does not move objects) Fallback to Full Collection (Monolithic Stop the world). Used for Compaction, etc.
  • 31. ©2017 Azul Systems, Inc. HotSpot™ G1GC (aka “Garbage First”) 
 Collector mechanism classification Monolithic Stop-the-world copying NewGen Mostly Concurrent, OldGen marker Mostly Concurrent marking Stop-the-world to catch up on mutations, ref processing, etc. Tracks inter-region relationships in remembered sets Stop-the-world mostly incremental compacting old gen Objective: “Avoid, as much as possible, having a Full GC…” Compact sets of regions that can be scanned in limited time Delay compaction of popular objects, popular regions Fallback to Full Collection (Monolithic Stop the world). Used for compacting popular objects, popular regions, etc.
  • 32. ©2017 Azul Systems, Inc. Monolithic-STW GC Problems
  • 33. ©2017 Azul Systems, Inc. One way to deal with Monolithic-STW GC
  • 34. ©2017 Azul Systems, Inc. 0" 2000" 4000" 6000" 8000" 10000" 12000" 14000" 16000" 18000" 0" 2000" 4000" 6000" 8000" 10000" Hiccup&Dura*on&(msec)& &Elapsed&Time&(sec)& Hiccups&by&Time&Interval& Max"per"Interval" 99%" 99.90%" 99.99%" Max" 0%" 90%" 99%" 99.9%" 99.99%" 99.999%" 99.9999%" Max=16023.552& 0" 2000" 4000" 6000" 8000" 10000" 12000" 14000" 16000" 18000"Hiccup&Dura*on&(msec)& & & Percen*le& Hiccups&by&Percen*le&Distribu*on&
  • 35. ©2017 Azul Systems, Inc. 0" 2000" 4000" 6000" 8000" 10000" 12000" 14000" 16000" 18000" 0" 2000" 4000" 6000" 8000" 10000" Hiccup&Dura*on&(msec)& &Elapsed&Time&(sec)& Hiccups&by&Time&Interval& Max"per"Interval" 99%" 99.90%" 99.99%" Max" 0%" 90%" 99%" 99.9%" 99.99%" 99.999%" 99.9999%" Max=16023.552& 0" 2000" 4000" 6000" 8000" 10000" 12000" 14000" 16000" 18000" Hiccup&Dura*on&(msec)& & & Percen*le& Hiccups&by&Percen*le&Distribu*on&
  • 37. ©2017 Azul Systems, Inc. Another way to cope: Creative Language “Guarantee a worst case of X msec, 99% of the time” “Mostly” Concurrent, “Mostly” Incremental Translation: “Will at times exhibit long monolithic stop-the-world pauses” “Fairly Consistent” Translation: “Will sometimes show results well outside this range” “Typical pauses in the tens of milliseconds” Translation: “Some pauses are much longer than tens of milliseconds”
  • 38. ©2017 Azul Systems, Inc. Actually measuring things (e.g. jHiccup)
  • 39. ©2017 Azul Systems, Inc. Incontinuities in Java platform execution 0" 200" 400" 600" 800" 1000" 1200" 1400" 1600" 1800" 0" 200" 400" 600" 800" 1000" 1200" 1400" 1600" 1800" Hiccup&Dura*on&(msec)& &Elapsed&Time&(sec)& Hiccups"by"Time"Interval" Max"per"Interval" 99%" 99.90%" 99.99%" Max" 0%" 90%" 99%" 99.9%" 99.99%" 99.999%" Max=1665.024& 0" 200" 400" 600" 800" 1000" 1200" 1400" 1600" 1800" Hiccup&Dura*on&(msec)& & & Percen*le& Hiccups"by"Percen@le"Distribu@on"
  • 40. ©2017 Azul Systems, Inc. C4: Solving Stop-The-World
  • 41. ©2017 Azul Systems, Inc. The problems that needed solving (areas where the state of the art needed improvement) Robust Concurrent Marking In the presence of high mutation and allocation rates Cover modern runtime semantics (e.g. weak refs, lock deflation) Compaction that is not monolithic-stop-the-world E.g. stay responsive while compacting ¼ TB heaps Must be robust: not just a tactic to delay STW compaction [current “incremental STW” attempts fall short on robustness] Young-Gen that is not monolithic-stop-the-world Stay responsive while promoting multi-GB data spikes Concurrent or “incremental STW” may both be ok Surprisingly little work done in this specific area
  • 42. ©2017 Azul Systems, Inc. Azul’s “C4” Collector 
 Continuously Concurrent Compacting Collector Concurrent guaranteed-single-pass marker Oblivious to mutation rate Concurrent ref (weak, soft, final) processing Concurrent Compactor Objects moved without stopping mutator References remapped without stopping mutator Can relocate entire generation (New, Old) in every GC cycle Concurrent, compacting old generation Concurrent, compacting new generation No stop-the-world fallback Always compacts, and always does so concurrently
  • 43. ©2017 Azul Systems, Inc. C4’s Prime Directives Always do the same thing Avoid the temptation to “solve” things by delaying them Avoid rare code paths Running under load for an hour should exercise the whole thing Don’t be in a hurry Avoid the “if we don’t do this quickly it will get worse” trap e.g. multi-pass marking or pauses that depend on scale metrics or being consistently slow during an entire phase of GC Allow collector to be “lazy” and run at a “relaxed pace” Keep up with allocation rate is only “pacing” reason
  • 44. ©2017 Azul Systems, Inc. The secret to GC efficiency
  • 45. ©2017 Azul Systems, Inc. 100% CPU% Heap size Live set Heap size vs. GC CPU %
  • 46. ©2017 Azul Systems, Inc. What empty memory controls Empty memory controls efficiency (amount of collector work needed per amount of application work performed) Empty memory controls the frequency of pauses (if the collector performs any Stop-the-world operations) Empty memory DOES NOT control pause times (only their frequency) With C4, we get the upside with no downside…
  • 47. ©2017 Azul Systems, Inc. C4 algorithm highlights Same core mechanism used for both generations Concurrent Mark-Compact A Loaded Value Barrier (LVB) is central to the algorithm Every heap reference is verified as “sane” when loaded “Non-sane” refs are caught and fixed in a self-healing barrier Refs that have not yet been “marked through” are caught Guaranteed single pass concurrent marker Refs that point to relocated objects are caught Lazily (and concurrently) remap refs, no hurry Relocation and remapping are both concurrent Uses “quick release” to recycle memory Forwarding information is kept outside of object pages Physical memory released immediately upon relocation “Hand-over-hand” compaction without requiring empty memory
  • 48. ©2017 Azul Systems, Inc. Relocation Phase Compaction A B C D E A’ D’ A -> A’ B -> B’ C -> C’ D -> D’ E -> E’ B’ C’ E’ Forwarding info:
  • 49. ©2017 Azul Systems, Inc. PHYSICAL VIRTUAL Quick Release A -> A’ B -> B’ C -> C’ D -> D’ E -> E’
  • 50. ©2017 Azul Systems, Inc. Benefits ELIMINATES Garbage Collection as a concern for enterprise applications
  • 51. ©2017 Azul Systems, Inc. GC Tuning
  • 52. ©2017 Azul Systems, Inc. Java GC tuning is “hard”… Examples of actual command line GC tuning parameters: Java -Xmx12g -XX:MaxPermSize=64M -XX:PermSize=32M -XX:MaxNewSize=2g -XX:NewSize=1g -XX:SurvivorRatio=128 -XX:+UseParNewGC -XX:+UseConcMarkSweepGC -XX:MaxTenuringThreshold=0 -XX:CMSInitiatingOccupancyFraction=60 -XX:+CMSParallelRemarkEnabled -XX:+UseCMSInitiatingOccupancyOnly -XX:ParallelGCThreads=12 -XX:LargePageSizeInBytes=256m … Java –Xms8g –Xmx8g –Xmn2g -XX:PermSize=64M -XX:MaxPermSize=256M -XX:-OmitStackTraceInFastThrow -XX:SurvivorRatio=2 -XX:-UseAdaptiveSizePolicy -XX:+UseConcMarkSweepGC -XX:+CMSConcurrentMTEnabled -XX:+CMSParallelRemarkEnabled -XX:+CMSParallelSurvivorRemarkEnabled -XX:CMSMaxAbortablePrecleanTime=10000 -XX:+UseCMSInitiatingOccupancyOnly -XX:CMSInitiatingOccupancyFraction=63 -XX:+UseParNewGC –Xnoclassgc …
  • 53. ©2017 Azul Systems, Inc. A few more GC tuning flags Source: Word Cloud created by Frank Pavageau in his Devoxx FR 2012 presentation titled “Death by Pauses”
  • 54. ©2017 Azul Systems, Inc. java -Xmx40g The complete guide to modern GC tuning** java -Xmx20g java -Xmx10g java -Xmx5g
  • 55. ©2017 Azul Systems, Inc. java -Xmx40g java -Xmx20g java -Xmx10g java -Xmx5g The complete guide to modern GC tuning**
  • 56. ©2017 Azul Systems, Inc. Cassandra under heavy load, Intel E5-2690 v4 server This is 1 msec
  • 57. ©2017 Azul Systems, Inc. Sustainable Throughput: The throughput achieved while safely maintaining service levels
  • 58. ©2017 Azul Systems, Inc. Warning: results may be too good
  • 59. ©2017 Azul Systems, Inc. A practical real-world example: Improve Digital (Video Advertising) Cassandra cluster running on 6x AWS i3.2xlarge Approx. 80/20 write/read split Data read and written with quorum consistency 6 client machines sending requests collocated in the same AZs SLA requirements for read operations: 20ms at 99.9% 50ms at 99.99% 100ms at 99.998% (not a typo, last 9 hard to maintain on AWS) HotSpot w/G1: can maintain ~4K TPS before SLA breach Zing: can maintain ~21K TPS before SLA breach
  • 60. ©2017 Azul Systems, Inc. Transaction Load Success Rate
  • 61. ©2017 Azul Systems, Inc. Q & A Understanding Java Garbage Collection [CON5026] @giltene http://www.azul.com http://giltene.github.com/jHiccup http://giltene.github.com/HdrHistogram