
Security News
Astral Launches pyx: A Python-Native Package Registry
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
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).
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).
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!
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
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.
FAQs
Unknown package
We found that zk-eventmachine demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.