1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 package org.apache.hadoop.metrics2.impl;
19
20 import java.util.concurrent.ScheduledFuture;
21 import java.util.concurrent.TimeUnit;
22 import java.util.concurrent.atomic.AtomicBoolean;
23 import java.util.concurrent.atomic.AtomicReference;
24
25 import org.apache.commons.logging.Log;
26 import org.apache.commons.logging.LogFactory;
27 import org.apache.hadoop.hbase.classification.InterfaceAudience;
28 import org.apache.hadoop.metrics2.MetricsExecutor;
29 import org.apache.hadoop.metrics2.lib.DefaultMetricsSystem;
30 import org.apache.hadoop.metrics2.lib.MetricsExecutorImpl;
31 import org.apache.hadoop.util.StringUtils;
32
33
34
35
36
37
38
39
40
41 @InterfaceAudience.Private
42 public class JmxCacheBuster {
43 private static final Log LOG = LogFactory.getLog(JmxCacheBuster.class);
44 private static AtomicReference<ScheduledFuture> fut = new AtomicReference<>(null);
45 private static MetricsExecutor executor = new MetricsExecutorImpl();
46 private static AtomicBoolean stopped = new AtomicBoolean(false);
47
48 private JmxCacheBuster() {
49
50 }
51
52
53
54
55 public static void clearJmxCache() {
56 if (LOG.isTraceEnabled()) {
57 LOG.trace("clearing JMX Cache" + StringUtils.stringifyException(new Exception()));
58 }
59
60 ScheduledFuture future = fut.get();
61 if ((future != null && (!future.isDone() && future.getDelay(TimeUnit.MILLISECONDS) > 100))) {
62
63 return;
64 }
65 if (stopped.get()) {
66 return;
67 }
68 future = executor.getExecutor().schedule(new JmxCacheBusterRunnable(), 5, TimeUnit.SECONDS);
69 fut.set(future);
70 }
71
72
73
74
75
76 public static void stop() {
77 stopped.set(true);
78 ScheduledFuture future = fut.get();
79 future.cancel(false);
80 }
81
82
83
84
85
86 public static void restart() {
87 stopped.set(false);
88 }
89
90 final static class JmxCacheBusterRunnable implements Runnable {
91 @Override
92 public void run() {
93 if (LOG.isTraceEnabled()) {
94 LOG.trace("Clearing JMX mbean cache.");
95 }
96
97
98
99 try {
100 if (DefaultMetricsSystem.instance() != null) {
101 DefaultMetricsSystem.instance().stop();
102
103
104 Thread.sleep(500);
105 DefaultMetricsSystem.instance().start();
106 }
107 } catch (Exception exception) {
108 LOG.debug("error clearing the jmx it appears the metrics system hasn't been started",
109 exception);
110 }
111 }
112 }
113 }