Search

Fast thread

Universal Java Thread Dump Analyzer

Tag

Heap dumps

Simulation und Fehlerbehebung von Deadlocks in Kotlin – Bahnbrechende Deadlocks

We appreciate Entwinkler.de JavaMagazin for translating and publishing our article 'Simulating and troubleshooting deadlocks in Kotlin' in German. It’s an honor to see our work featured in a print magazine, specifically the December 2022 issue, titled 'Simulation und Fehlerbehebung von Deadlocks in Kotlin'.

Java Hashtable, HashMap, ConcurrentHashMap – Performance impact

This post examines the performance of HashMap, Hashtable, and ConcurrentHashMap through practical examples. It concludes that while HashMap performs best, it lacks thread safety, leading to potential issues. ConcurrentHashMap offers slightly slower performance but is thread-safe, making it a preferable choice for concurrent applications.

 Montreal 2022 – 16 ARTIFACTS TO CAPTURE WHEN THERE IS A PRODUCTION PROBLEM

ConFoo Montreal is a prominent multi-technology conference for developers, featuring a presentation by Architect Ram Lakshmanan on "16 artifacts to capture when there is a production problem." This session ranks 5th out of 155, highlighting the importance of capturing diagnostic information to effectively troubleshoot production issues.

What is Garbage collection log, Thread dump, Heap dump?

The Java Virtual Machine (JVM) generates three key artifacts for performance optimization: Garbage Collection (GC) logs, Thread dumps, and Heap dumps. GC logs track memory management events, Thread dumps capture current thread states, and Heap dumps provide snapshots of memory. Each has specific uses in troubleshooting and performance analysis.

Confoo Canada Conference talk 2020 – SHOOTING THE TROUBLES

The ConFoo.CA Developer Conference, a major event for web developers in Canada, featured 155 presentations from international speakers. Architect Ram Lakshmanan's talk focused on troubleshooting production issues, analyzing data artifacts, and sharing enterprise outage examples. Attendees provided positive feedback on his presentation, highlighting its practical insights and real-world relevance.

Java – Missing font – Crashing App!

This post discusses an issue experienced while analyzing a heap dump in Eclipse MAT, which crashed due to a missing font. The error, ArrayIndexOutOfBoundsException, was traced to font configuration in Linux. Solutions include installing the missing font, upgrading the JDK, or editing the OS font configuration to set Utopia as default.

OUTOFMEMORYERROR RELATED JVM ARGUMENTS

You can configure JVM to invoke any script when OutOfMemoryError is thrown. Most of the time,OutOfMemoryError doesn't crash the application

AUTOMATING – OUTOFMEMORYERROR TROUBLESHOOTING

To troubleshoot OutOfMemoryError, follow three steps: capture heap dump using JVM arguments to automate collection when errors occur, restart the application to maintain stability, and diagnose the problem using tools like Eclipse MAT or HeapHero for automated analysis. This approach can streamline the troubleshooting process significantly.

Up ↑