gaborgsomogyi commented on code in PR #28112:
URL: https://github.com/apache/flink/pull/28112#discussion_r3217216017
##########
flink-filesystems/flink-s3-fs-native/src/main/java/org/apache/flink/fs/s3native/NativeS3InputStream.java:
##########
@@ -86,8 +95,9 @@ public NativeS3InputStream(
this.bucketName = bucketName;
this.key = key;
this.contentLength = contentLength;
- this.readBufferSize = Math.min(readBufferSize, MAX_READ_BUFFER_SIZE);
- this.position = 0;
+ this.readBufferSize = readBufferSize;
Review Comment:
The incoming `readBufferSize` is already capped but we've agreed not to cap,
right?
--
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]