Created
April 11, 2014 07:42
-
-
Save velvia/10447394 to your computer and use it in GitHub Desktop.
Patch to spark-jobserver to clean up GC
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
case StopContext(name) => | |
if (contexts contains name) { | |
logger.info("Shutting down context {}", name) | |
context.watch(contexts(name)) // watch for termination event | |
contexts(name) ! PoisonPill | |
contexts.remove(name) | |
resultActors.remove(name) | |
sender ! ContextStopped | |
} else { | |
sender ! NoSuchContext | |
} | |
case Terminated(name) => | |
// Child JobManagerActor actually cleaned up | |
logger.info("context {} cleaned up, invoking GC to free permgen/classes...", name) | |
// For details see https://github.com/sbt/sbt/issues/1223 | |
System.gc(); java.lang.System.runFinalization(); System.gc() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For LocalContextSupervisorActor