Splunk Completes Acquisition of Plumbr Learn more

Surveys

  • Plumbr Java Performance Survey 2014-11-20

    308 respondents, out of which 73% were software engineers, described their experience with detecting and solving Java performance issues.

    3 key findings

    1. The average time that is spent on finding and fixing the root cause is 80 hours
    2. It takes approximately 2 weeks to solve a Java performance issue
    3. 76% of the respondents struggle the most with “trying to reproduce – gather evidence – make sense of the evidence – link evidence to the root cause” cycle

Handbooks

  • java.lang.OutOfMemoryError Handbook 2015-03-10

    We like to call it the Ultimate Handbook of java.lang.OutOfMemoryErrors. It’s a 28-page e-book of explanations, code examples and solution guidelines for everything related to java.lang.OutOfMemoryError exceptions.

    The 8 symptoms of java.lang.OutOfMemoryError covered:

    1. java.lang.OutOfMemoryError: Java heap space
    2. java.lang.OutOfMemoryError: GC overhead limit exceeded
    3. java.lang.OutOfMemoryError: Permgen space
    4. java.lang.OutOfMemoryError: Metaspace
    5. java.lang.OutOfMemoryError: Unable to create new native thread
    6. java.lang.OutOfMemoryError: Out of swap space?
    7. java.lang.OutOfMemoryError: Requested array size exceeds VM limit
    8. Out of memory: Kill process or sacrifice child
  • Java Garbage Collection Handbook 2015-07-02

    Plumbr engineers know the JVM inside out. However, not everyone has the luck to spend their days waist-deep inside the GC clockwork. Those of you – the unlucky ones 😉 – need to rely more on educational content. We believe our concise and illustrated handbook is one of the best ways to get yourself acquainted with JVM garbage collection.

    Table of contents:

    1. What Is Garbage Collection?
    2. Garbage Collection in Java
    3. GC Algorithms: the Basics
    4. GC Algorithms: the Implementations
    5. GC Tuning
    6. GC Tuning: Tooling
    7. GC Tuning: Advanced