[
https://issues.apache.org/jira/browse/HBASE-9324?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Jeffrey Zhong updated HBASE-9324:
---------------------------------
Resolution: Fixed
Fix Version/s: 0.95.2
0.96.0
Hadoop Flags: Reviewed
Status: Resolved (was: Patch Available)
Thanks [[email protected]] and [~mbertozzi] for reviews! I've integrated the
patch into 0.95 and trunk branch.
[~lhofhansl] Are you good to merge the same into 0.94 branch? Thanks.
> TestProcedureMember#testMemberCommitException, testSimpleRun &
> testMemberCommitCommsFailure are flaky on Suse OS
> ----------------------------------------------------------------------------------------------------------------
>
> Key: HBASE-9324
> URL: https://issues.apache.org/jira/browse/HBASE-9324
> Project: HBase
> Issue Type: Bug
> Components: test
> Reporter: Jeffrey Zhong
> Assignee: Jeffrey Zhong
> Fix For: 0.96.0, 0.95.2
>
> Attachments: hbase-9324.patch
>
>
> The failures are due to a race condition that sub procedure could finish
> before the sub procedure is added into internal map ProcedureMember#subprocs.
> Below is the related code:
> {code}
> future = this.pool.submit(subproc);
> synchronized (subprocs) {
> subprocs.put(procName, subproc);
> }
> {code}
> As you can see the above, that subproc could finish before
> {code}subprocs.put(procName, subproc);{code}. Therefore, the test will fail
> with the following error message:
> {code}
> procedure.ProcedureMember(189): Unexpected reached glabal barrier message for
> Sub-Procedure 'some op'
> {code}
--
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