|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.zookeeper.ZooKeeper
public class ZooKeeper
This is the main class of ZooKeeper client library. To use a ZooKeeper service, an application must first instantiate an object of ZooKeeper class. All the iterations will be done by calling the methods of ZooKeeper class.
Once a connection to a server is established, a session ID is assigned to the client. The client will send heart beats to the server periodically to keep the session valid.
The application can call ZooKeeper APIs through a client as long as the session ID of the client remains valid.
If for some reason, the client fails to send heart beats to the server for a prolonged period of time (exceeding the sessionTimeout value, for instance), the server will expire the session, and the session ID will become invalid. The client object will no longer be usable. To make ZooKeeper API calls, the application must create a new client object.
If the ZooKeeper server the client currently connects to fails or otherwise does not respond, the client will automatically try to connect to another server before its session ID expires. If successful, the application can continue to use the client.
Some successful ZooKeeper API calls can leave watches on the "data nodes" in the ZooKeeper server. Other successful ZooKeeper API calls can trigger those watches. Once a watch is triggered, an event will be delivered to the client which left the watch at the first place. Each watch can be triggered only once. Thus, up to one event will be delivered to a client for every watch it leaves.
A client needs an object of a class implementing Watcher interface for processing the events delivered to the client. When a client drops current connection and re-connects to a server, all the existing watches are considered as being triggered but the undelivered events are lost. To emulate this, the client will generate a special event to tell the event handler a connection has been dropped. This special event has type EventNone and state sKeeperStateDisconnected.
Nested Class Summary | |
---|---|
static class |
ZooKeeper.States
|
Constructor Summary | |
---|---|
ZooKeeper(String host,
int sessionTimeout,
Watcher watcher)
To create a client(ZooKeeper) object, the application needs to pass a string containing a comma separated list of host:port pairs, each corresponding to a ZooKeeper server. |
|
ZooKeeper(String host,
int sessionTimeout,
Watcher watcher,
long sessionId,
byte[] sessionPasswd)
To create a client(ZooKeeper) object, the application needs to pass a string containing a comma separated list of host:port pairs, each corresponding to a ZooKeeper server. |
Method Summary | |
---|---|
void |
addAuthInfo(String scheme,
byte[] auth)
|
void |
close()
Close this client object. |
String |
create(String path,
byte[] data,
List<ACL> acl,
CreateMode createMode)
Create a node with the given path. |
void |
create(String path,
byte[] data,
List<ACL> acl,
CreateMode createMode,
AsyncCallback.StringCallback cb,
Object ctx)
The Asynchronous version of create. |
void |
delete(String path,
int version)
Delete the node with the given path. |
void |
delete(String path,
int version,
AsyncCallback.VoidCallback cb,
Object ctx)
The Asynchronous version of delete. |
Stat |
exists(String path,
boolean watch)
Return the stat of the node of the given path. |
void |
exists(String path,
boolean watch,
AsyncCallback.StatCallback cb,
Object ctx)
The Asynchronous version of exists. |
Stat |
exists(String path,
Watcher watcher)
Return the stat of the node of the given path. |
void |
exists(String path,
Watcher watcher,
AsyncCallback.StatCallback cb,
Object ctx)
The Asynchronous version of exists. |
List<ACL> |
getACL(String path,
Stat stat)
Return the ACL and stat of the node of the given path. |
void |
getACL(String path,
Stat stat,
AsyncCallback.ACLCallback cb,
Object ctx)
The Asynchronous version of getACL. |
List<String> |
getChildren(String path,
boolean watch)
Return the list of the children of the node of the given path. |
void |
getChildren(String path,
boolean watch,
AsyncCallback.ChildrenCallback cb,
Object ctx)
The Asynchronous version of getChildren. |
List<String> |
getChildren(String path,
Watcher watcher)
Return the list of the children of the node of the given path. |
void |
getChildren(String path,
Watcher watcher,
AsyncCallback.ChildrenCallback cb,
Object ctx)
The Asynchronous version of getChildren. |
void |
getData(String path,
boolean watch,
AsyncCallback.DataCallback cb,
Object ctx)
The Asynchronous version of getData. |
byte[] |
getData(String path,
boolean watch,
Stat stat)
Return the data and the stat of the node of the given path. |
void |
getData(String path,
Watcher watcher,
AsyncCallback.DataCallback cb,
Object ctx)
The Asynchronous version of getData. |
byte[] |
getData(String path,
Watcher watcher,
Stat stat)
Return the data and the stat of the node of the given path. |
long |
getSessionId()
The session id for this ZooKeeper client instance. |
byte[] |
getSessionPasswd()
The session password for this ZooKeeper client instance. |
ZooKeeper.States |
getState()
|
void |
register(Watcher watcher)
|
Stat |
setACL(String path,
List<ACL> acl,
int version)
Set the ACL for the node of the given path if such a node exists and the given version matches the version of the node. |
void |
setACL(String path,
List<ACL> acl,
int version,
AsyncCallback.StatCallback cb,
Object ctx)
The Asynchronous version of setACL. |
Stat |
setData(String path,
byte[] data,
int version)
Set the data for the node of the given path if such a node exists and the given version matches the version of the node (if the given version is -1, it matches any node's versions). |
void |
setData(String path,
byte[] data,
int version,
AsyncCallback.StatCallback cb,
Object ctx)
The Asynchronous version of setData. |
void |
sync(String path,
AsyncCallback.VoidCallback cb,
Object ctx)
Asynchronous sync. |
static void |
validatePath(String path)
Validate the provided znode path string |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ZooKeeper(String host, int sessionTimeout, Watcher watcher) throws IOException
The client object will pick an arbitrary server and try to connect to it. If failed, it will try the next one in the list, until a connection is established, or all the servers have been tried.
host
- comma separated host:port pairs, each corresponding to a zk
server. e.g. "127.0.0.1:3000,127.0.0.1:3001,127.0.0.1:3002"sessionTimeout
- session timeout in millisecondswatcher
- a watcher object which will be notified of state changes, may
also be notified for node events
IOException
- in cases of network failurepublic ZooKeeper(String host, int sessionTimeout, Watcher watcher, long sessionId, byte[] sessionPasswd) throws IOException
The client object will pick an arbitrary server and try to connect to it. If failed, it will try the next one in the list, until a connection is established, or all the servers have been tried.
Use getSessionId()
and getSessionPasswd()
on an established
client connection, these values must be passed as sessionId and
sessionPasswd respectively if reconnecting. Otherwise, if not
reconnecting, use the other constructor which does not require these
parameters.
host
- comma separated host:port pairs, each corresponding to a zk
server. e.g. "127.0.0.1:3000,127.0.0.1:3001,127.0.0.1:3002"sessionTimeout
- session timeout in millisecondswatcher
- a watcher object which will be notified of state changes, may
also be notified for node eventssessionId
- specific session id to use if reconnectingsessionPasswd
- password for this session
IOException
- in cases of network failureMethod Detail |
---|
public long getSessionId()
public byte[] getSessionPasswd()
public void addAuthInfo(String scheme, byte[] auth)
public void register(Watcher watcher)
public void close() throws InterruptedException
InterruptedException
IOException
InterruptedException
public String create(String path, byte[] data, List<ACL> acl, CreateMode createMode) throws KeeperException, InterruptedException
The flags argument specifies whether the created node will be ephemeral or not.
An ephemeral node will be removed by the ZooKeeper automatically when the session associated with the creation of the node expires.
The flags argument can also specify to create a sequential node. The actual path name of a sequential node will be the given path plus a suffix "_i" where i is the current sequential number of the node. Once such a node is created, the sequential number will be incremented by one.
If a node with the same actual path already exists in the ZooKeeper, a KeeperException with error code KeeperException.NodeExists will be thrown. Note that since a different actual path is used for each invocation of creating sequential node with the same path argument, the call will never throw "file exists" KeeperException.
If the parent node does not exist in the ZooKeeper, a KeeperException with error code KeeperException.NoNode will be thrown.
An ephemeral node cannot have children. If the parent node of the given path is ephemeral, a KeeperException with error code KeeperException.NoChildrenForEphemerals will be thrown.
This operation, if successful, will trigger all the watches left on the node of the given path by exists and getData API calls, and the watches left on the parent node by getChildren API calls.
If a node is created successfully, the ZooKeeper server will trigger the watches on the path left by exists calls, and the watches on the parent of the node by getChildren calls.
The maximum allowable size of the data array is 1 MB (1,048,576 bytes). Arrays larger than this will cause a KeeperExecption to be thrown.
path
- the path for the nodedata
- the initial data for the nodeacl
- the acl for the nodeflags
- specifying whether the node to be created is ephemeral
and/or sequential
KeeperException
- if the server returns a non-zero error code
KeeperException.InvalidACLException
- if the ACL is invalid
InterruptedException
- if the transaction is interrupted
IllegalArgumentException
- if an invalid path is specifiedpublic static void validatePath(String path) throws IllegalArgumentException
path
- znode path string
IllegalArgumentException
- if the path is invalidpublic void create(String path, byte[] data, List<ACL> acl, CreateMode createMode, AsyncCallback.StringCallback cb, Object ctx)
#create(String, byte[], List, CreateMode)
public void delete(String path, int version) throws InterruptedException, KeeperException
A KeeperException with error code KeeperException.NoNode will be thrown if the nodes does not exist.
A KeeperException with error code KeeperException.BadVersion will be thrown if the given version does not match the node's version.
A KeeperException with error code KeeperException.NotEmpty will be thrown if the node has children.
This operation, if successful, will trigger all the watches on the node of the given path left by exists API calls, and the watches on the parent node left by getChildren API calls.
path
- the path of the node to be deleted.version
- the expected node version.
InterruptedException
- IF the server transaction is interrupted
KeeperException
- If the server signals an error with a non-zero return code.
IllegalArgumentException
- if an invalid path is specifiedpublic void delete(String path, int version, AsyncCallback.VoidCallback cb, Object ctx)
delete(String, int)
public Stat exists(String path, Watcher watcher) throws KeeperException, InterruptedException
If the watch is non-null and the call is successful (no exception is thrown), a watch will be left on the node with the given path. The watch will be triggered by a successful operation that creates/delete the node or sets the data on the node.
path
- the node pathwatcher
- explicit watcher
KeeperException
- If the server signals an error
InterruptedException
- If the server transaction is interrupted.
IllegalArgumentException
- if an invalid path is specifiedpublic Stat exists(String path, boolean watch) throws KeeperException, InterruptedException
If the watch is true and the call is successful (no exception is thrown), a watch will be left on the node with the given path. The watch will be triggered by a successful operation that creates/delete the node or sets the data on the node.
path
- the node pathwatch
- whether need to watch this node
KeeperException
- If the server signals an error
InterruptedException
- If the server transaction is interrupted.public void exists(String path, Watcher watcher, AsyncCallback.StatCallback cb, Object ctx)
exists(String, boolean)
public void exists(String path, boolean watch, AsyncCallback.StatCallback cb, Object ctx)
exists(String, boolean)
public byte[] getData(String path, Watcher watcher, Stat stat) throws KeeperException, InterruptedException
If the watch is non-null and the call is successful (no exception is thrown), a watch will be left on the node with the given path. The watch will be triggered by a successful operation that sets data on the node, or deletes the node.
A KeeperException with error code KeeperException.NoNode will be thrown if no node with the given path exists.
path
- the given pathwatcher
- explicit watcherstat
- the stat of the node
KeeperException
- If the server signals an error with a non-zero error code
InterruptedException
- If the server transaction is interrupted.
IllegalArgumentException
- if an invalid path is specifiedpublic byte[] getData(String path, boolean watch, Stat stat) throws KeeperException, InterruptedException
If the watch is true and the call is successful (no exception is thrown), a watch will be left on the node with the given path. The watch will be triggered by a successful operation that sets data on the node, or deletes the node.
A KeeperException with error code KeeperException.NoNode will be thrown if no node with the given path exists.
path
- the given pathwatch
- whether need to watch this nodestat
- the stat of the node
KeeperException
- If the server signals an error with a non-zero error code
InterruptedException
- If the server transaction is interrupted.public void getData(String path, Watcher watcher, AsyncCallback.DataCallback cb, Object ctx)
getData(String, Watcher, Stat)
public void getData(String path, boolean watch, AsyncCallback.DataCallback cb, Object ctx)
getData(String, boolean, Stat)
public Stat setData(String path, byte[] data, int version) throws KeeperException, InterruptedException
This operation, if successful, will trigger all the watches on the node of the given path left by getData calls.
A KeeperException with error code KeeperException.NoNode will be thrown if no node with the given path exists.
A KeeperException with error code KeeperException.BadVersion will be thrown if the given version does not match the node's version.
The maximum allowable size of the data array is 1 MB (1,048,576 bytes). Arrays larger than this will cause a KeeperExecption to be thrown.
path
- the path of the nodedata
- the data to setversion
- the expected matching version
InterruptedException
- If the server transaction is interrupted.
KeeperException
- If the server signals an error with a non-zero error code.
IllegalArgumentException
- if an invalid path is specifiedpublic void setData(String path, byte[] data, int version, AsyncCallback.StatCallback cb, Object ctx)
setData(String, byte[], int)
public List<ACL> getACL(String path, Stat stat) throws KeeperException, InterruptedException
A KeeperException with error code KeeperException.NoNode will be thrown if no node with the given path exists.
path
- the given path for the nodestat
- the stat of the node will be copied to this parameter.
InterruptedException
- If the server transaction is interrupted.
KeeperException
- If the server signals an error with a non-zero error code.
IllegalArgumentException
- if an invalid path is specifiedpublic void getACL(String path, Stat stat, AsyncCallback.ACLCallback cb, Object ctx)
getACL(String, Stat)
public Stat setACL(String path, List<ACL> acl, int version) throws KeeperException, InterruptedException
A KeeperException with error code KeeperException.NoNode will be thrown if no node with the given path exists.
A KeeperException with error code KeeperException.BadVersion will be thrown if the given version does not match the node's version.
path
- acl
- version
-
InterruptedException
- If the server transaction is interrupted.
KeeperException
- If the server signals an error with a non-zero error code.
KeeperException.InvalidACLException
- If the acl is invalide.
IllegalArgumentException
- if an invalid path is specifiedpublic void setACL(String path, List<ACL> acl, int version, AsyncCallback.StatCallback cb, Object ctx)
setACL(String, List, int)
public List<String> getChildren(String path, Watcher watcher) throws KeeperException, InterruptedException
If the watch is non-null and the call is successful (no exception is thrown), a watch will be left on the node with the given path. The watch willbe triggered by a successful operation that deletes the node of the given path or creates/delete a child under the node.
The list of children returned is not sorted and no guarantee is provided as to its natural or lexical order.
A KeeperException with error code KeeperException.NoNode will be thrown if no node with the given path exists.
path
- watcher
- explicit watcher
InterruptedException
- If the server transaction is interrupted.
KeeperException
- If the server signals an error with a non-zero error code.
IllegalArgumentException
- if an invalid path is specifiedpublic List<String> getChildren(String path, boolean watch) throws KeeperException, InterruptedException
If the watch is true and the call is successful (no exception is thrown), a watch will be left on the node with the given path. The watch willbe triggered by a successful operation that deletes the node of the given path or creates/delete a child under the node.
The list of children returned is not sorted and no guarantee is provided as to its natural or lexical order.
A KeeperException with error code KeeperException.NoNode will be thrown if no node with the given path exists.
path
- watch
-
InterruptedException
- If the server transaction is interrupted.
KeeperException
- If the server signals an error with a non-zero error code.public void getChildren(String path, Watcher watcher, AsyncCallback.ChildrenCallback cb, Object ctx)
getChildren(String, Watcher)
public void getChildren(String path, boolean watch, AsyncCallback.ChildrenCallback cb, Object ctx)
getChildren(String, boolean)
public void sync(String path, AsyncCallback.VoidCallback cb, Object ctx)
path
- cb
- a handler for the callbackctx
- context to be provided to the callback
IllegalArgumentException
- if an invalid path is specifiedpublic ZooKeeper.States getState()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |