This is an automated email from the ASF dual-hosted git repository.
stevel pushed a commit to branch branch-2
in repository https://gitbox.apache.org/repos/asf/hadoop.git
The following commit(s) were added to refs/heads/branch-2 by this push:
new b70fdc6 HADOOP-16248. MutableQuantiles leak memory under heavy load.
b70fdc6 is described below
commit b70fdc64d310e306fc97dbf6b142fb1e7d49bbed
Author: Alexis Daboville <[email protected]>
AuthorDate: Fri May 17 15:15:22 2019 +0100
HADOOP-16248. MutableQuantiles leak memory under heavy load.
Contributed by Alexis Daboville,
(cherry picked from commit 4cb3da6ac703b10de59a8ca371fe957a4a338601)
---
.../src/main/java/org/apache/hadoop/metrics2/lib/MutableQuantiles.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/metrics2/lib/MutableQuantiles.java
b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/metrics2/lib/MutableQuantiles.java
index cc32975..eee72be 100644
---
a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/metrics2/lib/MutableQuantiles.java
+++
b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/metrics2/lib/MutableQuantiles.java
@@ -107,7 +107,7 @@ public class MutableQuantiles extends MutableMetric {
estimator = new SampleQuantiles(quantiles);
this.interval = interval;
- scheduledTask = scheduler.scheduleAtFixedRate(new RolloverSample(this),
+ scheduledTask = scheduler.scheduleWithFixedDelay(new RolloverSample(this),
interval, interval, TimeUnit.SECONDS);
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]