From 8aca84c7266ca88272d54d86137a6560f7afc2d7 Mon Sep 17 00:00:00 2001 From: Piotr Nowojski Date: Wed, 13 Dec 2017 10:12:22 +0100 Subject: [PATCH] [hotfix][docs] Update debugging classloading doc to Java 8 Since Java 8 Metaspace has replaced PermGen This closes #5158. --- docs/monitoring/debugging_classloading.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/monitoring/debugging_classloading.md b/docs/monitoring/debugging_classloading.md index 414eef6133e..187ffafcfdf 100644 --- a/docs/monitoring/debugging_classloading.md +++ b/docs/monitoring/debugging_classloading.md @@ -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: -- GitLab