[jira] [Commented] (HBASE-26864) SplitTableRegionProcedure calls openParentRegions() at a wrong state during rollback.

2022-03-27 Thread Hudson (Jira)


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

Hudson commented on HBASE-26864:


Results for branch master
[build #550 on 
builds.a.o|https://ci-hbase.apache.org/job/HBase%20Nightly/job/master/550/]: 
(x) *{color:red}-1 overall{color}*

details (if available):

(/) {color:green}+1 general checks{color}
-- For more information [see general 
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/master/550/General_20Nightly_20Build_20Report/]






(/) {color:green}+1 jdk8 hadoop3 checks{color}
-- For more information [see jdk8 (hadoop3) 
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/master/550/JDK8_20Nightly_20Build_20Report_20_28Hadoop3_29/]


(x) {color:red}-1 jdk11 hadoop3 checks{color}
-- For more information [see jdk11 
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/master/550/JDK11_20Nightly_20Build_20Report_20_28Hadoop3_29/]


(/) {color:green}+1 source release artifact{color}
-- See build output for details.


(/) {color:green}+1 client integration test{color}


> SplitTableRegionProcedure calls openParentRegions() at a wrong state during 
> rollback.
> -
>
> Key: HBASE-26864
> URL: https://issues.apache.org/jira/browse/HBASE-26864
> Project: HBase
>  Issue Type: Bug
>  Components: Region Assignment
>Affects Versions: 2.4.10
>Reporter: Huaxiang Sun
>Assignee: Huaxiang Sun
>Priority: Major
> Fix For: 2.5.0, 2.6.0, 3.0.0-alpha-3, 2.4.12
>
>
> Changed the issue title and description for the scope of the work. 
> there is a bug in handling Rollback in SplitTableRegionProcedure.
> [https://github.com/apache/hbase/blob/master/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/SplitTableRegionProcedure.java#L304]
> [https://github.com/apache/hbase/blob/master/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/SplitTableRegionProcedure.java#L385]
> {code:java}
> In the state machine:
>         case SPLIT_TABLE_REGION_CLOSE_PARENT_REGION:
>           addChildProcedure(createUnassignProcedures(env));
>   // Comments from HX:
>           // createUnassignProcedures() can throw out IOException. If this 
> happens,
>           // it wont reach state SPLIT_TABLE_REGIONS_CHECK_CLOSED_REGION and 
> no parent regions
>           // is closed as all created UnassignProcedures are rolled back. If 
> it rolls back with
>           // state SPLIT_TABLE_REGION_CLOSE_PARENT_REGION, no need to call 
> openParentRegion(),
>           // otherwise, it will result in OpenRegionProcedure for an already 
> open region.
>           
> setNextState(SplitTableRegionState.SPLIT_TABLE_REGIONS_CHECK_CLOSED_REGIONS);
>           break;
> In the rollback,
>         case SPLIT_TABLE_REGIONS_CHECK_CLOSED_REGIONS:
>           // Doing nothing, in SPLIT_TABLE_REGION_CLOSE_PARENT_REGION,
>           // we will bring parent region online
>           break;
>         case SPLIT_TABLE_REGION_CLOSE_PARENT_REGION:
>   // Comments from HX: 
>   // OpenParentRegion() should not be called here as explained above.
>           openParentRegion(env);
>           break; {code}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)


[jira] [Commented] (HBASE-26864) SplitTableRegionProcedure calls openParentRegions() at a wrong state during rollback.

2022-03-27 Thread Hudson (Jira)


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

Hudson commented on HBASE-26864:


Results for branch branch-2.5
[build #78 on 
builds.a.o|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2.5/78/]: 
(x) *{color:red}-1 overall{color}*

details (if available):

(x) {color:red}-1 general checks{color}
-- For more information [see general 
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2.5/78/General_20Nightly_20Build_20Report/]




(x) {color:red}-1 jdk8 hadoop2 checks{color}
-- For more information [see jdk8 (hadoop2) 
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2.5/78/JDK8_20Nightly_20Build_20Report_20_28Hadoop2_29/]


(x) {color:red}-1 jdk8 hadoop3 checks{color}
-- For more information [see jdk8 (hadoop3) 
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2.5/78/JDK8_20Nightly_20Build_20Report_20_28Hadoop3_29/]


(x) {color:red}-1 jdk11 hadoop3 checks{color}
-- For more information [see jdk11 
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2.5/78/JDK11_20Nightly_20Build_20Report_20_28Hadoop3_29/]


(x) {color:red}-1 source release artifact{color}
-- See build output for details.


(x) {color:red}-1 client integration test{color}
-- Something went wrong with this stage, [check relevant console 
output|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2.5/78//console].


> SplitTableRegionProcedure calls openParentRegions() at a wrong state during 
> rollback.
> -
>
> Key: HBASE-26864
> URL: https://issues.apache.org/jira/browse/HBASE-26864
> Project: HBase
>  Issue Type: Bug
>  Components: Region Assignment
>Affects Versions: 2.4.10
>Reporter: Huaxiang Sun
>Assignee: Huaxiang Sun
>Priority: Major
> Fix For: 2.5.0, 2.6.0, 3.0.0-alpha-3, 2.4.12
>
>
> Changed the issue title and description for the scope of the work. 
> there is a bug in handling Rollback in SplitTableRegionProcedure.
> [https://github.com/apache/hbase/blob/master/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/SplitTableRegionProcedure.java#L304]
> [https://github.com/apache/hbase/blob/master/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/SplitTableRegionProcedure.java#L385]
> {code:java}
> In the state machine:
>         case SPLIT_TABLE_REGION_CLOSE_PARENT_REGION:
>           addChildProcedure(createUnassignProcedures(env));
>   // Comments from HX:
>           // createUnassignProcedures() can throw out IOException. If this 
> happens,
>           // it wont reach state SPLIT_TABLE_REGIONS_CHECK_CLOSED_REGION and 
> no parent regions
>           // is closed as all created UnassignProcedures are rolled back. If 
> it rolls back with
>           // state SPLIT_TABLE_REGION_CLOSE_PARENT_REGION, no need to call 
> openParentRegion(),
>           // otherwise, it will result in OpenRegionProcedure for an already 
> open region.
>           
> setNextState(SplitTableRegionState.SPLIT_TABLE_REGIONS_CHECK_CLOSED_REGIONS);
>           break;
> In the rollback,
>         case SPLIT_TABLE_REGIONS_CHECK_CLOSED_REGIONS:
>           // Doing nothing, in SPLIT_TABLE_REGION_CLOSE_PARENT_REGION,
>           // we will bring parent region online
>           break;
>         case SPLIT_TABLE_REGION_CLOSE_PARENT_REGION:
>   // Comments from HX: 
>   // OpenParentRegion() should not be called here as explained above.
>           openParentRegion(env);
>           break; {code}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)


[jira] [Commented] (HBASE-26864) SplitTableRegionProcedure calls openParentRegions() at a wrong state during rollback.

2022-03-27 Thread Hudson (Jira)


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

Hudson commented on HBASE-26864:


Results for branch branch-2
[build #500 on 
builds.a.o|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2/500/]: 
(x) *{color:red}-1 overall{color}*

details (if available):

(x) {color:red}-1 general checks{color}
-- For more information [see general 
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2/500/General_20Nightly_20Build_20Report/]




(x) {color:red}-1 jdk8 hadoop2 checks{color}
-- For more information [see jdk8 (hadoop2) 
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2/500/JDK8_20Nightly_20Build_20Report_20_28Hadoop2_29/]


(x) {color:red}-1 jdk8 hadoop3 checks{color}
-- For more information [see jdk8 (hadoop3) 
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2/500/JDK8_20Nightly_20Build_20Report_20_28Hadoop3_29/]


(x) {color:red}-1 jdk11 hadoop3 checks{color}
-- For more information [see jdk11 
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2/500/JDK11_20Nightly_20Build_20Report_20_28Hadoop3_29/]


(/) {color:green}+1 source release artifact{color}
-- See build output for details.


(/) {color:green}+1 client integration test{color}


> SplitTableRegionProcedure calls openParentRegions() at a wrong state during 
> rollback.
> -
>
> Key: HBASE-26864
> URL: https://issues.apache.org/jira/browse/HBASE-26864
> Project: HBase
>  Issue Type: Bug
>  Components: Region Assignment
>Affects Versions: 2.4.10
>Reporter: Huaxiang Sun
>Assignee: Huaxiang Sun
>Priority: Major
> Fix For: 2.5.0, 2.6.0, 3.0.0-alpha-3, 2.4.12
>
>
> Changed the issue title and description for the scope of the work. 
> there is a bug in handling Rollback in SplitTableRegionProcedure.
> [https://github.com/apache/hbase/blob/master/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/SplitTableRegionProcedure.java#L304]
> [https://github.com/apache/hbase/blob/master/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/SplitTableRegionProcedure.java#L385]
> {code:java}
> In the state machine:
>         case SPLIT_TABLE_REGION_CLOSE_PARENT_REGION:
>           addChildProcedure(createUnassignProcedures(env));
>   // Comments from HX:
>           // createUnassignProcedures() can throw out IOException. If this 
> happens,
>           // it wont reach state SPLIT_TABLE_REGIONS_CHECK_CLOSED_REGION and 
> no parent regions
>           // is closed as all created UnassignProcedures are rolled back. If 
> it rolls back with
>           // state SPLIT_TABLE_REGION_CLOSE_PARENT_REGION, no need to call 
> openParentRegion(),
>           // otherwise, it will result in OpenRegionProcedure for an already 
> open region.
>           
> setNextState(SplitTableRegionState.SPLIT_TABLE_REGIONS_CHECK_CLOSED_REGIONS);
>           break;
> In the rollback,
>         case SPLIT_TABLE_REGIONS_CHECK_CLOSED_REGIONS:
>           // Doing nothing, in SPLIT_TABLE_REGION_CLOSE_PARENT_REGION,
>           // we will bring parent region online
>           break;
>         case SPLIT_TABLE_REGION_CLOSE_PARENT_REGION:
>   // Comments from HX: 
>   // OpenParentRegion() should not be called here as explained above.
>           openParentRegion(env);
>           break; {code}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)


[jira] [Commented] (HBASE-26864) SplitTableRegionProcedure calls openParentRegions() at a wrong state during rollback.

2022-03-26 Thread Huaxiang Sun (Jira)


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

Huaxiang Sun commented on HBASE-26864:
--

Thanks [~apurtell].

> SplitTableRegionProcedure calls openParentRegions() at a wrong state during 
> rollback.
> -
>
> Key: HBASE-26864
> URL: https://issues.apache.org/jira/browse/HBASE-26864
> Project: HBase
>  Issue Type: Bug
>  Components: Region Assignment
>Affects Versions: 2.4.10
>Reporter: Huaxiang Sun
>Assignee: Huaxiang Sun
>Priority: Major
> Fix For: 2.5.0, 2.6.0, 3.0.0-alpha-3, 2.4.12
>
>
> Changed the issue title and description for the scope of the work. 
> there is a bug in handling Rollback in SplitTableRegionProcedure.
> [https://github.com/apache/hbase/blob/master/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/SplitTableRegionProcedure.java#L304]
> [https://github.com/apache/hbase/blob/master/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/SplitTableRegionProcedure.java#L385]
> {code:java}
> In the state machine:
>         case SPLIT_TABLE_REGION_CLOSE_PARENT_REGION:
>           addChildProcedure(createUnassignProcedures(env));
>   // Comments from HX:
>           // createUnassignProcedures() can throw out IOException. If this 
> happens,
>           // it wont reach state SPLIT_TABLE_REGIONS_CHECK_CLOSED_REGION and 
> no parent regions
>           // is closed as all created UnassignProcedures are rolled back. If 
> it rolls back with
>           // state SPLIT_TABLE_REGION_CLOSE_PARENT_REGION, no need to call 
> openParentRegion(),
>           // otherwise, it will result in OpenRegionProcedure for an already 
> open region.
>           
> setNextState(SplitTableRegionState.SPLIT_TABLE_REGIONS_CHECK_CLOSED_REGIONS);
>           break;
> In the rollback,
>         case SPLIT_TABLE_REGIONS_CHECK_CLOSED_REGIONS:
>           // Doing nothing, in SPLIT_TABLE_REGION_CLOSE_PARENT_REGION,
>           // we will bring parent region online
>           break;
>         case SPLIT_TABLE_REGION_CLOSE_PARENT_REGION:
>   // Comments from HX: 
>   // OpenParentRegion() should not be called here as explained above.
>           openParentRegion(env);
>           break; {code}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)


[jira] [Commented] (HBASE-26864) SplitTableRegionProcedure calls openParentRegions() at a wrong state during rollback.

2022-03-26 Thread Hudson (Jira)


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

Hudson commented on HBASE-26864:


Results for branch branch-2.4
[build #319 on 
builds.a.o|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2.4/319/]:
 (/) *{color:green}+1 overall{color}*

details (if available):

(/) {color:green}+1 general checks{color}
-- For more information [see general 
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2.4/319/General_20Nightly_20Build_20Report/]




(/) {color:green}+1 jdk8 hadoop2 checks{color}
-- For more information [see jdk8 (hadoop2) 
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2.4/319/JDK8_20Nightly_20Build_20Report_20_28Hadoop2_29/]


(/) {color:green}+1 jdk8 hadoop3 checks{color}
-- For more information [see jdk8 (hadoop3) 
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2.4/319/JDK8_20Nightly_20Build_20Report_20_28Hadoop3_29/]


(/) {color:green}+1 jdk11 hadoop3 checks{color}
-- For more information [see jdk11 
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2.4/319/JDK11_20Nightly_20Build_20Report_20_28Hadoop3_29/]


(/) {color:green}+1 source release artifact{color}
-- See build output for details.


(/) {color:green}+1 client integration test{color}


> SplitTableRegionProcedure calls openParentRegions() at a wrong state during 
> rollback.
> -
>
> Key: HBASE-26864
> URL: https://issues.apache.org/jira/browse/HBASE-26864
> Project: HBase
>  Issue Type: Bug
>  Components: Region Assignment
>Affects Versions: 2.4.10
>Reporter: Huaxiang Sun
>Assignee: Huaxiang Sun
>Priority: Major
> Fix For: 2.5.0, 2.6.0, 3.0.0-alpha-3, 2.4.12
>
>
> Changed the issue title and description for the scope of the work. 
> there is a bug in handling Rollback in SplitTableRegionProcedure.
> [https://github.com/apache/hbase/blob/master/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/SplitTableRegionProcedure.java#L304]
> [https://github.com/apache/hbase/blob/master/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/SplitTableRegionProcedure.java#L385]
> {code:java}
> In the state machine:
>         case SPLIT_TABLE_REGION_CLOSE_PARENT_REGION:
>           addChildProcedure(createUnassignProcedures(env));
>   // Comments from HX:
>           // createUnassignProcedures() can throw out IOException. If this 
> happens,
>           // it wont reach state SPLIT_TABLE_REGIONS_CHECK_CLOSED_REGION and 
> no parent regions
>           // is closed as all created UnassignProcedures are rolled back. If 
> it rolls back with
>           // state SPLIT_TABLE_REGION_CLOSE_PARENT_REGION, no need to call 
> openParentRegion(),
>           // otherwise, it will result in OpenRegionProcedure for an already 
> open region.
>           
> setNextState(SplitTableRegionState.SPLIT_TABLE_REGIONS_CHECK_CLOSED_REGIONS);
>           break;
> In the rollback,
>         case SPLIT_TABLE_REGIONS_CHECK_CLOSED_REGIONS:
>           // Doing nothing, in SPLIT_TABLE_REGION_CLOSE_PARENT_REGION,
>           // we will bring parent region online
>           break;
>         case SPLIT_TABLE_REGION_CLOSE_PARENT_REGION:
>   // Comments from HX: 
>   // OpenParentRegion() should not be called here as explained above.
>           openParentRegion(env);
>           break; {code}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)


[jira] [Commented] (HBASE-26864) SplitTableRegionProcedure calls openParentRegions() at a wrong state during rollback.

2022-03-26 Thread Andrew Kyle Purtell (Jira)


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

Andrew Kyle Purtell commented on HBASE-26864:
-

The PR had two approvals so I merged it and cherry picked it to branch-2.4, 
branch-2.5, and branch-2. One test required a minor fixup. The modified test 
passes after application to all target branches.

> SplitTableRegionProcedure calls openParentRegions() at a wrong state during 
> rollback.
> -
>
> Key: HBASE-26864
> URL: https://issues.apache.org/jira/browse/HBASE-26864
> Project: HBase
>  Issue Type: Bug
>  Components: Region Assignment
>Affects Versions: 2.4.10
>Reporter: Huaxiang Sun
>Assignee: Huaxiang Sun
>Priority: Major
> Fix For: 2.5.0, 2.6.0, 3.0.0-alpha-3, 2.4.12
>
>
> Changed the issue title and description for the scope of the work. 
> there is a bug in handling Rollback in SplitTableRegionProcedure.
> [https://github.com/apache/hbase/blob/master/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/SplitTableRegionProcedure.java#L304]
> [https://github.com/apache/hbase/blob/master/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/SplitTableRegionProcedure.java#L385]
> {code:java}
> In the state machine:
>         case SPLIT_TABLE_REGION_CLOSE_PARENT_REGION:
>           addChildProcedure(createUnassignProcedures(env));
>   // Comments from HX:
>           // createUnassignProcedures() can throw out IOException. If this 
> happens,
>           // it wont reach state SPLIT_TABLE_REGIONS_CHECK_CLOSED_REGION and 
> no parent regions
>           // is closed as all created UnassignProcedures are rolled back. If 
> it rolls back with
>           // state SPLIT_TABLE_REGION_CLOSE_PARENT_REGION, no need to call 
> openParentRegion(),
>           // otherwise, it will result in OpenRegionProcedure for an already 
> open region.
>           
> setNextState(SplitTableRegionState.SPLIT_TABLE_REGIONS_CHECK_CLOSED_REGIONS);
>           break;
> In the rollback,
>         case SPLIT_TABLE_REGIONS_CHECK_CLOSED_REGIONS:
>           // Doing nothing, in SPLIT_TABLE_REGION_CLOSE_PARENT_REGION,
>           // we will bring parent region online
>           break;
>         case SPLIT_TABLE_REGION_CLOSE_PARENT_REGION:
>   // Comments from HX: 
>   // OpenParentRegion() should not be called here as explained above.
>           openParentRegion(env);
>           break; {code}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)