-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Incremental snapshot support #183
Comments
If no one else is doing this, I'll work on a PR for this. |
I was under the impression that in order to get a full snapshot, you had to use ListChangedBlocks and iterate each snapshot to account for all the blocks. However, after playing with the API, I realized that ListSnapshotBlocks truly returns all the blocks for a snapshot and missing blocks appear to be just unused blocks and thus can just be empty. When I talked to a couple colleagues both at AWS and outside that are much more well versed than I at the API, they were also under the impression that this was the case. When I saw "Incremental snapshot support" I also assumed that this was the need. Now knowing that ListSnapshotBlocks does indeed return the complete set of snapshots blocks, I no longer need to implement the diffing which I assumed to be "incremental support". Not sure if that was what you mean by "Incremental snapshot support". |
That being said, I created https://github.com/forensicmatt/aws-snap-io to implement Read/Seek around Snapshots in a rudimentary way. Planning to use this for some projects I will soon publish so that volume/file system access based off of libraries that can handle Read/Seek traits can be used. |
Incremental snapshots as defined at
https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSSnapshots.html#how_snapshots_work
…On Tue, Nov 1, 2022 at 11:16 PM Matthew Seyer ***@***.***> wrote:
That being said, I created https://github.com/forensicmatt/aws-snap-io to
implement Read/Seek around Snapshots in a rudimentary way. Planning to use
this for some projects I will soon publish so that volume/file system
access based off of libraries that can handle Read/Seek traits can be used.
—
Reply to this email directly, view it on GitHub
<#183 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAAEWSNRME72C2PDEPCQVGLWGHMILANCNFSM55MOJNLQ>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Enhance to support incremental snapshots
The text was updated successfully, but these errors were encountered: