[ https://issues.apache.org/jira/browse/HBASE-20574?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16473339#comment-16473339 ]
Ted Yu commented on HBASE-20574: -------------------------------- It seems your description was w.r.t. rowLockContext.readWriteLock and prevRowLock. I just added a log before the return statement, with String of prevRowLock appended to the end. You can run TestPassCustomCellViaRegionObserver in IDE and place breakpoint inside the above if statement. > prevRowLock seems not working > ----------------------------- > > Key: HBASE-20574 > URL: https://issues.apache.org/jira/browse/HBASE-20574 > Project: HBase > Issue Type: Improvement > Components: regionserver > Reporter: Yi Zheng > Priority: Major > Original Estimate: 1h > Remaining Estimate: 1h > > In HRegion.java, getRowLockInternal using prevRowLock to check whether this > lock is obtained before, but it may not work as imagine. > Because this parameter passed as the last lock the thread obtained, and the > code always be like this: > {code:java} > for (byte[] rows: rowsToLock) { > rowLock = getRowLockInternal(row, prevRowLock); > if (rowLock != prevRowLock){ > acquiredRowLocks.add(rowLock); > prevRowLock = rowLock; > } > }{code} > prevRowLock will never equal to the rowLockContext's lock in > getRowLockInternal. I think this parameter is redundant. -- This message was sent by Atlassian JIRA (v7.6.3#76005)