tree: d5bcf7fa50566ee3bda60f883f7efcffbae50b10 [path history] [tgz]
  1. src/
  2. pom.xml
  3. README.md
recipes/rabbitmq-consumer-group/README.md

Near real time rsync replicated file system

Quickdemo

  • This demo starts 3 instances with id's as localhost_12001, localhost_12002, localhost_12003
  • Each instance stores its files under /tmp//filestore
  • localhost_12001 is designated as the master and localhost_12002 and localhost_12003 are the slaves.
  • Files written to master are replicated to the slaves automatically. In this demo, a.txt and b.txt are written to /tmp/localhost_12001/filestore and it gets replicated to other folders.
  • When the master is stopped, localhost_12002 is promoted to master.
  • The other slave localhost_12003 stops replicating from localhost_12001 and starts replicating from new master localhost_12002
  • Files written to new master localhost_12002 are replicated to localhost_12003
  • In the end state of this quick demo, localhost_12002 is the master and localhost_12003 is the slave. Manually create files under /tmp/localhost_12002/filestore and see that appears in /tmp/localhost_12003/filestore
  • Ignore the interrupted exceptions on the console :-).
git clone https://git-wip-us.apache.org/repos/asf/helix.git
cd recipes/rsync-replicated-file-system/
mvn clean install package -DskipTests
cd target/rsync-replicated-file-system-pkg/bin
./quickdemo

See rsync_replicated_file_store for more information