ndimiduk commented on a change in pull request #754: HBASE-22978 : Online slow 
response log
URL: https://github.com/apache/hbase/pull/754#discussion_r378412754
 
 

 ##########
 File path: 
hbase-server/src/main/java/org/apache/hadoop/hbase/ipc/RpcServer.java
 ##########
 @@ -496,11 +515,44 @@ void logResponse(Message param, String methodName, 
String call, String tag,
           }
         }
       }
-      responseInfo.put("multi.gets", numGets);
-      responseInfo.put("multi.mutations", numMutations);
-      responseInfo.put("multi.servicecalls", numServiceCalls);
+      responseInfo.put(MULTI_GETS, numGets);
+      responseInfo.put(MULTI_MUTATIONS, numMutations);
+      responseInfo.put(MULTI_SERVICECALLS, numServiceCalls);
     }
+    final String tag = tooLarge ? "TooLarge" : "TooSlow";
     LOG.warn("(response" + tag + "): " + GSON.toJson(responseInfo));
+    if (!tooLarge && this.onlineSlowLogProvider != null
 
 Review comment:
   Since you're doing all this good work to get the `slowResponse` log support, 
we should consider following it with support for `largeResponse` messages as 
well? Seem like most of the hard stuff will be resolved by the first feature. 
Maybe follow-on JIRA.

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


With regards,
Apache Git Services

Reply via email to