Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World...

57
© Copyright Azul Systems 2016 © Copyright Azul Systems 2016 @azulsystems Enabling Java in Latency Sensitive Environments Matt Schuetze Azul Director of Product Management Matt Schuetze, Product Manager, Azul Systems Utah JUG, Murray UT, November 20, 2014 Atlanta Java Users Group Atlanta, Georgia 3/16/2016 1

Transcript of Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World...

Page 1: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

© Copyright Azul Systems 2016

@azulsystems

Enabling Java

in

Latency Sensitive

Environments

Matt Schuetze

Azul Director of Product Management Matt Schuetze, Product Manager, Azul Systems Utah JUG, Murray UT, November 20, 2014

Atlanta Java Users Group

Atlanta, Georgia

3/16/2016 1

Page 2: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

High Level Agenda

Intro, jitter vs. JITTER

Java in a low latency application world

The (historical) fundamental problems

What people have done to try to get around

them

What if the fundamental problems were

eliminated?

What 2016 looks like for Low Latency Java

developers

Real World Case Studies

Welcome to all Atlanta JUG members!

3/16/2016 2

Page 3: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016 3/16/2016 3

Page 4: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

Is “jitter” a proper word for this?

99%‘ile is

~60 usec

Max is ~30,000%

higher than

“typical”

Answer: no its not jitter at all. It’s phase changes.

3/16/2016 4

Page 5: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

About Azul Systems

Vega

C4

We make scalable Virtual

Machines

Have built “whatever it

takes to get job done” since

2002

3 generations of custom

SMP Multi-core HW (Vega)

Now Pure software for

commodity x86 (Zing)

Certified OpenJDK (Zulu)

Known for Low Latency,

Consistent Execution, and

Large Data Set excellence

Zing, Zulu, and everything about Java Virtual Machines

3/16/2016 5

Page 6: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

Java in the low latency world

3/16/2016 6

Page 7: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

Java in a low latency world

Why do people use Java for low latency apps?

Are they crazy?

No. There are good, easy to articulate reasons

Projected lifetime cost

Developer productivity

Time-to-product, Time-to-market, Time-to-peak

performance ...

Leverage, ecosystem, ability to hire

Java and low latency are no longer strange bedfellows

3/16/2016 7

Page 8: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

e.g. customer answer to:

“Why do you use Java in Algo Trading?”

Strategies have a shelf life

We have to keep developing and deploying new

ones

Only one out of N is actually productive

Profitability therefore depends on ability to

successfully deploy new strategies, and on the

cost of doing so

Our developers seem to be able to produce 2x-3x

as much when using a Java environment as they

would with C++ ...

3/16/2016 8

Page 9: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

So what is the problem?

Is Java Slow?

No

A good programmer will get roughly the same

speed from both Java and C++

A bad programmer won’t get you fast code on

either

The 50%‘ile and 90%‘ile are typically excellent...

It’s those pesky occasional stutters and stammers

and stalls that are the problem...

Ever hear of Garbage Collection?

3/16/2016 9

Page 10: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

Java’s Achilles heel

3/16/2016 10

Page 11: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

Stop-The-World Garbage Collection:

How bad is it?

Let’s ignore the bad multi-second pauses for now...

Low latency applications regularly experience

“small”, “minor” GC events that range in the 10s of

msec

Frequency directly related to allocation rate

In turn, directly related to throughput

So we have great 50%, 90%. Maybe even 99%

But 99.9%, 99.99%, Max, all “suck”

So bad that it affects risk, profitability, service

expectations, etc.

3/16/2016 11

Page 12: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

STW-GC effects in a low latency application

99%‘ile is

~60 usec

Max is ~30,000%

higher than

“typical”

3/16/2016 12

Page 13: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

One way to deal with Stop-The-World GC I cannot see it, so it cannot see me.

3/16/2016 13

Page 14: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

More Stop-The-World GC avoidance Time for a bigger rug.

3/16/2016 14

Page 15: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

What do actual low latency developers

do about it?

They use “Java” instead of Java

They write “in the Java syntax”

They avoid allocation as much as possible

E.g. They build their own object pools for

everything

They write all the code they use (no 3rd party libs)

They train developers for their local discipline

In short: They revert to many of the practices that

hurt productivity. They lose out on much of Java.

3/16/2016 15

Page 16: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

Another way to cope: “Creative Language”

“Guarantee a worst case of 5 msec, 99% of the time”

Translation: “1% will be far worse than worst case”

“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”

Drawn from evil vendor marketing literature

3/16/2016 16

Page 17: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

What do low latency (Java) developers

get for all their effort?

They still see pauses (usually ranging to tens of

msec)

But they get fewer (as in less frequent) pauses

And they see fewer people able to do the job

And they have to write EVERYTHING themselves

And they get to debug malloc/free patterns again

And they can only use memory in certain ways

...

Some call it “fun”... Others “duct tape

engineering”...

3/16/2016 17

Page 18: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

There is a fundamental problem:

Stop-The-World GC mechanisms

are contradictory to the fundamental

requirements of

low latency & low jitter apps

3/16/2016 18

Page 19: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

Unsustainable Throughout

Sustainable Throughput The throughput achieved while safely maintaining service levels

3/16/2016 19

Page 20: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

It’s an industry-wide

problem

3/16/2016 20

Page 21: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

It was an industry-wide

problem

It’s 2016... Now we have Zing.

3/16/2016 21

Page 22: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

The common GC behavior across ALL

currently shipping (non-Zing) JVMs

ALL use a Monolithic Stop-the-world NewGen – “small” periodic pauses (small as in 10s of msec)

– pauses more frequent with higher throughput or allocation rates

Development focus for ALL is on OldGen collectors – Focus is on trying to address the many-second pause problem

– Usually by sweeping it farther and farther the rug

– “Mostly X” (e.g. “mostly concurrent”) hides the fact that they refer

only to the OldGen part of the collector

– E.g. CMS, G1, Balanced.... all are OldGen-only efforts

ALL use a Fallback to Full Stop-the-world Collection – Used to recover when other mechanisms (inevitably) fail

– Also hidden under the term “Mostly”...

3/16/2016 22

Page 23: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

At Azul, STW-GC was addressed head-on

We decided to focus on the right core problems – Scale & productivity being limited by responsiveness

– Even “short” GC pauses are considered a problem

Responsiveness must be unlinked from key

metrics: – Transaction Rate, Concurrent users, Data set size, etc.

– Heap size, Live Set size, Allocation rate, Mutation rate

– Responsiveness must be continually sustainable

– Can’t ignore “rare but periodic” events

Eliminate ALL Stop-The-World Fallbacks – Any STW fallback is a real-world failure

Trivia: Azul as a company founded predominantly around this one premise plaguing then Java servers

3/16/2016 23

Page 24: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

The Zing “C4” Collector Continuously Concurrent Compacting Collector

Concurrent, compacting old generation

Concurrent, compacting new generation

No stop-the-world fallback – Always compacts, and always does so concurrently

3/16/2016 24

Page 25: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

Benefits

3/16/2016 25

Page 26: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016 3/16/2016 26

Stay Responsive Even when traffic patterns change without warning

7x Load

Increase

30 minute span shows

elevated load long after

event, yet no pauses.

Page 27: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016 3/16/2016 27

Handle Real World traffic patterns One second view of transactions. Not constant. Not random either. Bursty is normal.

Red line shows where

order pricing arrival rate

would be if constant

Page 28: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016 3/16/2016 28

Achieve Measureable Benefits

Zing helped LMAX tame GC-related

latency outlier pauses – Highly-engineered system: 4ms every 30 seconds

down to 1ms every 2 hours

– Less well-tuned system: 50ms every 30 seconds down

to 3ms every 15 minutes

No more unexpected/unwanted old-gen

pauses caused by external behavior – CMS STW intra-day, generally ~500ms, gone

– Removed source of backpressure on latency critical

path.

– Pre-Azul these would occur less predictably, but

multiple times a week.

From joint LMAX/Azul talk at QCon London, March 2015

Page 29: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

This is not “just Theory”

jHiccup A tool that measures and reports

(as your application is running)

if your JVM is running all the time 3/16/2016 29

Page 30: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

Discontinuities in Java execution - Easy To Measure

A telco

App with a

bit of a

“problem”

3/16/2016 30

We call these

“hiccups”

Page 31: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

Oracle HotSpot (pure newgen) Zing

Low latency trading application 3/16/2016 31

Page 32: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

Oracle HotSpot (pure newgen) Zing

Low latency trading application 3/16/2016 32

Page 33: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

Low latency - Drawn to scale

Oracle HotSpot (pure newgen) Zing

3/16/2016 33

Page 34: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

Point of Discussion:

What are your “Requirements”?

3/16/2016 34

Requirements

and SLAs are

not a mere

crusade. They

should reflect

real business

desires and

performance

expectations.

Page 35: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

Point of Discussion:

What are your “Requirements”?

3/16/2016 35

Requirements

and SLAs are

not a mere

crusade. They

should reflect

real business

desires and

performance

expectations.

Page 36: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

It’s not just for Low Latency

Just as easy to gauge requirements for

human-response-time apps

3/16/2016 36

Page 37: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

Portal Application, slow Ehcache “churn”

Oracle HotSpot CMS, 1GB in an 8GB heap Zing, 1GB in an 8GB heap

3/16/2016 37

Page 38: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

Portal Application, slow Ehcache “churn”

Oracle HotSpot CMS, 1GB in an 8GB heap Zing, 1GB in an 8GB heap

3/16/2016 38

Page 39: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

Portal Application - Drawn to scale

Oracle HotSpot CMS, 1GB in an 8GB heap Zing, 1GB in an 8GB heap

3/16/2016 39

Page 40: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

A Recent E-Commerce Case Study

3/16/2016 40

Page 41: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

Cyber Monday comes earlier every year… General trends of real world e-commerce traffic

3/16/2016 41

Page 42: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

Human-Time Real World Latency Case

Web retail site faces spike loads every year over

Thanksgiving through Cyber Monday.

Site latency suffers at peak viewing and buying

times, discouraging shoppers and leaving

abandoned carts.

Hard to predict height of surge, just know its big,

far higher than regular traffic 362 other days of the

year.

New features like gallery search (Solr/Lucene)

added higher memory footprint, longer GC times.

Staff spent lots of effort tuning HotSpot.

Specific e-tail customer based in Salt Lake City, Utah.

3/16/2016 42

Page 43: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

Real World Latency Results

Customer studied Azul, met at Strata, San Fran

Discussion led to Zing as viable alternative

Customer ran pilot tests with positive results. Needed

one Linux setting adjustment, otherwise same server

gear.

POC on customer live system (Amazon EC2 nodes)

showed better than expected latency profiles.

No more GC tuning!

Experienced a stable and profitable Thanksgiving

weekend.

Timeframe was fall 2014.

3/16/2016 43

Page 44: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

Remind me how GC tuning sucks

3/16/2016 44

Page 45: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

Java GC tuning is “hard”…

Examples of actual command line GC tuning terms: 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 …

3/16/2016 45

Page 46: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

A few GC tuning flags

Source: Word Cloud created by Frank Pavageau in his Devoxx FR 2012 presentation titled “Death by Pauses”

3/16/2016 46

Page 47: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

Complete guide to Zing GC tuning

java -Xmx40g

3/16/2016 47

Page 48: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

Any other problems beyond GC?

3/16/2016 48

Page 49: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

JVMs make many tradeoffs

often trading speed vs. outliers

Some speed techniques come at extreme outlier

costs

– E.g. (“regular”) biased locking

– E.g. counted loops optimizations

Deoptimization

Lock deflation

Weak References, Soft References, Finalizers

Time To Safe Point (TTSP)

3/16/2016 49

Page 50: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

Time To Safepoint: Your new #1 enemy

Many things in a JVM (still) use a global safepoint

All threads brought to a halt, at a “safe to analyze”

point in code, and then released after work is

done.

E.g. GC phase shifts, Deoptimization, Class

unloading, Thread Dumps, Lock Deflation, etc.

etc.

A single thread with a long time-to-safepoint path

can cause an effective pause for all other threads.

Consider this a variation on Amdahl’s law.

Many code paths in the JVM are long...

Once GC itself was taken care of

3/16/2016 50

Page 51: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

Time To Safepoint (TTSP),

the most common examples

Array copies and object clone()

Counted loops

Many other variants in the runtime...

Measure, Measure, Measure...

Zing has a built-in TTSP profiler

At Azul, the CTO walks around with a 0.5msec

beat down stick...

3/16/2016 51

Page 52: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

OS related stuff

OS related hiccups tend to dominate once GC

and TTSP are removed as issues.

Take scheduling pressure seriously (Duh?)

Hyper-threading (good? bad?)

Swapping (Duh!)

Power management

Transparent Huge Pages (THP).

...

Once GC and TTSP are taken care of

3/16/2016 52

Page 53: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

Summary: In 2016, “Real” Java is finally

viable for low latency applications

GC is no longer a dominant issue, even for

outliers

2-3 msec worst case with “easy” tuning

< 1 msec worst case is very doable

No need to code in special ways any more

– You can finally use “real” Java for everything

– You can finally 3rd party libraries without worries

– You can finally use as much memory as you want

– You can finally use regular (good) programmers

3/16/2016 53

Page 54: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

One-liner Takeaway:

Zing: the cure for your Java hiccups

3/16/2016 54

Page 55: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

Compulsory Marketing Pitch

3/16/2016 55

Page 56: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

Azul Hot Topics

3/16/2016 56

Zing 16.01 available

2 TB Xmx

Docker

JMX

Performance

Zing for Cloud

Amazon AMIs

Rackspace

OnMetal

Azure in R&D

Zing for Big Data

Cassandra offering

Akka/Spark in Zing

open source program

JBoss DataGrid cert

Zulu

ARM32 evals

Intel Edison evals

JSE Embedded

Azure Gallery

Page 57: Enabling Java in Latency Sensitive Environments · © Copyright Azul Systems 2016 Stop-The-World Garbage Collection: How bad is it? Let’s ignore the bad multi-second pauses for

© Copyright Azul Systems 2016

Q&A and In Closing…

Go get some Zing today!

At very least download jHiccup.

Which next stop Stone Mountain or

Six Flags?

azul.com

3/16/2016 57

@schuetzematt