HTHou commented on code in PR #14329:
URL: https://github.com/apache/iotdb/pull/14329#discussion_r1877596236
##########
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/conf/IoTDBDescriptor.java:
##########
@@ -334,6 +334,15 @@ public void loadProperties(TrimProperties properties)
throws BadNodeUrlException
.map(String::trim)
.orElse(Double.toString(conf.getRejectProportion())));
+ final double walBufferQueueProportion =
+ Double.parseDouble(
+ Optional.ofNullable(
+ properties.getProperty(
+ "wal_buffer_queue_proportion",
+ Double.toString(conf.getWalBufferQueueProportion())))
+ .map(String::trim)
+ .orElse(Double.toString(conf.getWalBufferQueueProportion())));
+
Review Comment:
There are over 200 lines to be removed. I thinks we can do it in other PR.
--
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]