Skip to content

io-developer/py-blockdiff

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Blockdiff

Fast fixed-size snapshot diff and writer / incremental backup. One pass for input read and on-fly diff + output

Install

Required python 3.6 or higher

Usage

Suppose exists two snaphots A and B with the same size. You have to determine which blocks are changed from A to B.

Lets output first level to .tar with 128 bytes per block resolution. Block-map we will save to 'files/level1.blockmap':

blockdiff-cli -f files/1.txt -m tar -d files/level1.tar -bs 128 --output-map files/level1.blockmap --verbose 1
>
> +++++++++++++++++++++
>
> Total stats:   100.0%      0.0 MB/s

Now we can compare snapshot B with A and write to 'files/level2.tar' only changed blocks. Updated block-map will be saved to 'files/.blockmap'

blockdiff-cli -f files/2.txt -m tar -d files/level2.tar -bs 128 --input-map files/level1.blockmap --output-map files/.blockmap --verbose 1
>
> .........+.........+.
> 
> Total stats:   100.0%      0.0 MB/s

And so on with short syntax in quiet mode:

blockdiff-cli -f files/3.txt -m tar -d files/level3.tar -bs 128 -bm files/.blockmap
> 
> Total stats:   100.0%      0.0 MB/s

About

Fast fixed-size snapshot diff and incremental backup

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages