Troubleshooting Liferay Performance Issues with Glowroot

Liferay DXP 2023.Q4+/Portal 7.4 GA100+

Use Glowroot to identify and diagnose performance issues in your Liferay installation. The following topics are some common issues to diagnose.

Expensive SQL Queries

Expensive SQL queries can have slow response times and place excessive loads against your database. Click the Transactions tab to monitor the various queries your system is processing. Under the Transactions panel, click Queries. In the table, click Total time (ms) to identify the queries that take the most time.

Identify the queries that take the most time.

Expensive SQL queries might also cause a backup of other threads waiting for a connection. To add the Hikari connection pool to the gauges dashboard, navigate to ConfigurationGauges. Click Add new and search for com.zaxxer.hikari:type=Pool (HikariPool-1). Select all the Mbean attributes and click Add.

Click the JVM tab and then Gauges in the left menu. The Hikari connection pool can now be monitored in the Gauges dashboard.

Cache Size Issues

Liferay uses Ehcache to cache most of its entities. Use the Mbean tree to inspect the configuration and utilization of specific entities. For example, inspect the entity cache for UserImpl.

  1. Click the JVM tab. Click Mbean tree in the left navigation.

  2. Scroll down (or text search) to the find the UserImpl under the CacheConfiguration section. See the current cache configuration for the entity.

    See the current configuration for the entity.

  3. Scroll down (or text search) to find the UserImpl under the CacheStatistics section. See the current cache utilization for the entity.

    See the current utilization for the entity.

Based on your inspection of the entity, make necessary changes to your cache configuration.

It is also possible to clear the cache. In Liferay, navigate to Control PanelServer Administration. Cache clearing is available under the Resources tab.

Custom SQL Queries

As custom queries are not cached, they can sometimes require long transaction times. See expensive SQL queries above to see the impact of custom queries on your system.

Large Tables

Over time, your Liferay database tables can grow large. This may also cause transaction slowdown. Some examples are

  • Audit_AuditEvent - table related to auditing events such as login
  • OAuth2Authorization - table related to authorizations
  • SamlSpAuthRequest, SamlSpMessage, SamlSpSession - tables related to SAML authentications
  • UserNotificationEvent - table related to notifications

Consider database pruning to improve performance.

Concurrency Issues

If some transactions seems to be slow despite low CPU utilization, it may be a concurrency issue with synchronized resources. Navigate to the Transactions tab in Glowroot. Select a specific transaction in the left menu. Scroll down the dashboard to the JVM thread section to inspect the transaction.

Scroll down the dashboard to the JVM thread section.

CPU time: the time spent computing.

Blocked time: the time the thread is blocked and possibly waiting for a synchronization mechanism.

Waited time: the time the thread waited to complete the transaction.

Check to see if transactions are blocked or waiting for a long time.

Backend Service Slowness

It may be that a slow transaction is caused by a slow or unresponsive external backend service. Like the concurrency issues above, use the transaction dashboard to inspect your backend service transactions. You may need to make some configuration changes with your services.

Long Garbage Collection Time

Use the Glowroot gauges to monitor garbage collection and to check for unusually long times. Navigate to the JVM tab and click Gauges in the left menu. Scroll down and select the garbage collector CollectionTime attribute to be displayed.

View the CollectionTime garbage collector attribute in the gauge dashboard.

Metaspace Out of Memory Errors

Metaspace size is set when configuring your application server. A crash can occur when the JVM tries to claim more memory than what is configured. Use the Glowroot gauges to inspect the metaspace usage. Navigate to the JVM tab and click Gauges in the left menu. Scroll down and select the garbage collector CollectionTime attribute. Scroll down and select the java Metaspace attribute to be displayed.

Slow or Expensive Code

Use Glowroot to analyze whether certain sections of code are having performance issues. Navigate to the Transactions tab. Select a specific transaction to inspect, and click Thread profile in the transactions panel. The thread profile shows the thread stack of the transaction.

A flame graph can also be rendered from this panel. Click View flame graph.

Click view flame graph to render a flame graph.

The flame graph shows a visualization of the stack trace. Mouse over elements to see the specifics of each method.

Configuring Instrumentation

Capture any method call as an individual transaction by configuring instrumentation. To create a new instrumentation,

  1. Navigate to ConfigurationInstrumentation. Click Add new.

  2. Enter the class name and method name. Select what to capture and fill in the details based on your specific needs.

  3. Click Add. The new transaction appears under the Transactions tab.

See Glowroot instrumentation for more information.

False Alarms

Slow transactions may be an indication of potential system errors. However, there are some scenarios in which it may be expected. For example, when Liferay first starts up, you might see large SQL queries that take a long time. Slow transactions might also happen after a long idle period in which the cache is empty. JSP requests might also show up as slow transactions. JSPs are compiled at runtime, and a large number of JSP requests may cause a slowdown.

Ask

Capabilities

Product

DXP

Contact Us

Connect

Powered by Liferay
© 2024 Liferay Inc. All Rights Reserved • Privacy Policy