SlideShare une entreprise Scribd logo
1  sur  237
Télécharger pour lire hors ligne
Troubleshooting
Live Java Web Applications
By Ashley Puls

Sunday, November 10, 13
Sunday, November 10, 13
Troubleshooting
Locate and eliminate sources of trouble
Determine and settle problems
Solve problems quickly using a systematic approach
A logical process of elimination to identify the true source of the problem

Sunday, November 10, 13
How to Become a Good Troubleshooter

Practice makes perfect

Images From: http://www.tennismindgame.com/image-files/topspin-tennis-serve.jpg
Sunday, November 10, 13
How to Become a Good Troubleshooter

Practice makes perfect

Have a good set of tools

Images From: http://www.tennismindgame.com/image-files/topspin-tennis-serve.jpg, http://blogs.telerik.com/images/default-source/jeff-fritz/toolbox.jpg?sfvrsn=0
Sunday, November 10, 13
Outline
Examine a web application with multiple performance problems
Troubleshoot the problems using several tools
Discuss the pros and cons of each tool

Sunday, November 10, 13
What is the Application?

Sunday, November 10, 13
What is the Application?
Dear Developer,
I had some engineers
develop “Running Central”
to search for runners, races,
and training teams. Can you
please keep the site running?
Sincerely,
Max Siegel
CEO of USA Track and Field
Image From: http://www.sportsbusinessdaily.com/Journal/Issues/2012/06/18/Leagues-and-Governing-Bodies/~/media/8C99287D3B0E4784932EE3BF049E7DA9.ashx
Sunday, November 10, 13
What is the Application?
Tomcat Application Server
Client

racerunners.war
jsp

Client

Controller
Manager
Entities

Servlet

hibernate
Client
MySQL Database

Sunday, November 10, 13
Should we Jump into Troubleshooting?

Image From: http://toosoxy.files.wordpress.com/2011/04/cliff.jpg
Sunday, November 10, 13
What is Trouble?

Image From: http://1.bp.blogspot.com/-_LgC3yz9w4w/T4eI--IcvxI/AAAAAAAAA-o/VLdqkxyQpgg/s400/computerFire.jpg
Sunday, November 10, 13
What is Trouble?
Site Inaccessible

Sunday, November 10, 13
What is Trouble?
Site Inaccessible

Exceptions
In Logs

Sunday, November 10, 13
What is Trouble?
Site Inaccessible

Loading Slowly

Exceptions
In Logs

Sunday, November 10, 13
What is Normal?

Images From: http://espn.go.com/mlb/statistics, http://www.franklinbaseball.com/pros/american-league/central/miguel-cabrera
Sunday, November 10, 13
What Are The Stats?

Application
Response Time

Memory
Consumed

time per request

heap and PermGen

Sunday, November 10, 13

Thread State
active vs blocked

Thread Pool
State
active vs max
thread count

Database
Response Time
time per request
How To Gather The Stats
Logs
core JDK tools

JMX Metrics

Application
Performance
Monitoring Tools (APM)

Sunday, November 10, 13

Profilers

Framework/App Server
Monitoring Tools
Basic Information
Tools

Overview

Installation

Cost

Logs
New Relic

YourKit

JVisualVm

JConsole

JMap/JHat

JStack

Sunday, November 10, 13

Basic information about each
tool

Where to Find It

For
Production
Data In Tool
Tools

Logs
New Relic
YourKit

JVisualVm

JConsole

JMap/JHat

JStack

Sunday, November 10, 13

App Response
Time

Database Response
Time

Thread State

Thread Pool
State

Memory
Lets Talk to Some of Our Users

Sunday, November 10, 13
Image From: http://resources0.news.com.au/images/2012/08/10/1226447/688548-usain-bolt.jpg
Sunday, November 10, 13
Usain Bolt : Six Time Olympic Champion

Image From: http://resources0.news.com.au/images/2012/08/10/1226447/688548-usain-bolt.jpg
Sunday, November 10, 13
I was looking for a 5K
race on your site,
but it was loading like I
was on a 56k

Image From: http://static.guim.co.uk/sys-images/Guardian/Pix/pictures/2012/8/9/1344533810934/f582144a-9dd2-44ed-9828-0ec1f5f768a8-460.jpeg
Sunday, November 10, 13
Lets Investigate!

Sunday, November 10, 13
New Relic

Application Performance Monitoring (APM) tool that monitors web
apps, mobile apps, servers, and databases
Sign up and download agent from the New Relic Website

Sunday, November 10, 13
Basic Information
Tools

Overview

Installation

Cost

Where to Find It

APM solution

restart app with
agent

basic free,
advanced cost

www.newrelic.com

Logs
New Relic

YourKit

JVisualVm

JConsole

JMap/JHat

JStack

Sunday, November 10, 13

For
Production
Sunday, November 10, 13
Application
Response Time

Sunday, November 10, 13
Application
Response Time

Sunday, November 10, 13
Application
Response Time

Sunday, November 10, 13
Sunday, November 10, 13
YourKit

Profiler that provides in depth CPU, thread, and memory profiling
Get license key and download from YourKit Website

Sunday, November 10, 13
Basic Information
Tools

Overview

Installation

Cost

Where to Find It

New Relic

APM solution

restart app with
agent

basic free,
advanced cost

www.newrelic.com

YourKit

profiler

Logs

JVisualVm

JConsole

JMap/JHat

JStack

Sunday, November 10, 13

restarts or attaches all features at cost

www.yourkit.com

For
Production
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
CPU Profiler

Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Data In Tool
Tools

Logs
New Relic
YourKit

JVisualVm

JConsole

JMap/JHat

JStack

Sunday, November 10, 13

App Response
Time

Database Response
Time

Thread State

Thread Pool
State

Memory
New Relic

Application Performance Monitoring (APM) tool that monitors web
apps, mobile apps, servers, and databases
Sign up and download agent from the New Relic Website

Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Heap Memory

Sunday, November 10, 13
Heap Memory

Non-Heap
Memory

Sunday, November 10, 13
Heap Memory

Non-Heap
Memory

Sunday, November 10, 13
JMap
Prints the memory map of a Java process
Commands
jmap -heap JAVA_PID > /tmp/jmap.out
jmap -dump:file=/tmp/heap_dump.map JAVA_PID

Sunday, November 10, 13
Basic Information
Tools

Overview

Installation

Cost

Where to Find It

APM solution

restart app with
agent

basic free,
advanced cost

www.newrelic.com

prints memory map of
Java process

attaches to
running process

free

included with JDK

Logs
New Relic

YourKit

JVisualVm

JConsole

JMap/JHat

JStack

Sunday, November 10, 13

For
Production
In a Terminal

Sunday, November 10, 13
In a Terminal

Sunday, November 10, 13
The File

Sunday, November 10, 13
The File

Heap Memory

Sunday, November 10, 13
The File

Heap Memory

Non-Heap
Memory

Sunday, November 10, 13
The File

Heap Memory

Non-Heap
Memory

Sunday, November 10, 13
In a Terminal

Sunday, November 10, 13
In a Terminal

Sunday, November 10, 13
The File

Sunday, November 10, 13
In a Terminal

Sunday, November 10, 13
In a Terminal

Sunday, November 10, 13
In a Terminal

Sunday, November 10, 13
In a Terminal

Sunday, November 10, 13
In a Terminal

Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
YourKit

Profiler that provides in depth CPU, thread, and memory profiling
Get license key and download from YourKit Website

Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Heap Memory

Sunday, November 10, 13

Non-Heap
Memory
Heap Memory

Sunday, November 10, 13

Non-Heap
Memory
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
/**
* Service that records stats on the cities and states queried by users when looking
* for races.
*/
public class RaceStatsServiceImpl implements RaceStatsService {
/** Holds the
private final
/** Holds the
private final

cities queried by users. */
Map<String, Integer> citiesQueried;
states queried by users. */
Map<String, Integer> stateQueried;

public RaceStatsServiceImpl() {
citiesQueried = new ConcurrentHashMap<String, Integer>();
stateQueried = new ConcurrentHashMap<String, Integer>();
}

Sunday, November 10, 13
/**
* Service that records stats on the cities and states queried by users when looking
* for races.
*/
public class RaceStatsServiceImpl implements RaceStatsService {
/** Holds the
private final
/** Holds the
private final

cities queried by users. */
Map<String, Integer> citiesQueried;
states queried by users. */
Map<String, Integer> stateQueried;

Two
ConcurrentHashMaps

public RaceStatsServiceImpl() {
citiesQueried = new ConcurrentHashMap<String, Integer>();
stateQueried = new ConcurrentHashMap<String, Integer>();
}

Sunday, November 10, 13
/**
* Service that records stats on the cities and states queried by users when looking
* for races.
*/
public class RaceStatsServiceImpl implements RaceStatsService {

public void addCity(String city);
public void addState(String state);
public void String getMostQueriedForCity();
public void String getMostQueriedForState();

Sunday, November 10, 13
/**
* Service that records stats on the cities and states queried by users when looking
* for races.
*/
public class RaceStatsServiceImpl implements RaceStatsService {

public void addCity(String city);
public void addState(String state);
public void String getMostQueriedForCity();
public void String getMostQueriedForState();

Sunday, November 10, 13

None of these methods
remove from the
concurrent hash maps
Key Takeaway
Clean up memory in long running objects

Sunday, November 10, 13
The File

Sunday, November 10, 13
The File

Sunday, November 10, 13
Data In Tool
Tools

Logs
New Relic
YourKit

JVisualVm

JConsole

JMap/JHat

JStack

Sunday, November 10, 13

App Response
Time

Database Response
Time

Thread State

Thread Pool
State

Memory
Data In Tool
Tools

Logs
New Relic
YourKit

JVisualVm

JConsole

JMap/JHat

JStack

Sunday, November 10, 13

App Response
Time

Database Response
Time

Thread State

Thread Pool
State

Memory
Image From: http://news.images.itv.com/image/file/69820/article_9e6cab04948b5c33_1343574136_9j-4aaqsk.jpeg
Sunday, November 10, 13
Paula Radcliffe
Female Marathon World Record Holder

Image From: http://news.images.itv.com/image/file/69820/article_9e6cab04948b5c33_1343574136_9j-4aaqsk.jpeg
Sunday, November 10, 13
It was taking too long to
find my fellow runners on
your site

Image From: http://i3.manchestereveningnews.co.uk/incoming/article660410.ece/ALTERNATES/s615/C_71_article_1584722_image_list_image_list_item_0_image-660410.jpg
Sunday, November 10, 13
Lets Investigate!

Sunday, November 10, 13
JVisualVM

Visual tool which provides heap dumps, memory leak information,
garbage collection monitoring, memory profiling, and CPU profiling
Attaches to local and remote running processes

Sunday, November 10, 13
Basic Information
Tools

Overview

Installation

Cost

Where to Find It

New Relic

APM solution

restart app with
agent

basic free,
advanced cost

www.newrelic.com

YourKit

profiler

restart or attach
feature dependent

all features at cost

www.yourkit.com

JVisualVm

profiler

attaches to
running process

free

included with JDK

prints memory map of
Java process

attaches to
running process

free

included with JDK

Logs

JConsole

JMap/JHat

JStack

Sunday, November 10, 13

For
Production
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Memory Information

Sunday, November 10, 13
Memory Information

Sunday, November 10, 13
Memory Information

Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Kill Dash 3

Provides the current stack trace for each thread in a local JVM (thread dump)
Available on linux and macs (ctrl+break on windows)
Command: kill -3 PID

Sunday, November 10, 13
JStack

Provides the current stack trace for each thread in a local or remote
JVM (thread dump)
Command: jstack -l JAVA_PID > /tmp/jstack.out

Sunday, November 10, 13
Basic Information
Tools

Overview

Installation

Cost

Where to Find It

New Relic

APM solution

restart app with
agent

basic free,
advanced cost

www.newrelic.com

YourKit

profiler

restart or attach
feature dependent

all features at cost

www.yourkit.com

JVisualVm

profiler

attaches to
running process

free

included with JDK

JMap/JHat

prints memory map of
Java process

attaches to
running process

free

included with JDK

JStack

prints thread dump of
Java process

attaches to
running process

free

included with JDK

Logs

JConsole

Sunday, November 10, 13

For
Production
In a Terminal

Sunday, November 10, 13
The File

Sunday, November 10, 13
The File

Sunday, November 10, 13
New Relic

Application Performance Monitoring (APM) tool that monitors web
apps, mobile apps, servers, and databases
Sign up and download agent from the New Relic Website

Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
/** Stores stats on the last names of runners which have been queried.
*/
public class RunnerStatsServiceImpl implements RunnerStatsService {
/** Stores the last name of queried runners. */
private final Queue<String> lastNamesQueried = new ArrayBlockingQueue<String>(100);
/**
* Adds the last name input value to the stats service.
* @param lastName A last name that was queried.
*/
public void addEntries(String lastName) {
if (lastName != null && !lastName.isEmpty()) {
while (!lastNamesQueried.offer(lastName.trim())) {
try {
Thread.sleep(100);
} catch (InterruptedException e) { // ignore this exception
}
}
}
}
/**
* Processes the last name stats currently held in the service.
*/
public void processLastNameStats() {
. . .
}

Sunday, November 10, 13
/** Stores stats on the last names of runners which have been queried.
*/
public class RunnerStatsServiceImpl implements RunnerStatsService {
/** Stores the last name of queried runners. */
private final Queue<String> lastNamesQueried = new ArrayBlockingQueue<String>(100);
/**
* Adds the last name input value to the stats service.
* @param lastName A last name that was queried.
*/
public void addEntries(String lastName) {
if (lastName != null && !lastName.isEmpty()) {
while (!lastNamesQueried.offer(lastName.trim())) {
try {
Thread.sleep(100);
} catch (InterruptedException e) { // ignore this exception
}
}
}
}

Where the threads
are sleeping

/**
* Processes the last name stats currently held in the service.
*/
public void processLastNameStats() {
. . .
}

Sunday, November 10, 13
/** Stores stats on the last names of runners which have been queried.
*/
public class RunnerStatsServiceImpl implements RunnerStatsService {
/** Stores the last name of queried runners. */
private final Queue<String> lastNamesQueried = new ArrayBlockingQueue<String>(100);
/**
* Adds the last name input value to the stats service.
* @param lastName A last name that was queried.
*/
public void addEntries(String lastName) {
if (lastName != null && !lastName.isEmpty()) {
while (!lastNamesQueried.offer(lastName.trim())) {
try {
Thread.sleep(100);
} catch (InterruptedException e) { // ignore this exception
}
}
}
}

queue limited to
100 strings

Where the threads
are sleeping

/**
* Processes the last name stats currently held in the service.
*/
public void processLastNameStats() {
. . .
}

Sunday, November 10, 13
/** Stores stats on the last names of runners which have been queried.
*/
public class RunnerStatsServiceImpl implements RunnerStatsService {
/** Stores the last name of queried runners. */
private final Queue<String> lastNamesQueried = new ArrayBlockingQueue<String>(100);
/**
* Adds the last name input value to the stats service.
* @param lastName A last name that was queried.
*/
public void addEntries(String lastName) {
if (lastName != null && !lastName.isEmpty()) {
while (!lastNamesQueried.offer(lastName.trim())) {
try {
Thread.sleep(100);
} catch (InterruptedException e) { // ignore this exception
}
}
}
}

queue limited to
100 strings

Where the threads
are sleeping

/**
* Processes the last name stats currently held in the service.
*/
public void processLastNameStats() {
. . .
}

Sunday, November 10, 13
Key Takeaway
Do not block threads

Sunday, November 10, 13
The File

Sunday, November 10, 13
The File

waiting for more
requests to come in

Sunday, November 10, 13
Data In Tool
Tools

Logs
New Relic
YourKit

JVisualVm

JConsole

JMap/JHat

JStack

Sunday, November 10, 13

App Response
Time

Database Response
Time

Thread State

Thread Pool
State

Memory
Data In Tool
Tools

Logs
New Relic
YourKit

JVisualVm

JConsole

JMap/JHat

JStack

Sunday, November 10, 13

App Response
Time

Database Response
Time

Thread State

Thread Pool
State

Memory
Image From: http://www.webrun.com.br/multimidia/fotos/2011/20110926_175711_g.jpg
Sunday, November 10, 13
Patrick Makau Musyoki
Previous Marathon
World Record Holder

Image From: http://www.webrun.com.br/multimidia/fotos/2011/20110926_175711_g.jpg
Sunday, November 10, 13
I tried to look for
marathons on your site
but could not access it

Image From: http://simonfreeman.co.uk/wp-content/uploads/2013/04/image-4.jpeg
Sunday, November 10, 13
Lets Investigate!

Sunday, November 10, 13
JConsole

Graphical User Interface (GUI) which displays Java Management
Extension (JMX) metrics for a local or remote JVMs
JMX metrics should be enabled in your application server

Sunday, November 10, 13
Basic Information
Tools

Overview

Installation

Cost

Where to Find It

New Relic

APM solution

restart app with
agent

basic free,
advanced cost

www.newrelic.com

YourKit

profiler

restart or attach
feature dependent

all features at cost

www.yourkit.com

JVisualVm

profiler

attaches to
running process

free

included with JDK

JConsole

JMX metrics

attaches to
running process

free

included with JDK

JMap/JHat

prints memory map of
Java process

attaches to
running process

free

included with JDK

JStack

prints thread dump of Java
process

attaches to
running process

free

included with JDK

Logs

Sunday, November 10, 13

For
Production
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
JVM specific mbeans

Sunday, November 10, 13
Tomcat Application Server mbeans
JVM specific mbeans

Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Can you do this in JVisualVM?

Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Tomcat Application Server mbeans
JVM specific mbeans

Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
New Relic

Application Performance Monitoring (APM) tool that monitors web
apps, mobile apps, servers, and databases
Sign up and download agent from the New Relic Website

Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
The File

Sunday, November 10, 13

vi tomcat/config/server.xml
The File

Sunday, November 10, 13

vi tomcat/config/server.xml
The File

Sunday, November 10, 13

vi tomcat/config/server.xml
What Should Be The Size Of The Pool?
• If the pool size is too small, then requests back up

Image From: http://terrortrendsbulletin.files.wordpress.com/2012/11/airport-security-lines1.jpg
Sunday, November 10, 13
What Should Be The Size Of The Pool?
• If the pool size is too large, then system resources
might become exhausted

Sunday, November 10, 13
What Should Be The Size Of The Pool?
• If the pool size is too large, then system resources
might become exhausted

Images From: http://static.ddmcdn.com/gif/airport-security-detector1.jpg, http://graphics8.nytimes.com/images/2012/10/07/travel/07GETAWAY_SPAN/
07GETAWAY_SPAN-articleLarge.jpg
Sunday, November 10, 13
What Should Be The Size Of The Pool?
• Pool size limiting factors
– The amount of memory
• In Java 6, the default thread stack size on Sparc is 512k for the
32-bit VM and 1024k for the 64-bit VM

Hotspot Thread Stack Numbers: http://www.oracle.com/technetwork/java/hotspotfaq-138619.html
Sunday, November 10, 13
What Should Be The Size Of The Pool?
• Pool size limiting factors
– The amount of memory
• In Java 6, the default thread stack size on Sparc is 512k for the
32-bit VM and 1024k for the 64-bit VM

–The number of CPUs
• Context switching could become an issue

Hotspot Thread Stack Numbers: http://www.oracle.com/technetwork/java/hotspotfaq-138619.html
Sunday, November 10, 13
Key Takeaway
Thread pools need to be tuned

Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Data In Tool
Tools

Logs
New Relic
YourKit

JVisualVm

JConsole

JMap/JHat

JStack

Sunday, November 10, 13

App Response
Time

Database Response
Time

Thread State

Thread Pool
State

Memory
Image From: http://coedmagazine.files.wordpress.com/2012/08/carmelita-jeter-7.jpg
Sunday, November 10, 13
Carmelita Jeter
Fastest Woman Alive in the
100 meter sprint

Image From: http://coedmagazine.files.wordpress.com/2012/08/carmelita-jeter-7.jpg
Sunday, November 10, 13
My team’s 4x100 time is
faster than your website.
Get that fixed!

Image From: http://www4.pictures.zimbio.com/gi/Carmelita+Jeter+Olympics+Day+14+Athletics+G48Jqgqo2nml.jpg
Sunday, November 10, 13
Lets Investigate!

Sunday, November 10, 13
Logs
Application, server, and database logs provide information developers
consider important for evaluating the status of the application
The quality of the logs varies significantly between products
Tools like Splunk and Loggly can help analyze logs

Sunday, November 10, 13
Basic Information
Tools

Overview

Installation

Cost

Where to Find It

Logs

application, server,
framework, database

depends

free

depends

New Relic

APM solution

restart app with
agent

basic free,
advanced cost

www.newrelic.com

YourKit

profiler

restart or attach
feature dependent

all features at cost

www.yourkit.com

JVisualVm

profiler

attaches to
running process

free

included with JDK

JConsole

JMX metrics

attaches to
running process

free

included with JDK

JMap/JHat

prints memory map of
Java process

attaches to
running process

free

included with JDK

JStack

prints thread dump of Java
process

attaches to
running process

free

included with JDK

Sunday, November 10, 13

For
Production
The File

Sunday, November 10, 13

The Application Log
The File

Sunday, November 10, 13

The Application Log
The File

Sunday, November 10, 13

The Application Log
The File

Sunday, November 10, 13

The App Server Log
The File

Sunday, November 10, 13

host_access_log
The File

Sunday, November 10, 13

host_access_log
The File

Sunday, November 10, 13

catalina.out
The File

Sunday, November 10, 13

catalina.out
The File

Sunday, November 10, 13

catalina.out
The File

Sunday, November 10, 13

applicationContext.xml
The File

Sunday, November 10, 13

applicationContext.xml
The File

Sunday, November 10, 13

MySql Logs
The File

Sunday, November 10, 13

MySql Logs - error log
The File

Sunday, November 10, 13

MySql Logs - slow sql config
The File

Sunday, November 10, 13

MySql Logs - slow sql log
MySql Logs - slow sql log

The File

Query Time

Sunday, November 10, 13

Rows Examined
MySql Logs - slow sql log

The File

Query Time

Sunday, November 10, 13

Rows Examined
New Relic

Application Performance Monitoring (APM) tool that monitors web
apps, mobile apps, servers, and databases
Sign up and download agent from the New Relic Website

Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
Sunday, November 10, 13
In a Terminal

Sunday, November 10, 13
In a Terminal

Sunday, November 10, 13
In a Terminal

Sunday, November 10, 13
In a Terminal

Sunday, November 10, 13
In a Terminal

Sunday, November 10, 13
In a Terminal

Sunday, November 10, 13
In a Terminal

Sunday, November 10, 13
In a Terminal

Sunday, November 10, 13
In a Terminal

Sunday, November 10, 13
In a Terminal

Sunday, November 10, 13
In a Terminal

Sunday, November 10, 13
Key Takeaway
Use indexes appropriately

Sunday, November 10, 13
In a Terminal

Sunday, November 10, 13
In a Terminal

Sunday, November 10, 13
In a Terminal

Sunday, November 10, 13
Data In Tool
Tools

Logs
New Relic
YourKit

JVisualVm

JConsole

JMap/JHat

JStack

Sunday, November 10, 13

App Response
Time

Database Response
Time

Thread State

Thread Pool
State

Memory
Basic Information
Tools

Overview

Installation

Cost

Where to Find It

Logs

application, server,
framework, database

depends

free

depends

New Relic

APM solution

restart app with
agent

basic free,
advanced cost

www.newrelic.com

YourKit

profiler

restart or attach
feature dependent

all features at cost

www.yourkit.com

JVisualVm

profiler

attaches to
running process

free

included with JDK

JConsole

JMX metrics

attaches to
running process

free

included with JDK

JMap/JHat

prints memory map of
Java process

attaches to
running process

free

included with JDK

JStack

prints thread dump of Java
process

attaches to
running process

free

included with JDK

Sunday, November 10, 13

For
Production
Basic Information
Tools

Application Response Time

JConsole
JVisualVm - No Profiler
New Relic
JStack
Logs
Your Kit - No Profiler
JMap
Your Kit - With Profiler
JVisualVM - With Profiler
Sunday, November 10, 13

What is the impact
of each tool?
Basic Information
Tools

Application Response Time

JConsole

None

JVisualVm - No Profiler

None

New Relic

Low

JStack

Low

Logs

Low - High

Your Kit - No Profiler

High

JMap

High

Your Kit - With Profiler

Very High

JVisualVM - With Profiler

Very High

Sunday, November 10, 13
Basic Information
Tools

Application Response Time

JConsole

None

JVisualVm - No Profiler

None

New Relic

Use In Production

Low

JStack

Low

Logs

Low - High

Your Kit - No Profiler

High

JMap

High

Your Kit - With Profiler

Very High

JVisualVM - With Profiler

Very High

Sunday, November 10, 13
Basic Information
Tools

Application Response Time

JConsole

None

JVisualVm - No Profiler

None

Use In Production

New Relic

Low

JStack

Low

Logs

Low - High

Your Kit - No Profiler

High

JMap

High

Your Kit - With Profiler

Use In Development

JVisualVM - With Profiler
Sunday, November 10, 13

Very High
Very High
Basic Information
Tools

Overview

Installation

Cost

Where to Find It

For
Production

Logs

application, server,
framework, database

depends

free

depends

yes

New Relic

APM solution

restart app with
agent

basic free,
advanced cost

www.newrelic.com

yes

YourKit

profiler

restart or attach
feature dependent

all features at cost

www.yourkit.com

no

JVisualVm

profiler

attaches to
running process

free

included with JDK

basic: yes,
profiler: no

JConsole

JMX metrics

attaches to
running process

free

included with JDK

yes

JMap/JHat

prints memory map of
Java process

attaches to
running process

free

included with JDK

no

JStack

prints thread dump of Java
process

attaches to
running process

free

included with JDK

yes

Sunday, November 10, 13
I encourage you to add a new tool
to your tool box

Image From: http://www.tbkconsult.com/blog/wp-content/uploads/2011/07/Toolbox.jpg
Sunday, November 10, 13
I encourage you to add a new tool
to your tool box
Add the tool sooner rather than later

Image From: http://www.tbkconsult.com/blog/wp-content/uploads/2011/07/Toolbox.jpg
Sunday, November 10, 13
You should learn how to use the
tools before you need them

Image From: http://www.mediaemerging.com/wp-content/uploads/2010/11/Wrong-Tool-for-the-Job2.jpg
Sunday, November 10, 13
WE WANT HAPPY USERS

Images From: http://seattletimes.com/ABPub/2011/09/25/2016318932.jpg, http://static.guim.co.uk/sys-images/Sport/Pix/pictures/2007/12/08/PaulaRadcliffe_ap_SethWenig.jpg, http://
www.runnersworld.com/sites/default/files/rw/Jeter-Carmelita-Happy-300x200.jpg, http://www.thefumble.com/sites/captainwag.com/files/wp-content/uploads/2012/08/BOLTBDAY.gif
Sunday, November 10, 13
Questions?

Ashley Puls
ashley@newrelic.com

Sunday, November 10, 13

Contenu connexe

En vedette

Focus presentation 2009
Focus presentation 2009Focus presentation 2009
Focus presentation 2009Gerard Koster
 
SIGRE: Planes Empresariales de Prevención de envases del sector farmacéutico
SIGRE: Planes Empresariales de Prevención de envases del sector farmacéuticoSIGRE: Planes Empresariales de Prevención de envases del sector farmacéutico
SIGRE: Planes Empresariales de Prevención de envases del sector farmacéuticoSIGRE Medicamento y Medio Ambiente
 
Pesca'o vendí'o - Islandia: de pescadores a banqueros, de banqueros a país en...
Pesca'o vendí'o - Islandia: de pescadores a banqueros, de banqueros a país en...Pesca'o vendí'o - Islandia: de pescadores a banqueros, de banqueros a país en...
Pesca'o vendí'o - Islandia: de pescadores a banqueros, de banqueros a país en...David Lopez Alamar
 
SWsoft Hosting Solutions for SaaS
SWsoft Hosting Solutions for SaaSSWsoft Hosting Solutions for SaaS
SWsoft Hosting Solutions for SaaSwebhostingguy
 
Ferrocarril Union Pacifico Corredores Logisticos
Ferrocarril Union Pacifico Corredores LogisticosFerrocarril Union Pacifico Corredores Logisticos
Ferrocarril Union Pacifico Corredores LogisticosExpoLosAndesLogistica
 
Profarma - 3Q16 earnings release
Profarma - 3Q16 earnings releaseProfarma - 3Q16 earnings release
Profarma - 3Q16 earnings releaseProfarma
 
Catálogo Ynsadiet 2016
Catálogo Ynsadiet 2016Catálogo Ynsadiet 2016
Catálogo Ynsadiet 2016ynsadiet
 
Proyecto 4 grado ENAZ
Proyecto 4 grado ENAZProyecto 4 grado ENAZ
Proyecto 4 grado ENAZa12lma
 
Programa jornada 10 nov 2015 magrama
Programa jornada 10 nov 2015 magramaPrograma jornada 10 nov 2015 magrama
Programa jornada 10 nov 2015 magramaREMEDIAnetwork
 
Human rights in islam
Human rights in islamHuman rights in islam
Human rights in islamNoor Al Islam
 
Building a Social Media Team
Building a Social Media TeamBuilding a Social Media Team
Building a Social Media TeamAmber Naslund
 
Creatividad emprendedora
Creatividad emprendedoraCreatividad emprendedora
Creatividad emprendedoraLeo Virgós
 

En vedette (20)

Focus presentation 2009
Focus presentation 2009Focus presentation 2009
Focus presentation 2009
 
4
44
4
 
SIGRE: Planes Empresariales de Prevención de envases del sector farmacéutico
SIGRE: Planes Empresariales de Prevención de envases del sector farmacéuticoSIGRE: Planes Empresariales de Prevención de envases del sector farmacéutico
SIGRE: Planes Empresariales de Prevención de envases del sector farmacéutico
 
Pesca'o vendí'o - Islandia: de pescadores a banqueros, de banqueros a país en...
Pesca'o vendí'o - Islandia: de pescadores a banqueros, de banqueros a país en...Pesca'o vendí'o - Islandia: de pescadores a banqueros, de banqueros a país en...
Pesca'o vendí'o - Islandia: de pescadores a banqueros, de banqueros a país en...
 
el cristal rojo
el cristal rojoel cristal rojo
el cristal rojo
 
SWsoft Hosting Solutions for SaaS
SWsoft Hosting Solutions for SaaSSWsoft Hosting Solutions for SaaS
SWsoft Hosting Solutions for SaaS
 
Garrigós durà andrea_ud - copia
Garrigós durà andrea_ud - copiaGarrigós durà andrea_ud - copia
Garrigós durà andrea_ud - copia
 
Ferrocarril Union Pacifico Corredores Logisticos
Ferrocarril Union Pacifico Corredores LogisticosFerrocarril Union Pacifico Corredores Logisticos
Ferrocarril Union Pacifico Corredores Logisticos
 
Profarma - 3Q16 earnings release
Profarma - 3Q16 earnings releaseProfarma - 3Q16 earnings release
Profarma - 3Q16 earnings release
 
Catálogo Ynsadiet 2016
Catálogo Ynsadiet 2016Catálogo Ynsadiet 2016
Catálogo Ynsadiet 2016
 
Afiris taller fiscalidad marzo 2014
Afiris taller fiscalidad marzo 2014Afiris taller fiscalidad marzo 2014
Afiris taller fiscalidad marzo 2014
 
Proyecto 4 grado ENAZ
Proyecto 4 grado ENAZProyecto 4 grado ENAZ
Proyecto 4 grado ENAZ
 
Manual de usuario
Manual de usuarioManual de usuario
Manual de usuario
 
LevelsofRegenerativeAgricultureFINAL
LevelsofRegenerativeAgricultureFINALLevelsofRegenerativeAgricultureFINAL
LevelsofRegenerativeAgricultureFINAL
 
Transmashholding
TransmashholdingTransmashholding
Transmashholding
 
Programa jornada 10 nov 2015 magrama
Programa jornada 10 nov 2015 magramaPrograma jornada 10 nov 2015 magrama
Programa jornada 10 nov 2015 magrama
 
Computer graphics
Computer graphicsComputer graphics
Computer graphics
 
Human rights in islam
Human rights in islamHuman rights in islam
Human rights in islam
 
Building a Social Media Team
Building a Social Media TeamBuilding a Social Media Team
Building a Social Media Team
 
Creatividad emprendedora
Creatividad emprendedoraCreatividad emprendedora
Creatividad emprendedora
 

Similaire à Troubleshooting Live Java Web Applications

[jqconatx] Adaptive Images for Responsive Web Design
[jqconatx] Adaptive Images for Responsive Web Design[jqconatx] Adaptive Images for Responsive Web Design
[jqconatx] Adaptive Images for Responsive Web DesignChristopher Schmitt
 
php[architect] Summit Series DevOps 2013 - Rock solid deployment of PHP apps
php[architect] Summit Series DevOps 2013 - Rock solid deployment of PHP appsphp[architect] Summit Series DevOps 2013 - Rock solid deployment of PHP apps
php[architect] Summit Series DevOps 2013 - Rock solid deployment of PHP appsPablo Godel
 
FUTURESTACK13: Software analytics with Project Rubicon from Alex Kroman Engin...
FUTURESTACK13: Software analytics with Project Rubicon from Alex Kroman Engin...FUTURESTACK13: Software analytics with Project Rubicon from Alex Kroman Engin...
FUTURESTACK13: Software analytics with Project Rubicon from Alex Kroman Engin...New Relic
 
One Page, One App -or- How to Write a Crawlable Single Page Web App
One Page, One App -or- How to Write a Crawlable Single Page Web AppOne Page, One App -or- How to Write a Crawlable Single Page Web App
One Page, One App -or- How to Write a Crawlable Single Page Web Apptechnicolorenvy
 
Cassandra Meetup: Real-time Analytics using Cassandra, Spark and Shark at Ooyala
Cassandra Meetup: Real-time Analytics using Cassandra, Spark and Shark at OoyalaCassandra Meetup: Real-time Analytics using Cassandra, Spark and Shark at Ooyala
Cassandra Meetup: Real-time Analytics using Cassandra, Spark and Shark at OoyalaDataStax Academy
 
FUTURESTACK13: What’s New and Upcoming with New Relic from Patrick Lightbody,...
FUTURESTACK13: What’s New and Upcoming with New Relic from Patrick Lightbody,...FUTURESTACK13: What’s New and Upcoming with New Relic from Patrick Lightbody,...
FUTURESTACK13: What’s New and Upcoming with New Relic from Patrick Lightbody,...New Relic
 
Unleashing the Rails Asset Pipeline
Unleashing the Rails Asset PipelineUnleashing the Rails Asset Pipeline
Unleashing the Rails Asset PipelineKenneth Kalmer
 
Writing SaltStack Modules - OpenWest 2013
Writing SaltStack Modules - OpenWest 2013Writing SaltStack Modules - OpenWest 2013
Writing SaltStack Modules - OpenWest 2013SaltStack
 
Introduction to node.js by Ran Mizrahi @ Reversim Summit
Introduction to node.js by Ran Mizrahi @ Reversim SummitIntroduction to node.js by Ran Mizrahi @ Reversim Summit
Introduction to node.js by Ran Mizrahi @ Reversim SummitRan Mizrahi
 
Keeping it small - Getting to know the Slim PHP micro framework
Keeping it small - Getting to know the Slim PHP micro frameworkKeeping it small - Getting to know the Slim PHP micro framework
Keeping it small - Getting to know the Slim PHP micro frameworkJeremy Kendall
 
Tools/Processes for serious android app development
Tools/Processes for serious android app developmentTools/Processes for serious android app development
Tools/Processes for serious android app developmentGaurav Lochan
 
Oredev 2013: Building Web Apps with Ember.js
Oredev 2013: Building Web Apps with Ember.jsOredev 2013: Building Web Apps with Ember.js
Oredev 2013: Building Web Apps with Ember.jsJesse Cravens
 
Building a Startup Stack with AngularJS
Building a Startup Stack with AngularJSBuilding a Startup Stack with AngularJS
Building a Startup Stack with AngularJSFITC
 
Use Web Skills To Build Mobile Apps
Use Web Skills To Build Mobile AppsUse Web Skills To Build Mobile Apps
Use Web Skills To Build Mobile AppsNathan Smith
 
Performance and optimization
Performance and optimizationPerformance and optimization
Performance and optimizationmarkstory
 
Automated Testing with Ruby
Automated Testing with RubyAutomated Testing with Ruby
Automated Testing with RubyKeith Pitty
 
FUTURESTACK13: Mobile Apps, A DevOps Way from Jonathan Karon, Engineering Man...
FUTURESTACK13: Mobile Apps, A DevOps Way from Jonathan Karon, Engineering Man...FUTURESTACK13: Mobile Apps, A DevOps Way from Jonathan Karon, Engineering Man...
FUTURESTACK13: Mobile Apps, A DevOps Way from Jonathan Karon, Engineering Man...New Relic
 

Similaire à Troubleshooting Live Java Web Applications (20)

[jqconatx] Adaptive Images for Responsive Web Design
[jqconatx] Adaptive Images for Responsive Web Design[jqconatx] Adaptive Images for Responsive Web Design
[jqconatx] Adaptive Images for Responsive Web Design
 
php[architect] Summit Series DevOps 2013 - Rock solid deployment of PHP apps
php[architect] Summit Series DevOps 2013 - Rock solid deployment of PHP appsphp[architect] Summit Series DevOps 2013 - Rock solid deployment of PHP apps
php[architect] Summit Series DevOps 2013 - Rock solid deployment of PHP apps
 
FUTURESTACK13: Software analytics with Project Rubicon from Alex Kroman Engin...
FUTURESTACK13: Software analytics with Project Rubicon from Alex Kroman Engin...FUTURESTACK13: Software analytics with Project Rubicon from Alex Kroman Engin...
FUTURESTACK13: Software analytics with Project Rubicon from Alex Kroman Engin...
 
One Page, One App -or- How to Write a Crawlable Single Page Web App
One Page, One App -or- How to Write a Crawlable Single Page Web AppOne Page, One App -or- How to Write a Crawlable Single Page Web App
One Page, One App -or- How to Write a Crawlable Single Page Web App
 
Cassandra Meetup: Real-time Analytics using Cassandra, Spark and Shark at Ooyala
Cassandra Meetup: Real-time Analytics using Cassandra, Spark and Shark at OoyalaCassandra Meetup: Real-time Analytics using Cassandra, Spark and Shark at Ooyala
Cassandra Meetup: Real-time Analytics using Cassandra, Spark and Shark at Ooyala
 
Backbone
BackboneBackbone
Backbone
 
FUTURESTACK13: What’s New and Upcoming with New Relic from Patrick Lightbody,...
FUTURESTACK13: What’s New and Upcoming with New Relic from Patrick Lightbody,...FUTURESTACK13: What’s New and Upcoming with New Relic from Patrick Lightbody,...
FUTURESTACK13: What’s New and Upcoming with New Relic from Patrick Lightbody,...
 
Unleashing the Rails Asset Pipeline
Unleashing the Rails Asset PipelineUnleashing the Rails Asset Pipeline
Unleashing the Rails Asset Pipeline
 
Writing SaltStack Modules - OpenWest 2013
Writing SaltStack Modules - OpenWest 2013Writing SaltStack Modules - OpenWest 2013
Writing SaltStack Modules - OpenWest 2013
 
A false digital alibi on mac os x
A false digital alibi on mac os xA false digital alibi on mac os x
A false digital alibi on mac os x
 
Introduction to node.js by Ran Mizrahi @ Reversim Summit
Introduction to node.js by Ran Mizrahi @ Reversim SummitIntroduction to node.js by Ran Mizrahi @ Reversim Summit
Introduction to node.js by Ran Mizrahi @ Reversim Summit
 
Keeping it small - Getting to know the Slim PHP micro framework
Keeping it small - Getting to know the Slim PHP micro frameworkKeeping it small - Getting to know the Slim PHP micro framework
Keeping it small - Getting to know the Slim PHP micro framework
 
Tools/Processes for serious android app development
Tools/Processes for serious android app developmentTools/Processes for serious android app development
Tools/Processes for serious android app development
 
Oredev 2013: Building Web Apps with Ember.js
Oredev 2013: Building Web Apps with Ember.jsOredev 2013: Building Web Apps with Ember.js
Oredev 2013: Building Web Apps with Ember.js
 
Building a Startup Stack with AngularJS
Building a Startup Stack with AngularJSBuilding a Startup Stack with AngularJS
Building a Startup Stack with AngularJS
 
Use Web Skills To Build Mobile Apps
Use Web Skills To Build Mobile AppsUse Web Skills To Build Mobile Apps
Use Web Skills To Build Mobile Apps
 
Performance and optimization
Performance and optimizationPerformance and optimization
Performance and optimization
 
Automated Testing with Ruby
Automated Testing with RubyAutomated Testing with Ruby
Automated Testing with Ruby
 
ASP.NET Concept and Practice
ASP.NET Concept and PracticeASP.NET Concept and Practice
ASP.NET Concept and Practice
 
FUTURESTACK13: Mobile Apps, A DevOps Way from Jonathan Karon, Engineering Man...
FUTURESTACK13: Mobile Apps, A DevOps Way from Jonathan Karon, Engineering Man...FUTURESTACK13: Mobile Apps, A DevOps Way from Jonathan Karon, Engineering Man...
FUTURESTACK13: Mobile Apps, A DevOps Way from Jonathan Karon, Engineering Man...
 

Dernier

Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilV3cube
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesBoston Institute of Analytics
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 

Dernier (20)

Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 

Troubleshooting Live Java Web Applications