Mule Application – High Memory Usage (CloudHub)

Reading Time: 5 minutes

Overview

MuleSoft is an integration platform that connects various systems, applications, and data sources across an organisation. In terms of memory management, MuleSoft’s runtime engine, known as Mule Runtime, efficiently manages memory usage to ensure optimal performance and resource utilisation. Here’s an overview of key aspects related to memory management in MuleSoft:

  1. Java Virtual Machine (JVM): MuleSoft applications run on the Java Virtual Machine (JVM), which handles memory allocation and garbage collection. JVM manages memory in the form of heap memory and non-heap memory.
  2. Heap memory: This is where MuleSoft stores objects created during application execution. It consists of two main parts: Young Generation and Old Generation. The Young Generation space is where new objects are allocated, and the Old Generation space is for long-lived objects. MuleSoft applications can configure heap memory settings using JVM options such as -Xms (initial heap size) and -Xmx (maximum heap size) to optimise memory usage based on application requirements.
  3. Garbage Collection (GC): JVM’s garbage collector automatically reclaims memory by removing objects no longer referenced by the application. MuleSoft developers can tune GC settings to optimise performance and reduce pauses caused by garbage collection. Options such as the choice of garbage collector algorithm (e.g. G1GC, CMS) and tuning parameters (e.g. heap size, GC intervals) are available for customisation.
  4. Non-heap memory: This memory area includes Metaspace (replacing PermGen in older JVM versions), which stores class metadata and native memory used by JVM for internal processing and native libraries.
  5. Monitoring and tuning: MuleSoft provides monitoring and management capabilities through tools like Anypoint Runtime Manager and Anypoint Monitoring. These tools allow administrators to monitor memory usage, analyse performance metrics, and troubleshoot issues. Additionally, developers can use profiling tools like VisualVM or YourKit to analyse memory usage and identify memory leaks or inefficiencies in MuleSoft applications.
  6. Best practices: Following best practices in MuleSoft development can help optimise memory usage. This includes:
    1. Designing efficient integration flows
    2. Minimising object creation
    3. Using streaming when handling large payloads
    4. Implementing error handling and retry mechanisms to prevent memory leaks and excessive resource consumption.

Thread dump

  1. Immediately download a thread dump for troubleshooting.
    1. Go to ‘Runtime Manager’.
    2. Select the Mule application and Logs.
    3. On the right side, select the latest deployment and download Diagnostics (thread dump).

  1. Using a thread dump analyser (ie FastThread), upload the thread dump and generate an analysis report. This will help detect and resolve blocked threads, deadlocks and CPU spikes.

Simulate CloudHub 0.x vCore Workers in Anypoint Studio

In the meantime, the Mule application settings in CloudHub can also be simulated locally. The table below contains typical parameters of memory close to 0.x vCore workers: 

  1. In Anypoint Studio, open the application run configuration and input these VM arguments. 

For 0.1 vCore:

  • Xms480m
  • Xmx480m
  • XX:ReservedCodeCacheSize=64m
  • XX:MaxDirectMemorySize=32m
  • XX:MaxMetaspaceSize=256m

For 0.2 vCore

  • Xms960m
  • Xmx960m
  • XX:MaxDirectMemorySize=128m
  • XX:MaxMetaspaceSize=256m

  1. Save and run the application. 
  2. To start monitoring using JConsole (Windows), go to the Task Manager and get the application’s process ID (PID).
    1. Right-click on ‘OpenJDK Platform binary’
    2. Click ‘Go to details’. 

  1. For other operating systems, please refer to the instructions in this article

  1. Start JConsole by entering ‘jconsole <PID>’ in the command terminal. The console will automatically pop up. Click ‘insecure connection’ to proceed.

  1. Since the application is running, the graphs should automatically be populated. You may send bulk requests to the application (using JMeter) and see how memory, thread and CPU behave. You may notice that even though the application is idle, the heap memory keeps on increasing. However, the garbage collection is doing its job by clearing the memory, as you will see drops in heap usage.

A spike in heap is also visible when a bulk of requests is sent to the application. 

(30 concurrent requests, looped 10x).

CloudHub uses a parallel garbage collector. Franz Knupfer from New Relic describes it this way: “The parallel garbage collector is JVM’s default garbage collector. As the name implies this garbage collector uses multiple (parallel) threads. Because it can also use multiple CPUs to speed up throughput, it’s also known as the throughput collector. However, when running garbage collection, it will also freeze application threads.”

Metrics

  1. Go to ‘Anypoint Monitoring’
  2. Click ‘Built-in Dashboards’
  3. Select the Production environment and the CloudHub app.

Check the Heap Used and Tenure Used and see if there’s a drop in usage; this indicates that a MAJOR garbage collection was successfully executed, and the application is expected to remain stable.

To check when MINOR garbage collections are executed, check usage drops in Par Eden Used. 

Logs

One of the common causes of high memory and slowness of the application is the high load of logs. To temporarily resolve this, go to Runtime Manager and temporarily set the logging level to WARN. 

Heap dump

To further investigate, we may identify which processes mostly contribute to the heap memory. To do this, you may create a support ticket in MuleSoft Help Center to request a heap dump. The support team only provides a heap dump if there is an evident production issue.

Conclusion

Overall, effective memory management is crucial for ensuring the reliability, scalability, and performance of MuleSoft integration solutions, and understanding the principles and tools available for memory management is essential for MuleSoft developers and administrators.

Mule Upgrade Tech Guide

Grab your copy

IT Managed Services

Lets get started

Let’s get started.
Reach out to us
for a conversation!

Fill in the form below and we will get back to you

Don’t Miss Out!

Stay in the loop on the latest in the wild world of technology and AI. Subscribe for updates on our newest articles and exclusive events, it just Makes Sense!