Skip to content

Commit

Permalink
HADOOP-16248. MutableQuantiles leak memory under heavy load.
Browse files Browse the repository at this point in the history
Contributed by Alexis Daboville,
  • Loading branch information
Alexis-D authored and steveloughran committed May 17, 2019
1 parent c183bd8 commit 4cb3da6
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -107,7 +107,7 @@ public MutableQuantiles(String name, String description, String sampleName,
estimator = new SampleQuantiles(quantiles);

this.interval = interval;
scheduledTask = scheduler.scheduleAtFixedRate(new RolloverSample(this),
scheduledTask = scheduler.scheduleWithFixedDelay(new RolloverSample(this),
interval, interval, TimeUnit.SECONDS);
}

Expand Down

0 comments on commit 4cb3da6

Please sign in to comment.