Giter VIP home page Giter VIP logo

syncer's Introduction

syncer

Fast stateful file/disk data syncer.

Description

The main purpose of this utility is fast data synchronization between two hard drives: one is fast (SSD, SATA HDD), another is connected through slow USB interface. Target is to lower data amounts needed to be transferred.

This utility is stateful: it keeps precomputed data hashes in separate statefile and uses it to determine if we need to update block of data.

# sync from very fast SSD to slow USB connected HDD
% ./syncer -src /dev/ada0 -dst /dev/da0 -state state.bin
[%%%%%%]
# all blocks were transferred to da0

Now we have statefile containing cryptographic hashes of the blocks from source and copy of all read data in destination. Now if we run it again:

% ./syncer -src /dev/ada0 -dst /dev/da0 -state state.bin
[....%.]
# only one block was transferred to da0

Only one modified block was transferred during this session. We read all data from source again, compute hashes and understand what was updated since the last run. Statefile is updated at the end.

Utility parallelize hash computations among all found CPUs. It updates statefile atomically (saves data in temporary file and then renames it). You can configure the blocksize: shorter transfers but bigger statefile (it is kept in memory), or larger transfer and smaller statefile. All writes are sequential.

syncer is free software: see the file COPYING for copying conditions.

Installation

% go get github.com/dchest/blake2b
% go build
# syncer executable file should be in current directory

Statefile Format

SRC_SIZE || BLK_SIZE || HASH0 || HASH1 || ...

SRC_SIZE contains size of the source, when it was initially read. BLK_SIZE is the blocksize used. Both are 64-bit big-endian unsigned integers. If either size or blocksize differs, then syncer will deny using that statefile as a precaution. HASHx is BLAKE2b-512 hash output, 64 bytes.

syncer's People

Contributors

iat963 avatar nindalf avatar

Watchers

 avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.