Support append mode for write in fs service #1508
-
It seems the Feel free to correct me if there is anything I miss. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Appending data to local file systems and cloud storage works differently. Therefore, OpenDAL provides a Writer abstraction to handle both scenarios. You can find more details about it at https://opendal.databend.rs/opendal/struct.Writer.html For more detials of fs's implementation, please take a look at: https://github.com/datafuselabs/opendal/blob/main/src/services/fs/writer.rs |
Beta Was this translation helpful? Give feedback.
-
At the moment, OpenDAL does not have the capability to append data to an existing file. |
Beta Was this translation helpful? Give feedback.
Appending data to local file systems and cloud storage works differently. Therefore, OpenDAL provides a Writer abstraction to handle both scenarios. You can find more details about it at https://opendal.databend.rs/opendal/struct.Writer.html
For more detials of fs's implementation, please take a look at: https://github.com/datafuselabs/opendal/blob/main/src/services/fs/writer.rs