SlideShare a Scribd company logo
1 of 56
Download to read offline
@sjmaple#VoxxedBerlin
IS YOUR PROFILER SPEAKING
THE SAME LANGUAGE AS YOU?
SIMON MAPLE
@SJMAPLE
2
PERFORMANCE
PIPELINE
Placeholder Text
topicName
Placeholder Text
topicName
Placeholder Text
topicName
PERFORMANCE
PIPELINE
8
source: http://zeroturnaround.com/rebellabs/developer-productivity-report-2015-java-performance-survey-results/
9
1. Functionality - MAKE IT WORK
2. Quality - MAKE IT WORK WELL
3. Performance - MAKE IT WORK FAST
4. Security - MAKE IT WORK SECURELY
THE SOFTWARE MANTRA
10
1. Functionality - MAKE IT WORK
2. Quality - MAKE IT WORK WELL
3. Performance - MAKE IT WORK FAST
4. Security - MAKE IT WORK SECURELY
THE SOFTWARE MANTRA
11
TOP 5 PERFORMANCE ISSUES
source: http://zeroturnaround.com/rebellabs/developer-productivity-report-2015-java-performance-survey-results/
13
Reactive - Wait until an issue occurs,
then resolve it as quickly as possible.
Proactive - prevent POTENTIAL issues
from EVER occurring.
REACTIVE OR PROACTIVE?
PROFILING
CPU
TRACING SAMPLING
MEMORY
USAGE ALLOCATION
WHAT DOES PROFILING COVER?
PROFILING
CPU
TRACING SAMPLING
MEMORY
USAGE ALLOCATION
WHAT DOES PROFILING COVER?
WHAT IS A SAMPLE?
THREAD DUMP:
CTRL+BREAK ON WINDOWS
KILL -3 PID ON *NIX
"http-nio-8080-exec-1"#40 daemon prio=5 os_prio=31 tid=0x00007fd7057ed800 nid=0x7313 runnable
java.lang.Thread.State: RUNNABLE
at o.s.s.p.w.OwnerController.processFindForm(OwnerController.java:89)
at s.r.NativeMethodAccessorImpl.invoke0(Native Method)
at s.r.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at s.r.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at j.l.r.Method.invoke(Method.java:497)
WHAT IS A SAMPLE?
18
19
SAMPLING INTERVAL: 20MS
SAMPLE COUNT: 4
SAMPLING INTERVAL: 1MS
SAMPLE COUNT: 100+
SAMPLING
main()
foo()
bar()
KeyserSöze()
23
SAFEPOINTS
SAMPLING
main()
foo()
bar()
KeyserSöze()
SAFEPOINT BIAS
SAFEPOINTS
main()
foo()
bar()
KeyserSöze()
SAFEPOINT BIAS
SAFEPOINTS
main()
foo()
bar()
KeyserSöze()
CAN IT BE
TAMED?
TAMING SAFEPOINT BIAS
Java Mission Control
Proprietary protocol
Java 7u40
Honest Profiler
JVMTI
AsyncGetCallTrace
https://github.com/RichardWarburton/honest-profiler
JAVA.UTIL IS HOT?
java.util is hot? :)
34
TRACING
(INSTRUMENTATION)
public	void	businessMethod()	{

		long	start	=	System.currentTimeMillis();	


		work();	


		Profiler.log(System.currentTimeMillis()-start);	
}
TRACING
public	void	businessMethod()	{

		long	start	=	System.nanoTime();	


		work();	


		Profiler.log(System.nanoTime()-start);

}
TRACING
public	void	businessMethod()	{

		Profiler.start(“businessMethod”);	
		try	{	
				work();	
		}	finally	{

				Profiler.log("businessMethod");

		}

}
TRACING
SYSTEM.NANOTIME
SYSTEM.CURRENTTIMEMILLIS
PARALLEL THREAD
SLEEP-WAKEUP-UPDATE
YIELD-WAKEUP-UPDATE
BUSY-LOOP-UPDATE
TIMING
class	Profiler	{	


		Loop	loop;



		public	static	void	start(String	method)	{

				long	now	=	loop.getTime();	
				…

		}
public	class	Loop	implements	Runnable	{

				private	volatile	long	time;

				public	void	run()	{

								while	(running)	{

												time	=	System.nanoTime();

												sleep();

								}

				}	
				public	final	long	getTime()	{

								return	time;

				}
NANO SECONDS
Reading memory is not free.
It takes cycles = nanoseconds
Each (software) layer is not free.
JVM, JNI, OS, HW
http://shipilev.net/blog/2014/nanotrusting-nanotime/
Nanotrusting the NanoTime
NANO SECONDS PUT INTO PERSPECTIVE
GRANULARITY_NANOTIME: 26.300 +- 0.205 NS
LATENCY_NANOTIME: 25.542 +- 0.024 NS
GRANULARITY_NANOTIME: 29.322 +- 1.293 NS
LATENCY_NANOTIME: 29.910 +- 1.626 NS
GRANULARITY_NANOTIME: 371.419 +- 1.541 NS
LATENCY_NANOTIME: 14.415 +- 0.389 NS
LINUX
SOLARIS
WINDOWS
http://shipilev.net/blog/2014/nanotrusting-nanotime/
Nanotrusting the NanoTime
SLEEP TIMER: TIME-SLICING & SCHEDULING
MINIMUM SLEEP TIMES:
Win8: 1.7 ms (1.0 ms using JNI + socket poll)
Linux: 0.1 ms
OS X: 0.05 ms
VirtualBox + Linux: don’t ask :)
Still uses 25-50% of CPU core
YIELD?
Windows scheduler skips yielded threads in case of
CPU starvation
public	class	Loop	implements	Runnable	{

				private	volatile	long	time;

				public	void	run()	{

								while	(running)	{

												time	=	System.nanoTime();

												sleep();

								}

				}	
				private	void	sleep()	{

						if	(!MiscUtil.isWindows())	{

									Thread.yield();

						}

				}
public	class	Loop	implements	Runnable	{

				private	volatile	long	time;

				public	void	run()	{

								while	(running)	{

												time	=	System.nanoTime();

												sleep();

								}

				}	
				private	void	sleep()	{

						if	(!MiscUtil.isWindows())	{

									Thread.yield();

						}

				}
public	class	Loop	implements	Runnable	{

				private	volatile	long	time;

				public	void	run()	{

								while	(running)	{

												time	=	System.nanoTime();

												sleep();

								}

				}	
				private	void	sleep()	{

						if	(!MiscUtil.isWindows())	{

									Thread.yield();

						}

				}
public	class	Loop	implements	Runnable	{

				private	volatile	long	time;

				public	void	run()	{

								while	(running)	{

												time	=	System.nanoTime();

												sleep();

								}

				}	
				private	void	sleep()	{

						if	(!MiscUtil.isWindows())	{

									Thread.yield();

						}	
						...

				}
main()
foo()
bar()
baz()
TRACING
main()
foo()
bar()
baz()
2
3
4
TRACING
main()
foo()
bar()
baz()
2
3
5
boo()
TRACING
53
THE PIPELINE
INTRODUCING…
55
FREE STUFF!
0t.ee/voxxedberlin16
@sjmaple#VoxxedBerlin
QUESTIONS?
SIMON MAPLE
@SJMAPLE
VIRTUAL JUG FOUNDER
LONDON JUG CO-LEADER
JAVA CHAMPION
JAVAONE ROCKSTAR
REBELLABS AUTHOR

More Related Content

Viewers also liked

Evaluation - Question One
Evaluation - Question One Evaluation - Question One
Evaluation - Question One
Tyrrell
 
Intro to ss9
Intro to ss9Intro to ss9
Intro to ss9
admazur
 

Viewers also liked (20)

Docker orchestration voxxed days berlin 2016
Docker orchestration   voxxed days berlin 2016Docker orchestration   voxxed days berlin 2016
Docker orchestration voxxed days berlin 2016
 
The internet of (lego) trains
The internet of (lego) trainsThe internet of (lego) trains
The internet of (lego) trains
 
Cassandra and materialized views
Cassandra and materialized viewsCassandra and materialized views
Cassandra and materialized views
 
Advanced akka features
Advanced akka featuresAdvanced akka features
Advanced akka features
 
OrientDB - Voxxed Days Berlin 2016
OrientDB - Voxxed Days Berlin 2016OrientDB - Voxxed Days Berlin 2016
OrientDB - Voxxed Days Berlin 2016
 
Size does matter - How to cut (micro-)services correctly
Size does matter - How to cut (micro-)services correctlySize does matter - How to cut (micro-)services correctly
Size does matter - How to cut (micro-)services correctly
 
Rise of the Machines - Automate your Development
Rise of the Machines - Automate your DevelopmentRise of the Machines - Automate your Development
Rise of the Machines - Automate your Development
 
Microservices with Java, Spring Boot and Spring Cloud
Microservices with Java, Spring Boot and Spring CloudMicroservices with Java, Spring Boot and Spring Cloud
Microservices with Java, Spring Boot and Spring Cloud
 
Geolocalizzazione 22dic2011
Geolocalizzazione 22dic2011Geolocalizzazione 22dic2011
Geolocalizzazione 22dic2011
 
Крутова А.А. Коммуникационная кампания Футбольной национальной лиги
Крутова А.А. Коммуникационная кампания Футбольной национальной лигиКрутова А.А. Коммуникационная кампания Футбольной национальной лиги
Крутова А.А. Коммуникационная кампания Футбольной национальной лиги
 
Юмашева Н.В. Эффективные методы профориентационной работы по специальности «С...
Юмашева Н.В. Эффективные методы профориентационной работы по специальности «С...Юмашева Н.В. Эффективные методы профориентационной работы по специальности «С...
Юмашева Н.В. Эффективные методы профориентационной работы по специальности «С...
 
MIME 484-Final
MIME 484-FinalMIME 484-Final
MIME 484-Final
 
How Random Points distributes on a plane? (To see the variety of the shape)
How Random Points distributes on a plane?  (To see the variety of the shape)How Random Points distributes on a plane?  (To see the variety of the shape)
How Random Points distributes on a plane? (To see the variety of the shape)
 
Research Into My Target Audience
Research Into My Target Audience Research Into My Target Audience
Research Into My Target Audience
 
Sistem operasi jaringan
Sistem operasi jaringanSistem operasi jaringan
Sistem operasi jaringan
 
Brand-ul personal in mediul online
Brand-ul personal in mediul onlineBrand-ul personal in mediul online
Brand-ul personal in mediul online
 
West cork local
West cork localWest cork local
West cork local
 
Evaluation - Question One
Evaluation - Question One Evaluation - Question One
Evaluation - Question One
 
Reality shock j aracil
Reality shock   j aracilReality shock   j aracil
Reality shock j aracil
 
Intro to ss9
Intro to ss9Intro to ss9
Intro to ss9
 

Similar to Voxxed berlin2016profilers|

Native iphone app test automation with appium
Native iphone app test automation with appiumNative iphone app test automation with appium
Native iphone app test automation with appium
James Eisenhauer
 
JSF 2.2 Status at DOAG 2011
JSF 2.2 Status at DOAG 2011JSF 2.2 Status at DOAG 2011
JSF 2.2 Status at DOAG 2011
Edward Burns
 
Feature vs component
Feature vs componentFeature vs component
Feature vs component
Chad Holdorf
 
Deploying Enterprise Deep Learning Masterclass Preview - Enterprise Deep Lea...
Deploying Enterprise Deep Learning Masterclass Preview -  Enterprise Deep Lea...Deploying Enterprise Deep Learning Masterclass Preview -  Enterprise Deep Lea...
Deploying Enterprise Deep Learning Masterclass Preview - Enterprise Deep Lea...
Sam Putnam [Deep Learning]
 

Similar to Voxxed berlin2016profilers| (20)

Philly Spring UG Roo Overview
Philly Spring UG Roo OverviewPhilly Spring UG Roo Overview
Philly Spring UG Roo Overview
 
XRebel Overview
XRebel OverviewXRebel Overview
XRebel Overview
 
Java basic-tutorial for beginners
Java basic-tutorial for beginners Java basic-tutorial for beginners
Java basic-tutorial for beginners
 
Spring Boot Interview Questions | Edureka
Spring Boot Interview Questions | EdurekaSpring Boot Interview Questions | Edureka
Spring Boot Interview Questions | Edureka
 
Excellence Technology (1).pdf
Excellence Technology (1).pdfExcellence Technology (1).pdf
Excellence Technology (1).pdf
 
Native iphone app test automation with appium
Native iphone app test automation with appiumNative iphone app test automation with appium
Native iphone app test automation with appium
 
Java By Sai NagaVenkata BuchiBabu Manepalli
Java By Sai NagaVenkata BuchiBabu ManepalliJava By Sai NagaVenkata BuchiBabu Manepalli
Java By Sai NagaVenkata BuchiBabu Manepalli
 
Java By Sai NagaVenkata BuchiBabu Manepalli
Java By Sai NagaVenkata BuchiBabu ManepalliJava By Sai NagaVenkata BuchiBabu Manepalli
Java By Sai NagaVenkata BuchiBabu Manepalli
 
Integrate Your Test Automation Tools for More Power
Integrate Your Test Automation Tools for More PowerIntegrate Your Test Automation Tools for More Power
Integrate Your Test Automation Tools for More Power
 
Functional Browser Automation Testing for Newbs
Functional Browser Automation Testing for NewbsFunctional Browser Automation Testing for Newbs
Functional Browser Automation Testing for Newbs
 
Managing Application Performance: A Simplified Universal Approach
Managing Application Performance: A Simplified Universal ApproachManaging Application Performance: A Simplified Universal Approach
Managing Application Performance: A Simplified Universal Approach
 
JSF 2.2 Status at DOAG 2011
JSF 2.2 Status at DOAG 2011JSF 2.2 Status at DOAG 2011
JSF 2.2 Status at DOAG 2011
 
TDC2017 | São Paulo - Trilha Cloud Computing How we figured out we had a SRE ...
TDC2017 | São Paulo - Trilha Cloud Computing How we figured out we had a SRE ...TDC2017 | São Paulo - Trilha Cloud Computing How we figured out we had a SRE ...
TDC2017 | São Paulo - Trilha Cloud Computing How we figured out we had a SRE ...
 
Feature vs component
Feature vs componentFeature vs component
Feature vs component
 
Java magazine jan feb 2018
Java magazine jan feb 2018Java magazine jan feb 2018
Java magazine jan feb 2018
 
Deploying Enterprise Deep Learning Masterclass Preview - Enterprise Deep Lea...
Deploying Enterprise Deep Learning Masterclass Preview -  Enterprise Deep Lea...Deploying Enterprise Deep Learning Masterclass Preview -  Enterprise Deep Lea...
Deploying Enterprise Deep Learning Masterclass Preview - Enterprise Deep Lea...
 
Owasp top 10 web application security hazards - Part 1
Owasp top 10 web application security hazards - Part 1Owasp top 10 web application security hazards - Part 1
Owasp top 10 web application security hazards - Part 1
 
Enable Mobile Apps Designer in OBIEE
Enable Mobile Apps Designer in OBIEEEnable Mobile Apps Designer in OBIEE
Enable Mobile Apps Designer in OBIEE
 
Spring Book – Chapter 1 – Introduction
Spring Book – Chapter 1 – IntroductionSpring Book – Chapter 1 – Introduction
Spring Book – Chapter 1 – Introduction
 
Innovation
InnovationInnovation
Innovation
 

Recently uploaded

%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
masabamasaba
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
masabamasaba
 
+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
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
masabamasaba
 

Recently uploaded (20)

%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open SourceWSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
 
Announcing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareAnnouncing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK Software
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?
 
+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...
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 
WSO2Con204 - Hard Rock Presentation - Keynote
WSO2Con204 - Hard Rock Presentation - KeynoteWSO2Con204 - Hard Rock Presentation - Keynote
WSO2Con204 - Hard Rock Presentation - Keynote
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
 
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
 
WSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go Platformless
 
Artyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptxArtyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptx
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
 

Voxxed berlin2016profilers|