0.02
No commit activity in last 3 years
No release in over 3 years
ZK client for EventMachine-based (async) applications
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 0.5.3
~> 1.0.0.beta.4
~> 1.6.2
 Project Readme

ZKEventMachine

ZKEventMachine is a ZK client implementation for EventMachine for interacting with the Apache ZooKeeper server. It provides the core functionality of ZK, but in a single-threaded context with a callback-based API. It is tested on JRuby, and MRI versions 1.8.7 and 1.9.2. Rubinius 1.2.x should work, but support should be considered experimental at this point (if you find a bug, please report it, and I'll do my best to fix it).

Quickstart

Installation via rubygems is recommended, as there are a few dependencies.

$ gem install zk-eventmachine

This will install ZK and slyphon-zookeeper (as a side note, for experimentation in irb, it's probably easier to use ZK due to its synchronous nature).

Connecting

Connections are easy to set up, and take the same host string argument that the ZK and Zookeeper use.

# a connection to a single server:

zkem = ZK::ZKEventMachine::Client.new("localhost:2181")

zkem.connect do
  # the client is connected when this block is called
end

Note: at the moment, the chroot-style syntax is iffy and needs some attention.

Closing a connection should be done in the same style, by passing a block to the close method.

zkem.close do
  # connection is closed when this block is called
end

Due to the way that the underlying slyphon-zookeeper code is written, it is important that you not stop the reactor until the on_close callback has fired (especially when using epoll on linux). Strange things may happen if you do not wait for the connection to be closed!

Callbacks

ZKEventMachine was written so that every call can handle two callback styles. The first is node-js style:

zkem.get('/') do |exception,value,stat|
end

In this style, the first value returned to the block is an Exception object if an error occured, or nil if the operation was successful. The rest of the arguments are the same as they would be returned from the synchronous API.

The second style uses EventMachine::Deferrable (with a few slight modifications), and allows you to add callbacks and errbacks (in something approximating Twisted Python style).

d = zkem.get('/')

d.callback do |value,stat|
  # success
end

d.errback do |exc|
  # failure
end

The callback/errbacks return self, so you can chain calls:

zkem.get('/').callback do |value,stat|

end.errback do |exc|

end

Also provided is an ensure_that method that will add the given block to both callback and errback chains:

# the goalposts |*| below are so that the block can take any number of
# args, and ignore them

zkem.get('/').ensure_that do |*|
  # clean up 
end

Example Usage

Contributing

Credits

ZKEventMachine is developed and maintained by Jonathan Simms and Topper Bowers. The HP Development Corp. has graciously open sourced this project under the MIT License, and special thanks go to Snapfish who allowed us to develop this project.