Open Xuanwo opened 11 hours ago
AWS S3 supports append object for directory-buckets now.
https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-buckets-objects-append.html
OpenDAL already has the append API, we just need to support append mode for s3.
append
Users can append to object via:
let writer = op.writer_with(path).append(true).await?; writer.write(bs).await?; writer.close().await?;
No response
NOTE: AWS S3 can append on an existing object created by PutObject or multipart uploads. That's different from other services.
Feature Description
AWS S3 supports append object for directory-buckets now.
https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-buckets-objects-append.html
Problem and Solution
OpenDAL already has the
append
API, we just need to supportappend
mode for s3.Users can append to object via:
Additional Context
No response
Are you willing to contribute to the development of this feature?