Reidddddd commented on a change in pull request #2574:
URL: https://github.com/apache/hbase/pull/2574#discussion_r513897937
##########
File path:
hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
##########
@@ -8730,12 +8868,22 @@ public void startRegionOperation() throws IOException {
@Override
public void startRegionOperation(Operation op) throws IOException {
+ boolean isInterruptableOp = false;
switch (op) {
- case GET: // read operations
+ case GET: // interruptible read operations
case SCAN:
+ isInterruptableOp = true;
Review comment:
Only one q left, read operations are interruptible, but i couldn't find
new interruption handling in read path. Do we just leave it as it is? (just for
confirmation)
----------------------------------------------------------------
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]