You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by GitBox <gi...@apache.org> on 2021/11/22 13:53:15 UTC

[GitHub] [hbase] Apache9 commented on a change in pull request #3870: HBASE-26479: Print too slow/big scan's operation_id in region server log

Apache9 commented on a change in pull request #3870:
URL: https://github.com/apache/hbase/pull/3870#discussion_r754298130



##########
File path: hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java
##########
@@ -1290,6 +1292,12 @@ public String getScanDetailsWithRequest(ScanRequest request) {
       StringBuilder builder = new StringBuilder();
       builder.append("table: ").append(region.getRegionInfo().getTable().getNameAsString());
       builder.append(" region: ").append(region.getRegionInfo().getRegionNameAsString());
+      for (NameBytesPair pair : request.getScan().getAttributeList()) {
+        if (OperationWithAttributes.ID_ATRIBUTE.equals(pair.getName())) {

Review comment:
       ID_ATRIBUTE? Typo? Anyway, not your fault...




-- 
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: issues-unsubscribe@hbase.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org