bharathv commented on a change in pull request #2574:
URL: https://github.com/apache/hbase/pull/2574#discussion_r509864069



##########
File path: 
hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
##########
@@ -8748,6 +8863,11 @@ public void startRegionOperation(Operation op) throws 
IOException {
       throw new 
NotServingRegionException(getRegionInfo().getRegionNameAsString() + " is 
closing");
     }
     lock(lock.readLock());
+    // Update regionLockHolders ONLY for any startRegionOperation call that is 
invoked from an RPC handler
+    Thread thisThread = Thread.currentThread();
+    if (isInterruptableOp) {
+      regionLockHolders.put(thisThread.hashCode(), thisThread);

Review comment:
       +1




----------------------------------------------------------------
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:
us...@infra.apache.org


Reply via email to