Sunday, November 17, 2019

Java Performance Tools: 9 Types of Tools You Need to Know!

Java Performance Tools: 9 Types of Tools You Need to Know
Managing an application’s performance, and specifically keeping it in good condition, is one of the hardest challenges in software development. That’s true for virtually any programming language and platform.
Java is no exception to this rule. But beyond that, Java also presents some unique challenges of its own.
For instance, one of those challenges has to do with garbage collection. Java features automatic memory management, which frees the developer from having to manually dispose of obsolete objects.
But you know what they say about free lunches. Garbage collection has a cost: too many collections will take its toll on performance.
Garbage collection apart, keeping track of a Java application’s performance is an ongoing task, so it is important to have the right tools. 
And that’s what today’s post is all about. We’re going to cover nine Java performance tools. Or rather, nine types of performance tools.
After learning about these broads categories, you’ll be able to analyze your particular scenario and decide the right type of tool to suits your needs. Let’s get started.

1. Java Profilers

JVM Profiles offer a ton of raw data by tracking all method calls, allowing you to find CPU and memory consumption hotspots.
A good scaling test is to set up an Apache JMeter job to hit an endpoint you are developing a few thousand times while linked to a profiler. This allows you to spec out memory and CPU requirements for production.
java performance tools visualvm
Screenshot of VisualVM CPU and Heap Size
Pros: Great for tracking down memory leaks; the ability to manually run garbage collection and then review memory consumption can easily shine a spotlight on classes and processes that are holding on to memory in error.
Cons: Requires a direct connection to the monitored JVM; this ends up limiting usage to development environments in most cases. (Note: some profilers can work off thread and memory dumps in a limited fashion.)
Popular Tools: VisualVMJProfilerYourKit and Java Mission Control.

2. Tracing Java Web Requests and Transactions

Standard profilers are focused on the performance of all methods across the entire application. These tools are focused on the performance of individual web requests or transactions.
Prefix provides deep level performance details about your app, including ORM calls with generated SQL, SOAP/REST API calls, and trace details from the most commonly used third-party libraries and frameworks.
XRebel is set up using a Java Agent on your web application’s container and provides an overlay on your application that gives details about the current request.
Tools like Prefix can provide very detailed traces of what your code is doing:
Prefix web request performance trace
Screenshot of Prefix web request trace
Pros: These tools give order to the vast amount of data available in a JVM profiler. By helping you follow the flow of a request, you can see what types of method calls are responsible for your response time.
Cons: Designed for the development cycle only. QA and Production environments will require an APM solution.

3. Java Application Performance Management (APM)

Application performance management (APM) tools take on the task of tracking all requests on a production system.
The trick with these profilers is to provide the right information smartly so as not to impact production performance.
This is done by aggregating timing statistics and sampling traces. This gives you method-level visibility to your code that is running in production.
Retrace Action Overview for Java
Screenshot: Retrace Action Overview
Pros: The ability to monitor your most critical environment: Production. Identify issues before going into production by monitoring QA/Staging. Debug production lives by analyzing traces and exceptions. Aggregate summaries to see highly used requests to help focus development time.
Cons: Typically expensive to run on all QA/Staging and Production servers. Some tools lack support for async queries or are not tuned properly and slow down your application.
Popular Tools: New Relic, Microsoft, Stackify, AppDynamics, Dynatrace, and others
Note: Some providers, including Stackify, provide free trials that can be used to help identify immediate problems.
Compare Retrace & New Relic
Compare Retrace & App Insights

See Exactly What Retrace Can Do - Calculate ROI

4. Real User Monitoring (RUM)

It’s not uncommon for web apps to be very client-side heavy. Therefore, providing an interactive experience can require a good deal of dependencies, such as Javascript/CSS frameworks, web fonts and images.
RUM provides insight into your application’s dependencies by giving visibility to asset download and page rendering time.
Some APM products include this as an additional feature. There are also standalone products, such as Google PageSpeed.
Google PageSpeed Overview
Screenshot: Google PageSpeed Overview

5. JVM Performance Metrics

The JVM provides a great deal of valuable information such as garbage collection, memory usage, and thread counts. This data is made available via JMX.
JConsole Monitoring Heap Memory Usage
Screenshot: JConsole Monitoring Heap Memory Usage
Stackify Retrace provides JVM metric monitoring via App Monitors and automatically applies smart defaults based on the type of application discovered.
Stackify JVM smart default monitors
Screenshot of Stackify JVM smart default monitors
Screenshot of Stackify Retrace JVM metric dashboard
Screenshot of Stackify Retrace JVM metric dashboard
Pros: Available in any application running on the JVM and easy to connect to with apps such as JConsole.
Cons: Can be difficult to connect to in a staging and production environment. Aggregation and comparing data might be time-consuming. Stats are only gathered while the monitor is connected to the JVM.

6. Web Server (Apache/Nginx) Access Logs

If you have Apache or Nginx proxying requests to your Java application server, you can monitor access logs. This is a quick way to see how long requests are taking.
You can aggregate the access logs to see what the most popular/fastest/slowest endpoints are. Doing this via the command line can be time-consuming, though.
For small datasets, you can use a desktop tool like Apache Viewer, but for staging and production environments, a hosted logging solution is ideal.
Tracking Failed Requests is also very useful, which can be done by aggregating on HTTP Response Codes.
Pros: Quick way to get some simple stats by tailing access logs, or—if more info is needed—push into a log analyzer.
Cons: Doesn’t give you any details as to why the request took as long as it did. Lack of POST data and response content that could help point you to the cause of a performance issue.
Desktop Tools: AWStats and Apache Viewer
Hosted Tools: ELK stackStackifySplunkLogEntries

7. Tracking All Java Exceptions

One of the biggest causes of performance problems can be application exceptions.
When an exception is thrown, it causes the thread to pause while the stack trace is collected. Even handled exceptions that seem innocent can cause huge performance bottlenecks under heavy server load.
It is important to aggregate and monitor all of your exceptions to find critical problems, new errors, and monitor error rates over time.
Pros: Easy to set up if you are using a logging framework such as Log4j or Logback.
Cons: None
Popular Tools: APM providers, Raygun, Stackify

8. Monitoring Java Exceptions

When trying to improve an app’s performance, you often need not simulate requests from users, but to instead monitor its actual operation.
By monitoring JavaEE Servers in both production and QA environments, you become able to make decisions based on trends, before problems become too severe.
You could also find out the causes of response times, implementing optimizations based on such times.
How To Handle Java Exceptions
JavaMelody is an example of a tool that can help you perform environmental monitoring.

9. Memory Analysis

Application memory analysis after a crash can help with identifying the cause of a memory leak. You can instruct the JVM to dump the heap on an OutOfMemoryError exception by adding the following argument to the JVM:
-XX:+HeapDumpOnOutOfMemoryError
The heap dump file can be loaded into an analyzer: Eclipse MAT. You can dive into the Overview or Leaks Suspects reports to help identify the cause of the memory exception.
Eclipse MAT: Biggest Objects by Retained Size
Screenshot of Eclipse MAT: Biggest Objects by Retained Size

Boost Your Application’s Performance

The big takeaway is that making and keeping your Java application performance is easier than ever with all these tools.
Don’t be overwhelmed by all the things you should be doing. Start with the low hanging fruit first, like exception tracking.
It is really good to at least know what options are available to you, and I hope you found this list helpful.

No comments:

Post a Comment