We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6d9bce4 + 682f0e5 commit d5cc52eCopy full SHA for d5cc52e
core/src/main/scala/org/apache/spark/util/MetadataCleaner.scala
@@ -27,7 +27,7 @@ import org.apache.spark.Logging
27
class MetadataCleaner(cleanerType: MetadataCleanerType.MetadataCleanerType, cleanupFunc: (Long) => Unit) extends Logging {
28
val name = cleanerType.toString
29
30
- private val delaySeconds = MetadataCleaner.getDelaySeconds
+ private val delaySeconds = MetadataCleaner.getDelaySeconds(cleanerType)
31
private val periodSeconds = math.max(10, delaySeconds / 10)
32
private val timer = new Timer(name + " cleanup timer", true)
33
0 commit comments