-
Notifications
You must be signed in to change notification settings - Fork 168
Description
Code of Conduct
- I agree to follow this project's Code of Conduct
Search before asking
- I have searched in the issues and found no similar issues.
Describe the feature
Cloud object storage and its corresponding accelerated cache are widely used in storage-computing separation architecture.
But many of them may not implement the append-mode or the write amplification of the append-mode will be tricky.
Is it possible to consider supporting the way of independently storing each block as a data file at the same time?
Motivation
Cloud object storage and its corresponding accelerated cache are widely used in storage-computing separation architecture.
But many of them may not implement the append-mode or the write amplification of the append-mode will be tricky.
Describe the solution
The initially envisaged solution is to implement a non-append abstract storage type, such as: AbstractObjectStorageWriteHandler, AbstractObjectStorageReadHandler, and AbstractObjectDeleteHandler, and Implement the basic interface required by RSS in it.
The implementation of the read, write, and delete interfaces placed in the specific storage layer can be implemented by subclasses.
Additional context
No response
Are you willing to submit PR?
- Yes I am willing to submit a PR!