You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Be able to make backups for the DB on the specified path. View existing backups, delete and restore the necessary backup.
The necessary placeholders for this new functionality can be the following interface functions:
backup_create(db, path, id)
backup_restore(db, path, id)
backup_list(db, path, ids)
backup_drop(db, path, id)
Can you contribute to the implementation?
I can contribute
Is your feature request specific to a certain interface?
It applies to everything
Contact Details
No response
Is there an existing issue for this?
I have searched the existing issues
Code of Conduct
I agree to follow this project's Code of Conduct
The text was updated successfully, but these errors were encountered:
We only need one function - exporting a snapshot to a given path.
It will keep the interface much more concise than the Snapshots, Backups, and Checkpoints of RocksDB, but it may be hard to implement efficiently for third-party key-value stores.
One alternative is manually exporting from Snapshot using one or more Iterator-s. That will be much slower than the native approach. We may also research ways to expose the list of managed files, similar to GetLiveFiles, but specific to a certain snapshot.
Describe what you are looking for
Be able to make backups for the DB on the specified path. View existing backups, delete and restore the necessary backup.
The necessary placeholders for this new functionality can be the following interface functions:
Can you contribute to the implementation?
Is your feature request specific to a certain interface?
It applies to everything
Contact Details
No response
Is there an existing issue for this?
Code of Conduct
The text was updated successfully, but these errors were encountered: