Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

zookeeper

Package Overview
Dependencies
Maintainers
0
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

zookeeper

apache zookeeper client for node.js (zookeeper async API >= 3.3.1)

  • 3.3.3-0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5.9K
increased by87.52%
Maintainers
0
Weekly downloads
 
Created
Source

NAME

node-zookeeper - A Node interface to Hadoop Zookeeper based on the native C-client API for Zookeeper

INSTALL

npm install zookeeper

SYNOPSIS

var ZK = require ("zookeeper").ZooKeeper;
var zk = new ZK();
zk.init ({connect:"localhost:2181", timeout:200000, debug_level:ZK.ZOO_LOG_LEVEL_WARNING, host_order_deterministic:false});
zk.on (ZK.on_connected, function (zkk) {
    console.log ("zk session established, id=%s", zkk.client_id);
    zkk.a_create ("/node.js1", "some value", ZK.ZOO_SEQUENCE | ZK.ZOO_EPHEMERAL, function (rc, error, path)  {
        if (rc != 0)
            console.log ("zk node create result: %d, error: '%s', path=%s", rc, error, path);
        else {
            console.log ("created zk node %s", path);
            process.nextTick(function () {
                zkk.close ();
            });
        }
    });
});

This prints the following:

zk session established, id=12c03eda65800b8
created zk node /node.js10000001001

See illustration of all other ZK methods in tests/zk_test_chain.js

DESCRIPTION

This is an attempt to expose Hadoop Zookeeper to node.js client applications. The bindings are implemented in C++ for V8 and depend on zk C api library.

API Reference

The following API calls closely follow ZK C API call. So, consult with ZK Reference for details.

The following apply for these apis:

  • for inputs:
    • path can be any object that will toString() appropriately
    • data can be any object that will toString() appropriately or a Buffer object
    • flags can be any object that will ToInt32() appropriately
    • version can be any object that will ToInt32() appropriately
    • watch can be any object that will ToBoolean() appropriately
  • for outputs:
    • path is a string
    • data is either a Buffer (default), or a string (this is controlled by data_as_buffer = true/false)
    • children is an array of strings
    • rc is an int (error codes from zk api)
    • error is a string (error string from zk api)
    • type is an int event type (from zk api)
    • state is an int (state when the watcher fired from zk api)
    • stat is an object with the following attributes:
      • long czxid // created zxid
      • long mzxid // last modified zxid
      • long ctime // created
      • long mtime // last modified
      • int version // version
      • int cversion // child version
      • int aversion // acl version
      • string ephemeralOwner // owner session id if ephemeral, 0 otw
      • int dataLength //length of the data in the node
      • int numChildren //number of children of this node
      • long pzxid // last modified children
  • callbacks
    • path_cb : function ( rc, error, path )
    • stat_cb : function ( rc, error, stat )
    • data_cb : function ( rc, error, stat, data )
    • child_cb : function ( rc, error, children )
    • child2_cb : function ( rc, error, children, stat )
    • void_cb : function ( rc, error )
    • watch_cb : function ( type, state, path )

Regular async APIs:

  • init ( object options ), valid options: connect, timeout, debug_level, host_order_deterministic, data_as_buffer
  • close ( )
  • a_create ( path, data, flags, path_cb )
  • a_exists ( path, watch, stat_cb )
  • a_get ( path, watch, data_cb )
  • a_get_children ( path, watch, child_cb )
  • a_get_children2 ( path, watch, child2_cb )
  • a_set ( path, data, version, stat_cb )
  • a_delete_ ( path, version, void_cb )
    • (trailing _ is added to avoid conflict with reserved word _delete_ since zk_promise.js strips off prefix a_ from all operations)

APIs based on watchers (watcher is a forward-looking subscription to changes on the node in context):

  • aw_exists ( path, watch_cb, stat_cb )
  • aw_get ( path, watch_cb, data_cb )
  • aw_get_children ( path, watch_cb, child_cb )
  • aw_get_children2 ( path, watch_cb, child2_cb )

Session state machine is well described in Zookeeper docs, i.e. here

Random notes on implementation

  • Zookeeper C API library comes in 2 flavours: single-threaded and multi-threaded. For node.js, single-threaded library provides the most sense since all events coming from ZK responses have to be dispatched to the main JS thread.
  • The C++ code uses the same logging facility that ZK C API uses internally. Hence zk_log.h file checked into this project. The file is considered ZK internal and is not installed into /usr/local/include
  • Multiple simultaneous ZK connections are supported and tested
  • All ZK constants are exposed as read-only properties of the ZooKeeper function, like ZK.ZOO_EPHEMERAL
  • All ZK API methods including watchers are supported.
  • lib/zk_promise.js is an optional module that makes use of the very cool node-promise library; see tests/zk_test_shootout_promise.js for illustration of how it can simplify coding. Isn't the following looking nicer?
zk_r.on_connected(). then ( function (zkk){ console.log ("reader on_connected: zk=%j", zkk); return zkk.create ("/node.js2", "some value", ZK.ZOO_SEQUENCE | ZK.ZOO_EPHEMERAL); } ).then ( function (path) { zk_r.context.path = path; console.log ("node created path=%s", path); return zk_r.w_get (path, function (type, state, path_w) { // this is a watcher console.log ("watcher for path %s triggered", path_w); deferred_watcher_triggered.resolve (path_w); } ); } ).then ( function (stat_and_value) { // this is the response from w_get above console.log ("get node: stat=%j, value=%s", stat_and_value[0], stat_and_value[1]); deferred_watcher_ready.resolve (zk_r.context.path); return deferred_watcher_triggered; } ).then ( function () { console.log ("zk_reader is finished"); process.nextTick( function () { zk_r.close (); }); } );
  • Also compare test/zk_test_watcher.js with test/zk_test_watcher_promise.js
  • tests/zk_master.js and tests/zk_worker.js illustrate launching multiple ZK client workers using webworker library. You have to install it first with "npm install webworker"

Dependencies:

Note: these are handled internally by the build unless you desire to build and link against a specific version etc.

  • zookeeper version 3.3.x
  • zookeeper native client should be installed in your system: cd $ZK_HOME/src/c && configure && make && make install this puts .h files under /usr/local/include/c-client-src/ and lib files in /usr/local/lib/libzookeeper_ The build process is described in details here (has been tested with and without --without-syncapi)

Build

  • node-waf configure build [--zookeeper zookeeper-version|prefix-path|'']

  • node demo1.js

  • cd tests && node zk_test_XYZ.js

  • note: node_compat.h (ala node-png) handles Buffer changes from .2 to .3+, so you should be able to build against older node versions.

  • note: if you wish to build with a specific version of zookeeper C lib, use --zookeeper VERSION (will download/build it) or --zookeeper PATH (if you have downloaded it and possibly made changes etc.)

  • note: if you wish to link against an existing zookeeper lib: use --zoookeeper '', and put your lib/headers it in /usr/local/ (or edit the wscript appropriately)

  • note: if you are building on osx and you get a compile error regarding "mmacosx-version-min", you may need to edit the wscript and remove it (anyone with the answer please explain/fix if possible).

  • note: if you are building on a platform for which the options are not working, please add a specific elif for that platform and create a pull request.

Limitations

  • no zookeeper ACL support
  • no support for authentication
  • tests are not standalone, must run a zk server (easiest if you run at localhost:2181, if not you must pass the connect string to the tests)
  • only asynchronous ZK methods are implemented. Hey, this is node.js ... no sync calls are allowed

BUGS & ISSUES

  • The lib will segfault if you try to use a ZooKeeper intance after the on_closed event is delivered (possibly as a result of session timeout etc.) YOU MAY NOT re-use the closed ZooKeeper instance. You should allocate a new one and initialize it as a completely new client. Any and all watchers from your first instance are lost, though they may fire (before the on_close) see below.
  • Any established watches may/will be fired once each when/if your client is expired by the ZK server, the input arguments are observed to be: type=-1, state=1, path="". Care should be taken to handle this differently than a "real" watch event if that matters to your application.
  • Otherwise, it just works!

IMPORTANT CHANGES

Data coming out of ZooKeepr (in callbacks) will now default to being Buffer objects. The main ZK handle now has a boolean attribute called 'data_as_buffer', which defaults to true. If you are storing strings only, as was only allowed in the initial implementation, or you wish to have data in callbacks arrive as strings, you add 'data_as_buffer:false' to the init options, or add 'zk.data_as_buffer = false;' before using the handle. The behavior defaults to Buffer objects because this aligns more closely with ZooKeeper itself which uses byte arrays. They are interchangable on input, if the input is a Buffer it will be used directly, otherwise the toString() of the input is used (this will work with utf8 data as well) regardless of mode.

With the new Buffer changes in the 0.3+ and 0.4+ branches, these will be internal 'SlowBuffer' objects, and you should use Buffer.isBuffer if you are checking the type, as 'instanceof Buffer' will return false.

SEE ALSO

Acknowledgments

  • node-promise by kriszyp is a fantastic tool imho. I wish it was distributed as a module so that I could easily 'require' it rather then resort to distribution by copy.
  • node-webworker by pgriess is used to spawn multiple ZK workers in one of the tests.

LICENSE

See LICENSE-MIT.txt file in the top level folder.

AUTHOR

Yuri Finkelstein (yurif2003 at yahoo dot com)

Keywords

FAQs

Package last updated on 11 Apr 2011

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc