apurtell commented on a change in pull request #2574:
URL: https://github.com/apache/hbase/pull/2574#discussion_r510319462
##########
File path:
hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
##########
@@ -6588,8 +6677,10 @@ protected RowLock getRowLockInternal(byte[] row, boolean
readLock, final RowLock
success = true;
return result;
} catch (InterruptedException ie) {
- LOG.warn("Thread interrupted waiting for lock on row: {}, in region {}",
rowKey,
- getRegionInfo().getRegionNameAsString());
+ if (LOG.isDebugEnabled()) {
+ LOG.debug("Thread interrupted waiting for lock on row: {}, in region
{}", rowKey,
Review comment:
This was an existing case where the client would get back an IIOE. I
didn't change it so the current semantics are preserved. It can be changed to
use throwIfInterrupted
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]