This is an automated email from the ASF dual-hosted git repository. shuwenwei pushed a commit to branch fixSlowQueryThreshold-1.3 in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit 1d23e893919d4040030c5abbbeae2a3cb69123ac Author: shuwenwei <[email protected]> AuthorDate: Mon Nov 17 11:49:09 2025 +0800 fix slowQueryThreshold --- .../datanode/src/main/java/org/apache/iotdb/db/conf/IoTDBConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/conf/IoTDBConfig.java b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/conf/IoTDBConfig.java index 1a65d588aa5..6261371d4da 100644 --- a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/conf/IoTDBConfig.java +++ b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/conf/IoTDBConfig.java @@ -872,7 +872,7 @@ public class IoTDBConfig { private int thriftDefaultBufferSize = RpcUtils.THRIFT_DEFAULT_BUF_CAPACITY; /** time cost(ms) threshold for slow query. Unit: millisecond */ - private long slowQueryThreshold = 30000; + private long slowQueryThreshold = 10000; private int patternMatchingThreshold = 1000000;
