Skip to content

Commit

Permalink
[hotfix][docs] Update debugging classloading doc to Java 8
Browse files Browse the repository at this point in the history
Since Java 8 Metaspace has replaced PermGen

This closes apache#5158.
  • Loading branch information
pnowojski authored and twalthr committed Dec 19, 2017
1 parent e30066d commit 8aca84c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/monitoring/debugging_classloading.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ Class unloading means that the Garbage Collector finds that no objects from a cl

Whenever a TaskManager starts (or restarts) a task, it will load that specific task's code. Unless classes can be unloaded, this will
become a memory leak, as new versions of classes are loaded and the total number of loaded classes accumulates over time. This
typically manifests itself though a **OutOfMemoryError: PermGen**.
typically manifests itself though a **OutOfMemoryError: Metaspace**.

Common causes for class leaks and suggested fixes:

Expand Down

0 comments on commit 8aca84c

Please sign in to comment.