You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "Weizhan Zeng (JIRA)" <ji...@apache.org> on 2016/12/29 08:09:58 UTC

[jira] [Issue Comment Deleted] (HBASE-11501) Metrics from JMX cache are not cleared

     [ https://issues.apache.org/jira/browse/HBASE-11501?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Weizhan Zeng updated HBASE-11501:
---------------------------------
    Comment: was deleted

(was: @Virag Kothari   I add  this patch to our online cluster ,but it  still not clear. My hbase version is 1.1.6 . here is my code is change

-      if (fut == null || (!fut.isDone()  && fut.getDelay(TimeUnit.MILLISECONDS) > 100)) return;
+      if (fut != null && !fut.isDone() && fut.getDelay(TimeUnit.MILLISECONDS) > 100){
+        return;
+      }
       fut = executor.getExecutor().schedule(new JmxCacheBusterRunnable(), 5, TimeUnit.SECONDS);

)

> Metrics from JMX cache are not cleared
> --------------------------------------
>
>                 Key: HBASE-11501
>                 URL: https://issues.apache.org/jira/browse/HBASE-11501
>             Project: HBase
>          Issue Type: Bug
>          Components: metrics
>    Affects Versions: 2.0.0
>            Reporter: Virag Kothari
>            Assignee: Virag Kothari
>         Attachments: HBASE-11501.patch, HBASE-11501.patch
>
>
> In JmxCacheBuster, clearJmxCache() has incorrect condition for starting JmxCacheBusterRunnable



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)