Muon commented on code in PR #562:
URL:
https://github.com/apache/arrow-rs-object-store/pull/562#discussion_r2590951433
##########
src/aws/builder.rs:
##########
@@ -1185,8 +1193,20 @@ impl AmazonS3Builder {
S3EncryptionHeaders::default()
};
+ let multipart_copy_threshold = self
+ .multipart_copy_threshold
+ .map(|val| val.get())
+ .transpose()?
+ .unwrap_or(MAX_SINGLE_REQUEST_COPY_SIZE);
+ let multipart_copy_part_size = self
+ .multipart_copy_part_size
+ .map(|val| val.get())
+ .transpose()?
+ .unwrap_or(MAX_SINGLE_REQUEST_COPY_SIZE);
Review Comment:
Clamp to 5GiB because that's the documented maximum?
--
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]