You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ignite.apache.org by GitBox <gi...@apache.org> on 2019/12/30 14:00:06 UTC

[GitHub] [ignite] pavlukhin commented on a change in pull request #7215: IGNITE-12512: Compact log and drop log level down to info for cancelled queries

pavlukhin commented on a change in pull request #7215: IGNITE-12512: Compact log and drop log level down to info for cancelled queries
URL: https://github.com/apache/ignite/pull/7215#discussion_r361992782
 
 

 ##########
 File path: modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/twostep/GridMapQueryExecutor.java
 ##########
 @@ -668,7 +668,17 @@ private void sendError(ClusterNode node, long qryReqId, Throwable err) {
             GridQueryFailResponse msg = new GridQueryFailResponse(qryReqId, err);
 
             if (node.isLocal()) {
-                U.error(log, "Failed to run map query on local node.", err);
+                if (err instanceof QueryCancelledException) {
+                    String errMsg = "Failed to run cancelled map query on local node: [localNodeId="
+                        + node.id() + ", reqId=" + qryReqId + ']';
+
+                    if (log.isDebugEnabled())
+                        U.warn(log, errMsg, err);
 
 Review comment:
   Cannot realize why do we need to log at WARN level when debug is enabled? From the first glance looks strange.

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services