We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94461b0 commit e243883Copy full SHA for e243883
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/conf/IoTDBDescriptor.java
@@ -2034,6 +2034,12 @@ public synchronized void loadHotModifiedProps(TrimProperties properties)
2034
properties.getProperty(
2035
"slow_query_threshold",
2036
ConfigurationFileUtils.getConfigurationDefaultValue("slow_query_threshold"))));
2037
+ // update query_cost_stat_window
2038
+ conf.setQueryCostStatWindow(
2039
+ Integer.parseInt(
2040
+ properties.getProperty(
2041
+ "query_cost_stat_window",
2042
+ ConfigurationFileUtils.getConfigurationDefaultValue("query_cost_stat_window"))));
2043
// update select into operation max buffer size
2044
conf.setIntoOperationBufferSizeInByte(
2045
Long.parseLong(
0 commit comments