richardantal commented on code in PR #7692:
URL: https://github.com/apache/hbase/pull/7692#discussion_r2797570453


##########
hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionUtils.java:
##########
@@ -205,7 +205,7 @@ static void resetController(HBaseRpcController controller, 
long timeoutNs, int p
       controller.setCallTimeout(
         (int) Math.min(Integer.MAX_VALUE, 
TimeUnit.NANOSECONDS.toMillis(timeoutNs)));
     }
-    controller.setPriority(priority);
+    controller.setPriority(priority, tableName);

Review Comment:
   Thank you for this change.
   I think we could make this work from the Phoenix side with adding a function 
to 
https://github.com/apache/phoenix/blob/master/phoenix-core-client/src/main/java/org/apache/hadoop/hbase/ipc/controller/MetadataRpcController.java#L70
   ```
     public void setPriority(int priority, final TableName tn) {
       setPriority(tn);
     }
   ```
   
   



-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to