You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "ramkrishna.s.vasudevan (JIRA)" <ji...@apache.org> on 2013/06/07 09:18:20 UTC

[jira] [Created] (HBASE-8705) RS holding META when restarted in a single node setup may hang infinitely without META assignment

ramkrishna.s.vasudevan created HBASE-8705:
---------------------------------------------

             Summary: RS holding META when restarted in a single node setup may hang infinitely without META assignment
                 Key: HBASE-8705
                 URL: https://issues.apache.org/jira/browse/HBASE-8705
             Project: HBase
          Issue Type: Bug
    Affects Versions: 0.95.1
            Reporter: ramkrishna.s.vasudevan
            Assignee: ramkrishna.s.vasudevan
            Priority: Minor
             Fix For: 0.98.0


This bug may be minor as it likely to happen in a single node setup.
I restarted the RS holding META. The master tried assigning META using MetaSSH. But tried this before the new RS came up.
So as not region plan is found 
{code}
 if (plan == null) {
        LOG.warn("Unable to determine a plan to assign " + region);
        if (tomActivated){
          this.timeoutMonitor.setAllRegionServersOffline(true);
        } else {
          regionStates.updateRegionState(region, RegionState.State.FAILED_OPEN);
        }
        return;
      }
{code}
we just return without assigment.  And this being the META the small cluster just hangs.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira