You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tw...@apache.org on 2017/12/19 09:45:43 UTC

flink git commit: [hotfix][docs] Update debugging classloading doc to Java 8

Repository: flink
Updated Branches:
  refs/heads/master e30066dbd -> 8aca84c72


[hotfix][docs] Update debugging classloading doc to Java 8

Since Java 8 Metaspace has replaced PermGen

This closes #5158.


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/8aca84c7
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/8aca84c7
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/8aca84c7

Branch: refs/heads/master
Commit: 8aca84c7266ca88272d54d86137a6560f7afc2d7
Parents: e30066d
Author: Piotr Nowojski <pi...@gmail.com>
Authored: Wed Dec 13 10:12:22 2017 +0100
Committer: twalthr <tw...@apache.org>
Committed: Tue Dec 19 10:44:32 2017 +0100

----------------------------------------------------------------------
 docs/monitoring/debugging_classloading.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/8aca84c7/docs/monitoring/debugging_classloading.md
----------------------------------------------------------------------
diff --git a/docs/monitoring/debugging_classloading.md b/docs/monitoring/debugging_classloading.md
index 414eef6..187ffaf 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: