danny0405 commented on code in PR #18860: URL: https://github.com/apache/hudi/pull/18860#discussion_r3426269856
########## hudi-client/hudi-client-common/src/main/java/org/apache/hudi/io/HoodieAppendHandle.java: ########## @@ -125,11 +127,18 @@ public class HoodieAppendHandle<T, I, K, O> extends HoodieWriteHandle<T, I, K, O protected long estimatedNumberOfBytesWritten; // Number of records that must be written to meet the max block size for a log block private long numberOfRecords = 0; - // Max block size to limit to for a log block - private final long maxBlockSize = config.getLogFileDataBlockMaxSize(); + // Configured block-size ceiling (hoodie.logfile.data.block.max.size). Surface for canWrite / + // log-file-group rolling code paths and operator-visible logging. + private final long maxBlockSize; Review Comment: guess this is blocked by #18843 -- 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]
