mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2026-04-25 13:26:00 +03:00
[GH-ISSUE #367] Asynchronous writes #189
Labels
No labels
bug
bug
dataloss
duplicate
enhancement
feature request
help wanted
invalid
need info
performance
pull-request
question
question
testing
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/s3fs-fuse#189
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @zubryan on GitHub (Feb 27, 2016).
Original GitHub issue: https://github.com/s3fs-fuse/s3fs-fuse/issues/367
Hi
I need a feature like this:
After putting files in cache dir, asynchronously send files to S3, then I don't need to wait.
Is it possible? or it has already had this feature?
Thanks,
Bryan
@ggtakec commented on GitHub (Mar 6, 2016):
s3fs could not transfer a object asynchronously as normal, but you can specify ensure_diskfree option and it may help you.
This option means "sets MB to ensure disk free space".
So you set large value for this, s3fs probabry transfer a object asynchronously.
You can load latest codes from master branch for ensure_diskfree option.
Please try to use and set it.
Regards,
@gaul commented on GitHub (Feb 2, 2019):
@zubryan this is called a write-behind cache. Generally network file systems do not implement this because there is no way to tell the application when the transfer fails, e.g., during network disconnection.