tustvold commented on code in PR #5369:
URL: https://github.com/apache/arrow-rs/pull/5369#discussion_r1480558407
##########
object_store/src/lib.rs:
##########
@@ -551,6 +551,15 @@ pub trait ObjectStore: std::fmt::Display + Send + Sync +
Debug + 'static {
/// writer fails or panics, you must call [ObjectStore::abort_multipart]
/// to clean up partially written data.
///
+ /// <div class="warning">
+ /// If there is point where a significant gap in time (> ~30s) can occur
between
+ /// successive write calls, it is recommended to await `flush()` first.
Review Comment:
```suggestion
/// It is recommended applications wait for any in-flight requests to
complete by calling `flush`, if
/// there may be a significant gap in time (> ~30s) before the next
write.
```
--
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]