shizy818 commented on code in PR #14616:
URL: https://github.com/apache/iotdb/pull/14616#discussion_r1914299740


##########
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/conf/IoTDBDescriptor.java:
##########
@@ -2065,6 +2065,15 @@ public synchronized void 
loadHotModifiedProps(TrimProperties properties)
       loadQuerySampleThroughput(properties);
       // update trusted_uri_pattern
       loadTrustedUriPattern(properties);
+
+      // tvlist_sort_threshold
+      conf.setTVListSortThreshold(
+          Integer.parseInt(
+              Optional.ofNullable(
+                      properties.getProperty(
+                          "tvlist_sort_threshold", 
String.valueOf(conf.getTvListSortThreshold())))
+                  .map(String::trim)
+                  .orElse(String.valueOf(conf.getTvListSortThreshold()))));

Review Comment:
   Done



-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to