gortiz commented on code in PR #16007: URL: https://github.com/apache/pinot/pull/16007#discussion_r2131995129
########## pinot-broker/src/main/java/org/apache/pinot/broker/requesthandler/MultiStageBrokerRequestHandler.java: ########## @@ -200,6 +216,19 @@ protected BrokerResponse handleRequest(long requestId, String query, SqlNodeAndO } } + private void summarizeQuery(long requestId, BrokerResponse brokerResponse) { + ObjectNode stats = brokerResponse instanceof BrokerResponseNativeV2 + ? ((BrokerResponseNativeV2) brokerResponse).getStageStats() + : JsonNodeFactory.instance.objectNode(); + if (brokerResponse.getExceptions().isEmpty()) { + LOGGER.debug(MSE_STATS_MARKER, "Request {} finished in {}ms. Errors: {}. Stats: {}", Review Comment: I've modified this code slightly. Please take a new look. Now we indicate whether there was an error or not and the logging level can be configured with a query option -- 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: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org