ycycse commented on code in PR #9746:
URL: https://github.com/apache/iotdb/pull/9746#discussion_r1186676458
##########
server/src/main/java/org/apache/iotdb/db/conf/IoTDBDescriptor.java:
##########
@@ -1057,6 +1057,16 @@ public void loadProperties(Properties properties) {
Boolean.parseBoolean(
properties.getProperty("quota_enable",
String.valueOf(conf.isQuotaEnable()))));
+ // the buffer for sort operator to calculate
+ conf.setSortBufferSize(
+ Long.parseLong(
+ properties
+ .getProperty("sort_buffer_size",
Long.toString(conf.getSortBufferSize()))
+ .trim()));
+
+ // tmp filePath for sort operator
+ conf.setSortTmpDir(properties.getProperty("sort_tmp_dir",
conf.getSortTmpDir()));
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]