Spark Application Garbage Collector
ContextCleaneris a Spark service that is responsible for application-wide cleanup of shuffles , RDDs , broadcasts , accumulators and checkpointed RDDs that is aimed at reducing the memory requirements of long-running data-heavy Spark applications.
ContextCleanerruns on the driver. It is created and immediately started whenSparkContextstarts (andspark.cleaner.referenceTrackingSpark property is enabled, which it is by default). It is stopped whenSparkContextis stopped
.
Last updated
Was this helpful?