This is an automated email from the ASF dual-hosted git repository.
jackie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pinot.git
The following commit(s) were added to refs/heads/master by this push:
new 14f3246b55 Log warning when multi-stage engine planning throws
exception (#11595)
14f3246b55 is described below
commit 14f3246b5500a8009de999987f7913dddd910919
Author: Xiaotian (Jackie) Jiang <[email protected]>
AuthorDate: Thu Sep 14 18:39:33 2023 -0700
Log warning when multi-stage engine planning throws exception (#11595)
---
.../pinot/broker/requesthandler/MultiStageBrokerRequestHandler.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/pinot-broker/src/main/java/org/apache/pinot/broker/requesthandler/MultiStageBrokerRequestHandler.java
b/pinot-broker/src/main/java/org/apache/pinot/broker/requesthandler/MultiStageBrokerRequestHandler.java
index 620f81367b..2befc73535 100644
---
a/pinot-broker/src/main/java/org/apache/pinot/broker/requesthandler/MultiStageBrokerRequestHandler.java
+++
b/pinot-broker/src/main/java/org/apache/pinot/broker/requesthandler/MultiStageBrokerRequestHandler.java
@@ -138,7 +138,7 @@ public class MultiStageBrokerRequestHandler extends
BaseBrokerRequestHandler {
throw e;
} catch (RuntimeException e) {
String consolidatedMessage =
ExceptionUtils.consolidateExceptionMessages(e);
- LOGGER.info("Caught exception compiling request {}: {}, {}", requestId,
query, consolidatedMessage);
+ LOGGER.warn("Caught exception planning request {}: {}, {}", requestId,
query, consolidatedMessage);
_brokerMetrics.addMeteredGlobalValue(BrokerMeter.REQUEST_COMPILATION_EXCEPTIONS,
1);
requestContext.setErrorCode(QueryException.QUERY_PLANNING_ERROR_CODE);
return new BrokerResponseNative(
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]