‘The Hidden Battle: Troubleshooting Issues in On-Prem Customer Deployments’ webinar

The recent webinar focused on troubleshooting performance issues in customer-managed, on-premise environments. Experts discussed challenges like limited visibility and communication delays, emphasizing the need for essential artifacts for diagnosis. Participants learned practical strategies, including automation workflows and effective communication techniques, to enhance resolution accuracy and reduce turnaround times.

How to Master JVM GC Threads? VM Options & Analysis

The garbage collection phase in Java applications is important for keeping performance high. Configuring garbage collector threads, including concurrent and parallel threads, can improve application performance. Be careful with manual thread configuration to avoid performance problems. Analyzing thread dumps can help monitor and enhance performance by identifying problem areas and fine-tuning settings.

Simulation of CPU Spikes in Boomi Server: Troubleshooting and Diagnosis

Detecting CPU spikes in a Java application is important for keeping it running smoothly. This can happen because of things like lots of calculations, user actions, other tasks running in the background, or code that could be made better. The post talks about fixing CPU spike issues in Dell Boomi servers and doing tests to make CPU spikes happen in Boomi using the buggyApp tool. It also mentions using performance monitoring tools for keeping an eye on performance and figuring out why problems happen.

Virtual Threads – A Definite Advantage

Virtual Threads in Java, introduced in version 21, significantly enhance multi-threaded applications by reducing thread management overhead. This article explores their advantages over traditional platform threads through experimentation involving one million threads. Virtual Threads operate efficiently within heap memory, preventing OutOfMemoryError, and allow easier application scalability and performance improvements.

How to capture and analyze Thread dumps in Android?

Discover the power of thread dumps in Android development. Learn what thread dumps are, how to capture them using commands like 'dumpsys thread' and 'jstack,' and uncover the insights they offer. Explore the effectiveness of 'fastThread,' a user-friendly tool that simplifies thread dump analysis, helping you identify performance issues, deadlocks, and more for a smoother... Continue Reading →

Parallel Sort

Everyone knows about what sorting is. There are so many computer algorithms that have emerged to support sorting. Some of the well-known algorithms are quick sort, heap sort, merge sort etc. All these sorting algorithms are working based on sequential sorting. Means, a single thread is used to perform the complete sorting operation. However, this... Continue Reading →

Up ↑