You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ja...@apache.org on 2021/06/08 10:29:25 UTC

[iotdb] branch LogQueryMemoryControl updated: change log

This is an automated email from the ASF dual-hosted git repository.

jackietien pushed a commit to branch LogQueryMemoryControl
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/LogQueryMemoryControl by this push:
     new 2189f1b  change log
2189f1b is described below

commit 2189f1bbae5bc0981732582e24a288ba6cc081c5
Author: JackieTien97 <Ja...@foxmail.com>
AuthorDate: Tue Jun 8 18:28:44 2021 +0800

    change log
---
 .../java/org/apache/iotdb/db/query/control/QueryResourceManager.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/src/main/java/org/apache/iotdb/db/query/control/QueryResourceManager.java b/server/src/main/java/org/apache/iotdb/db/query/control/QueryResourceManager.java
index 22bb96c..d958b34 100644
--- a/server/src/main/java/org/apache/iotdb/db/query/control/QueryResourceManager.java
+++ b/server/src/main/java/org/apache/iotdb/db/query/control/QueryResourceManager.java
@@ -264,7 +264,7 @@ public class QueryResourceManager {
     queryDebugMap.forEach((k, v) -> {
       // print query that has been running 5 minutes
       if (currentTime - v.startTime > 300_000) {
-        logger.info(
+        DEBUG_LOGGER.info(
             "query id {}, sql is {}, deduplicatedPathNum is {}, fetchSize is {}, used {} memory",
             k, v.sql, v.deduplicatedPathNum, v.fetchSize, v.estimatedMemoryUsage);
       }