tustvold commented on code in PR #561:
URL:
https://github.com/apache/arrow-rs-object-store/pull/561#discussion_r2758265618
##########
src/aws/builder.rs:
##########
@@ -189,6 +199,11 @@ pub struct AmazonS3Builder {
request_payer: ConfigValue<bool>,
/// The [`HttpConnector`] to use
http_connector: Option<Arc<dyn HttpConnector>>,
+ /// Threshold (bytes) above which copy uses multipart copy. If not set,
all copies are performed
+ /// as single requests.
+ multipart_copy_threshold: Option<ConfigValue<u64>>,
+ /// Preferred multipart copy part size (bytes). If not set, defaults to 5
GiB.
Review Comment:
FWIW https://github.com/apache/arrow-rs-object-store/issues/121
--
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]