Spring Boot Buggy APIs – Simulate performance problems

The Spring Boot Buggy API is an open-source tool for simulating various performance issues like memory leaks and CPU spikes in applications. By testing these scenarios, developers can assess system resilience and evaluate performance monitoring tools. It allows easy invocation of specific problems to analyze system behavior and improve software robustness.

Simulating & troubleshooting Thread leak in Scala

This content discusses simulating thread leaks in Scala, specifically generating the 'java.lang.OutOfMemoryError: unable to create new native thread'. A provided sample program continuously creates threads, eventually saturating memory. It outlines both manual and automated diagnostic approaches, emphasizing the effectiveness of the yCrash tool for identifying problematic threads and their origins.

Simulating & troubleshooting Thread leak in Kotlin

This post explains how to simulate and troubleshoot thread leaks in Kotlin, focusing on generating a 'java.lang.OutOfMemoryError: unable to create new native thread.’ It describes a sample program that infinitely creates non-terminating threads and outlines both manual and automated approaches to diagnose and resolve the issue, emphasizing the use of tools like yCrash.

Up ↑