[ 
https://issues.apache.org/jira/browse/HBASE-4059?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13060687#comment-13060687
 ] 

[email protected] commented on HBASE-4059:
------------------------------------------------------


-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/968/#review970
-----------------------------------------------------------



/src/main/java/org/apache/hadoop/hbase/master/handler/ServerShutdownHandler.java
<https://reviews.apache.org/r/968/#comment2040>

    isDaughterMissing() calls MetaReader.fullScan() which ignores the return 
value of visitor.visit()
    
    The additional check just excludes the region from being qualified as 
daughter if the region isn't assigned to any server.


- Ted


On 2011-07-06 14:21:49, Ted Yu wrote:
bq.  
bq.  -----------------------------------------------------------
bq.  This is an automatically generated e-mail. To reply, visit:
bq.  https://reviews.apache.org/r/968/
bq.  -----------------------------------------------------------
bq.  
bq.  (Updated 2011-07-06 14:21:49)
bq.  
bq.  
bq.  Review request for hbase.
bq.  
bq.  
bq.  Summary
bq.  -------
bq.  
bq.  When a region is split during the RS shutdown process, RS just writes the 
daughter region info to META, but not make them online. Then, for master, in 
its ServerShutdownHandler, the function isDaughterMissing() uses 
FindDaughterVisitor to check whether daughter region is OK. However, this 
visitor doesn't check whether the value for HConstants.SERVER_QUALIFIER carries 
non-null value.
bq.  
bq.  Therefore for the scenario, isDaughterMissing() returns false, skipping 
the following line:
bq.  assignmentManager.assign(daughter, true);
bq.  
bq.  
bq.  This addresses bug HBASE-4059.
bq.      https://issues.apache.org/jira/browse/HBASE-4059
bq.  
bq.  
bq.  Diffs
bq.  -----
bq.  
bq.    
/src/main/java/org/apache/hadoop/hbase/master/handler/ServerShutdownHandler.java
 1142708 
bq.  
bq.  Diff: https://reviews.apache.org/r/968/diff
bq.  
bq.  
bq.  Testing
bq.  -------
bq.  
bq.  Ran unit test suite.
bq.  
bq.  
bq.  Thanks,
bq.  
bq.  Ted
bq.  
bq.



> If a region is split during RS shutdown process, the daughter regions are NOT 
> made online by master
> ---------------------------------------------------------------------------------------------------
>
>                 Key: HBASE-4059
>                 URL: https://issues.apache.org/jira/browse/HBASE-4059
>             Project: HBase
>          Issue Type: Bug
>          Components: master, regionserver
>    Affects Versions: 0.90.1, 0.90.2, 0.90.3
>            Reporter: Weihua Jiang
>            Assignee: Ted Yu
>         Attachments: 4059.txt
>
>
> When a region is splitted during the RS shutdown process, RS just written the 
> daughter region infos to META, but not make them online. Then, for master, in 
> its ServerShutdownHandler, the function isDaughterMissing() uses 
> FindDaughterVisitor to check whether daughter region is OK. However, this 
> visitor doesn't check whether the value for HConstants.SERVER_QUALIFIER 
> carries non-null value.
> Therefore for the scenario, isDaughterMissing() returns false, skipping the 
> following line:
>      assignmentManager.assign(daughter, true);

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to