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 support append mode for s3.
Users can append to object via:
let writer = op.writer_with(path).append(true).await?;
writer.write(bs).await?;
writer.close().await?;
Additional Context
No response
Are you willing to contribute to the development of this feature?
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
appendAPI, we just need to supportappendmode for s3.Users can append to object via:
Additional Context
No response
Are you willing to contribute to the development of this feature?