Skip to content

stdweird/vsc-zk

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vsc-zk

zookeeper tools

vsc-zk contains scripts to build zookeeper trees and tools using zookeeper.

  • zkinitree builds a tree in zookeeper from a config file.

  • vsc-zkrsync uses zookeeper to distribute rsync across multiple nodes when rsyncing (large) (shared) filesystems.

    A large fraction of rsync calls is spent in gathering the required metadata, before performing the actual data synchronisation. This issue becomes worse in the case of an incremental rsync. Distributing the load across multiple processes may lead to a significant performance gain even though other bottlenecks, such as access to the metadata, can become apparent.

    The implementation uses zookeeper to coordinate the distribution of collecting and sync the data across many processes and/or nodes.

Installation of Zookeeper

A zookeeper server with proper ACLs to a base znode (zookeeper node) is required.

If no such server is available, installation can be performed as follows:

zkversion=3.4.5
basepath=`mktemp -d` # not permanent, choose other directory as desired

mkdir -p $basepath/zk/server/data
cd $basepath/zk/server
# use another mirror if needed
wget http://apache.belnet.be/zookeeper/zookeeper-$zkversion/zookeeper-$zkversion.tar.gz
tar xzf zookeeper-$zkversion.tar.gz

rm -f zkServer.sh
cat > zkServer.sh <<EOF
#!/bin/bash
./zookeeper-$zkversion/bin/zkServer.sh \$@
EOF
chmod +x zkServer.sh

cat > zk.conf <<EOF
tickTime=2000
dataDir=$PWD/data
clientPort=2181
EOF

Start zookeeper server

`./zkServer.sh start $PWD/zk.conf `

Note: You should have Java (JDK 6 or greater) installed to run Zookeeper. More information can be found in the Zookeeper documentation.

Dependencies

Vsc-zk requires:

  • ZooKeeper 3.4 or above, since it is using transactions.
  • Kazoo 1.3.1 or above (pip install kazoo)
  • recent version of vsc-base (>= 1.6.7)

Build the initial zookeeper tree

Use zkinitree to build an initial tree in zookeeper from a config file. It will create paths with specified ACLs.

An example config file can be found in the examples folder (zkinitree.cfg)

Usage of zkrsync

Example usage for N-parallelised rsync :

Start N+1 sources (first source client will be the Master)

zkrsync -d -S --servers <servers> -u <user> -p <pass> -r <sourcepath> --depth <depth> --session <session> --logfile <logfile>

Start N destinations:

zkrsync -d -D --servers <servers> -u <user> -p <pass> -r <destpath> --depth <depth> --session <session> --logfile <logfile>

Testing pathbuilding: add option --pathsonly

run zkrsync -H to see all options

If anything (zookeeper-related) goes wrong (no cleanup has been done)

  • kill all running source and destination clients (of that session)
  • wait about 20 seconds (ymmv), making sure all zookeeper connections have timed out
  • run exactly one source client, if the previous shutdown was not finished cleanly, zookeeper will recognise this and attempt a new cleanup before exiting.
  • Should the previous step fail to clean up, there might still be a running client. Make sure they are all killed
  • Start a new zkrsync process

Global remarks:

  • Always define a session to make sure you do not mix up different sessions
  • Make sure parameters path, dryrun and delete are all the same: These parameters are not checked (at this moment) and each client will use its own parameters. This can lead to inconsistencies (e.g., some paths runs with the dry-run option while others are effectively synced.)
  • Parameter depth is only used on pathbuilding, so the Source Master will always provide this.

About

vsc-zk contains scripts to build zookeeper trees and tools using zookeeper.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.9%
  • Shell 0.1%