-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement S3 data storage. #7
Comments
It's quite a challenge. I won't do it for now. For all people who want to work with S3 as a primary storage, you can use s3fs-fuse to mount s3 in a directory. |
Would it be more straightforward if the implementation used the volume storage as scratch space but then pushed to s3 as part of finishing the upload? |
Hybrid-s3 storage is released in 0.6.0. S3 storage without storing files locally will come later. Leaving this feature open until new storage is released. |
For an S3 only implementation, would not be S3 Multipart upload the solution? |
Hi, @genofire. Indeed, that's exactly it. But the tricky part here is that minimum size for a chunk is 5Mb. For some systems it just don't work. That's why I implemented hybrid storage first. Hybrid storage doesn't have such a restriction. |
Hi, @genofire. Yes, I guess it may work. I need to try it. I would have no time in 1-2 weeks. If you feel that you might take this over, please do. If you don't, I'll take it as soon as I have more time. Thank you for pointing this out. |
Create S3 Data storage to be able to store files on S3.
The main idea is to create many file chunks 5MB each and concatenate them after upload is finished.
The text was updated successfully, but these errors were encountered: