You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "Guanghao Zhang (JIRA)" <ji...@apache.org> on 2016/10/21 08:19:58 UTC

[jira] [Created] (HBASE-16910) Avoid NPE when start StochasticLoadBalancer

Guanghao Zhang created HBASE-16910:
--------------------------------------

             Summary: Avoid NPE when start StochasticLoadBalancer
                 Key: HBASE-16910
                 URL: https://issues.apache.org/jira/browse/HBASE-16910
             Project: HBase
          Issue Type: Bug
          Components: Balancer
    Affects Versions: 2.0.0
            Reporter: Guanghao Zhang
            Priority: Minor


When master start, it initialize StochasticLoadBalancer.
{code}
this.balancer.setClusterStatus(getClusterStatus());
this.balancer.setMasterServices(this);
{code}

It first setClusterStatus(), then setMasterService(). But in setClusterStatus method, it use master service which is not initialized. So it will throw NPE.
```
int tablesCount = isByTable ? services.getTableDescriptors().getAll().size() : 1;
```
It happens when set isByTable is ture.



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