HADOOP-3957. Change MutableQuantiles to use a shared thread for rolling over metrics. Contributed by Andrew Wang.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1390211 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1aba4503cf
commit
1901c501c8
|
@ -22,6 +22,9 @@ Release 2.0.3-alpha - Unreleased
|
|||
|
||||
HADOOP-8812. ExitUtil#terminate should print Exception#toString. (eli)
|
||||
|
||||
HADOOP-3957. Change MutableQuantiles to use a shared thread for rolling
|
||||
over metrics. (Andrew Wang via todd)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
BUG FIXES
|
||||
|
|
|
@ -35,6 +35,7 @@ import org.apache.hadoop.metrics2.util.Quantile;
|
|||
import org.apache.hadoop.metrics2.util.SampleQuantiles;
|
||||
|
||||
import com.google.common.annotations.VisibleForTesting;
|
||||
import com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
|
||||
/**
|
||||
* Watches a stream of long values, maintaining online estimates of specific
|
||||
|
@ -60,8 +61,9 @@ public class MutableQuantiles extends MutableMetric {
|
|||
@VisibleForTesting
|
||||
protected Map<Quantile, Long> previousSnapshot = null;
|
||||
|
||||
private final ScheduledExecutorService scheduler = Executors
|
||||
.newScheduledThreadPool(1);
|
||||
private static final ScheduledExecutorService scheduler = Executors
|
||||
.newScheduledThreadPool(1, new ThreadFactoryBuilder().setDaemon(true)
|
||||
.setNameFormat("MutableQuantiles-%d").build());
|
||||
|
||||
/**
|
||||
* Instantiates a new {@link MutableQuantiles} for a metric that rolls itself
|
||||
|
|
Loading…
Reference in New Issue