file live sync daemon based on inotify/kqueue/bsm (Linux, FreeBSD), written in GNU C http://ut.mephi.ru/oss/clsync
Dmitry Yu Okunev 0de21bb469 shared object sync-handler support completed | 11 anni fa | |
---|---|---|
debian | 11 anni fa | |
examples | 11 anni fa | |
gentoo | 11 anni fa | |
man | 11 anni fa | |
.doxygen | 11 anni fa | |
.gitignore | 11 anni fa | |
.travis.sh | 11 anni fa | |
.travis.yml | 11 anni fa | |
CONTRIB | 11 anni fa | |
DEVELOPING | 11 anni fa | |
LICENSE | 11 anni fa | |
Makefile.am | 11 anni fa | |
NOTES | 11 anni fa | |
PROTOCOL | 11 anni fa | |
README.md | 11 anni fa | |
TODO | 11 anni fa | |
cluster.c | 11 anni fa | |
cluster.h | 11 anni fa | |
common.h | 11 anni fa | |
configuration.h | 11 anni fa | |
configure.ac | 11 anni fa | |
fileutils.c | 11 anni fa | |
fileutils.h | 11 anni fa | |
main.c | 11 anni fa | |
main.h | 11 anni fa | |
malloc.c | 11 anni fa | |
malloc.h | 11 anni fa | |
output.c | 11 anni fa | |
output.h | 11 anni fa | |
sync.c | 11 anni fa | |
sync.h | 11 anni fa |
Developing
Why "clsync"? The first name of the utility was "insync" (due to inotify), but then I suggested to use "fanotify" instead of "inotify" and utility was been renamed to "fasync". After that I started to intensively write the program. However I faced with some problems in "fanotify", so I was have to temporary fallback to "inotify", then I decided, that the best name is "Runtime Sync" or "Live Sync", but "rtsync" is a name of some corporation, and "lsync" is busy by "lsyncd" project ("https://github.com/axkibe/lsyncd"). So I called it "clsync", that should be interpreted as "lsync, but on c" due to "lsyncd" that written on "LUA" and may be used for the same purposes.
UPD: Also I was have to add somekind of clustering support. It's multicast notifing subsystem to prevent loops on bidirection syncing. So "clsync" also can be interpreted as "cluster live sync". ;)
This utility was been writted for two purposes:
To do failover cluster I've tried a lot of different solutions, like "simple rsync by cron", "glusterfs", "ocfs2 over drbd", "common mirrorable external storage", "incron + perl + rsync", "inosync", "lsyncd" and so on. Currently we are using "lsyncd", "ceph" and "ocfs2 over drbd". However all of this solutions doesn't arrange me, so I was have to write own utility for this purpose.
To do backups we also tried a lot of different solution, and again I was have to write own utility for this purpose.
The best known (for me) replacement for this utility is "lsyncd", however:
>½
on LUA. There a lot of problems connected with it,
for example:
>1GiB
) so often as ordinary files.Sorry, if I'm wrong. Let me know if it is, please :). "lsyncd" - is really good and useful utility, just it's not appropriate for us.
It's said, that fanotify is much better, than inotify. So I started to write this program with using of fanotify. However I encountered the problem, that fanotify was unable to catch some important events at the moment of writing the program, like "directory creation" or "file deletion". So I switched to "inotify", leaving the code for "fanotify" in the safety... So, don't use "fanotify" in this utility ;).
First of all, you should install dependencies to compile clsync. As you can see from GNUmakefile clsync depends only on "glib-2.0", so on debian-like systems you should execute something like "apt-get install libglib2.0-dev".
Next step is generating Makefile. To do that usually it's enought to execute "autoreconf -i && ./configure".
Next step is compiling. To compile usually it's enough to execute "make".
Next step in installing. To install usually it's enough to execute "su -c 'make install'".
Also, debian-users can use my repository to install the clsync: deb [arch=amd64] http://mirror.mephi.ru/debian-mephi/ unstable main
How to use is described in "man" ;). What is not described, you can ask me personally (see "Support").
Example of usage, that works on my PC is in directory "example". Just run "clsync-start.sh" and try to create/modify/delete files/dirs in "example/testdir/from". All modifications should appear (with some delay) in directory "example/testdir/to" ;)
First of all, recommended and not recommended options are notices in the manpage.
However let's describe 4 situations:
The simpliest usage (syncing from "/tmp/fromdir" to "/tmp/todir" with delay about 30 seconds):
clsync -R2 -d /dev/shm/clsync /tmp/fromdir $(which rsync) /dev/zero /tmp/todir
You're backing-up over very slow channel:
clsync -l backup -R -d /dev/shm/clsync -t600 -T3600 -B$[1024 * 1024 * 16] /home/user /home/clsync/bin/clsync-actionscript.sh /home/clsync/clsync-rules
This will minimize network traffic. And pthread-ing is removed due to rarely updating.
You're syncing ordinary web-server over 1Gbs channel:
clsync -l mirror -p -R -d /dev/shm/clsync /var/www /home/clsync/bin/clsync-actionscript.sh /home/clsync/clsync-rules
You're syncing only few files from huge file tree (with a great lot of excludes):
clsync -l mirror -p -R -d /dev/shm/clsync -I /home/user /home/clsync/bin/clsync-actionscript.sh /home/clsync/clsync-rules
I've started to implement support of bi-directional syncing with using multicast notifing of other nodes. However it became a long task, so it was suspended for next releases.
However let's solve next hypothetical problem. For example, you're using LXC and trying to replicate containers between two servers (to make failover and load balancing).
In this case you have to sync containers in both directions. However, if you just run clsync to sync containers to neighboring node on both of them, you'll get sync-loop [file-update on A causes file-update on B causes file-update on A causes ...].
Well, in this case I with my colleagues were using separate directories for
every node of cluster (e.g. "/srv/nodes/<NODE NAME>/containers/<CONTAINERS>
")
and syncing every directory only in one direction. That was failover with
load-balancing, but very unconvenient. So I've started to write code for
bi-directional syncing, however it's no time to complete it :(. So
Andrew Savchenko proposed to run one clsync-instance per container. And this's
really good solution. It's just need to start clsync-process when container
starts and stop the process when containers stops. The only problem is
split-brain, that can be solved two ways:
Example of the script is just a script that calls "find" on both sides to determine which side has the latest changes :)
May be problems with "configuring" or compilation. In this case just try next command:
gcc -std=gnu99 -D_FORTIFY_SOURCE=2 -DPARANOID -pthread -DHAVE_MHASH -pipe -Wall -ggdb3 --param ssp-buffer-size=4 -fstack-check -fstack-protector-all -Xlinker -zrelro -pthread $(pkg-config --cflags glib-2.0) $(pkg-config --libs glib-2.0) -lmhash *.c -o /tmp/clsync
To get support, you can contact with me this ways:
I started to write "DEVELOPING" and "PROTOCOL" files. You can look there if you wish. ;)
I'll be glad to receive code contribution :)
-- Dmitry Yu Okunev <dyokunev@ut.mephi.ru> 0x8E30679C