You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "Yutong Xiao (Jira)" <ji...@apache.org> on 2021/06/18 08:41:00 UTC

[jira] [Updated] (HBASE-26013) Get operations readRows metrics becomes zero after HBASE-25677

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

Yutong Xiao updated HBASE-26013:
--------------------------------
    Description: 
After HBASE-25677, the method in HRegion.java 

{code:java}
void metricsUpdateForGet(List<Cell> results, long before) {
    if (this.metricsRegion != null) {
      this.metricsRegion.updateGet(EnvironmentEdgeManager.currentTime() - before);
    }
}
{code}

does not update the regionserver level metrics.  


> Get operations readRows metrics becomes zero after HBASE-25677
> --------------------------------------------------------------
>
>                 Key: HBASE-26013
>                 URL: https://issues.apache.org/jira/browse/HBASE-26013
>             Project: HBase
>          Issue Type: Bug
>            Reporter: Yutong Xiao
>            Assignee: Yutong Xiao
>            Priority: Major
>
> After HBASE-25677, the method in HRegion.java 
> {code:java}
> void metricsUpdateForGet(List<Cell> results, long before) {
>     if (this.metricsRegion != null) {
>       this.metricsRegion.updateGet(EnvironmentEdgeManager.currentTime() - before);
>     }
> }
> {code}
> does not update the regionserver level metrics.  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)