@InterfaceAudience.Public public class ZooKeeper extends Object implements AutoCloseable
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.
The ZooKeeper API methods are either synchronous or asynchronous. Synchronous methods blocks until the server has responded. Asynchronous methods just queue the request for sending and return immediately. They take a callback object that will be executed either on successful execution of the request or on error with an appropriate return code (rc) indicating the error.
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 the 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 EventType None and KeeperState Disconnected.
Modifier and Type | Class and Description |
---|---|
static class |
ZooKeeper.States |
class |
ZooKeeper.WatchRegistration
Register a watcher for a particular path.
|
Modifier and Type | Field and Description |
---|---|
protected ClientCnxn |
cnxn |
protected HostProvider |
hostProvider |
static String |
SECURE_CLIENT
Deprecated.
Use
ZKClientConfig.SECURE_CLIENT
instead. |
protected org.apache.zookeeper.ZooKeeper.ZKWatchManager |
watchManager |
static String |
ZOOKEEPER_CLIENT_CNXN_SOCKET
Deprecated.
Use
ZKClientConfig.ZOOKEEPER_CLIENT_CNXN_SOCKET
instead. |
Constructor and Description |
---|
ZooKeeper(String connectString,
int sessionTimeout,
Watcher watcher)
To create a ZooKeeper client object, the application needs to pass a
connection string containing a comma separated list of host:port pairs,
each corresponding to a ZooKeeper server.
|
ZooKeeper(String connectString,
int sessionTimeout,
Watcher watcher,
boolean canBeReadOnly)
To create a ZooKeeper client object, the application needs to pass a
connection string containing a comma separated list of host:port pairs,
each corresponding to a ZooKeeper server.
|
ZooKeeper(String connectString,
int sessionTimeout,
Watcher watcher,
boolean canBeReadOnly,
HostProvider aHostProvider)
To create a ZooKeeper client object, the application needs to pass a
connection string containing a comma separated list of host:port pairs,
each corresponding to a ZooKeeper server.
|
ZooKeeper(String connectString,
int sessionTimeout,
Watcher watcher,
boolean canBeReadOnly,
HostProvider aHostProvider,
ZKClientConfig clientConfig)
To create a ZooKeeper client object, the application needs to pass a
connection string containing a comma separated list of host:port pairs,
each corresponding to a ZooKeeper server.
|
ZooKeeper(String connectString,
int sessionTimeout,
Watcher watcher,
boolean canBeReadOnly,
ZKClientConfig conf)
To create a ZooKeeper client object, the application needs to pass a
connection string containing a comma separated list of host:port pairs,
each corresponding to a ZooKeeper server.
|
ZooKeeper(String connectString,
int sessionTimeout,
Watcher watcher,
long sessionId,
byte[] sessionPasswd)
To create a ZooKeeper client object, the application needs to pass a
connection string containing a comma separated list of host:port pairs,
each corresponding to a ZooKeeper server.
|
ZooKeeper(String connectString,
int sessionTimeout,
Watcher watcher,
long sessionId,
byte[] sessionPasswd,
boolean canBeReadOnly)
To create a ZooKeeper client object, the application needs to pass a
connection string containing a comma separated list of host:port pairs,
each corresponding to a ZooKeeper server.
|
ZooKeeper(String connectString,
int sessionTimeout,
Watcher watcher,
long sessionId,
byte[] sessionPasswd,
boolean canBeReadOnly,
HostProvider aHostProvider)
To create a ZooKeeper client object, the application needs to pass a
connection string containing a comma separated list of host:port pairs,
each corresponding to a ZooKeeper server.
|
ZooKeeper(String connectString,
int sessionTimeout,
Watcher watcher,
long sessionId,
byte[] sessionPasswd,
boolean canBeReadOnly,
HostProvider aHostProvider,
ZKClientConfig clientConfig)
To create a ZooKeeper client object, the application needs to pass a
connection string containing a comma separated list of host:port pairs,
each corresponding to a ZooKeeper server.
|
ZooKeeper(String connectString,
int sessionTimeout,
Watcher watcher,
ZKClientConfig conf)
To create a ZooKeeper client object, the application needs to pass a
connection string containing a comma separated list of host:port pairs,
each corresponding to a ZooKeeper server.
|
Modifier and Type | Method and Description |
---|---|
void |
addAuthInfo(String scheme,
byte[] auth)
Add the specified scheme:auth information to this connection.
|
void |
close()
Close this client object.
|
boolean |
close(int waitForShutdownTimeoutMs)
Close this client object as the
close() method. |
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.Create2Callback cb,
Object ctx)
The asynchronous version of create.
|
void |
create(String path,
byte[] data,
List<ACL> acl,
CreateMode createMode,
AsyncCallback.Create2Callback cb,
Object ctx,
long ttl)
The asynchronous version of create with ttl.
|
void |
create(String path,
byte[] data,
List<ACL> acl,
CreateMode createMode,
AsyncCallback.StringCallback cb,
Object ctx)
The asynchronous version of create.
|
String |
create(String path,
byte[] data,
List<ACL> acl,
CreateMode createMode,
Stat stat)
Create a node with the given path and returns the Stat of that node.
|
String |
create(String path,
byte[] data,
List<ACL> acl,
CreateMode createMode,
Stat stat,
long ttl)
same as
create(String, byte[], List, CreateMode, Stat) but
allows for specifying a TTL when mode is CreateMode.PERSISTENT_WITH_TTL
or CreateMode.PERSISTENT_SEQUENTIAL_WITH_TTL . |
protected ClientCnxn |
createConnection(String chrootPath,
HostProvider hostProvider,
int sessionTimeout,
ZooKeeper zooKeeper,
ClientWatchManager watcher,
org.apache.zookeeper.ClientCnxnSocket clientCnxnSocket,
boolean canBeReadOnly) |
protected org.apache.zookeeper.ZooKeeper.ZKWatchManager |
defaultWatchManager() |
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.Children2Callback cb,
Object ctx)
The asynchronous version of getChildren.
|
void |
getChildren(String path,
boolean watch,
AsyncCallback.ChildrenCallback cb,
Object ctx)
The asynchronous version of getChildren.
|
List<String> |
getChildren(String path,
boolean watch,
Stat stat)
For the given znode path return the stat and children list.
|
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.Children2Callback cb,
Object ctx)
The asynchronous version of getChildren.
|
void |
getChildren(String path,
Watcher watcher,
AsyncCallback.ChildrenCallback cb,
Object ctx)
The asynchronous version of getChildren.
|
List<String> |
getChildren(String path,
Watcher watcher,
Stat stat)
For the given znode path return the stat and children list.
|
protected List<String> |
getChildWatches() |
ZKClientConfig |
getClientConfig() |
void |
getConfig(boolean watch,
AsyncCallback.DataCallback cb,
Object ctx)
The Asynchronous version of getConfig.
|
byte[] |
getConfig(boolean watch,
Stat stat)
Return the last committed configuration (as known to the server to which the client is connected)
and the stat of the configuration.
|
void |
getConfig(Watcher watcher,
AsyncCallback.DataCallback cb,
Object ctx)
The asynchronous version of getConfig.
|
byte[] |
getConfig(Watcher watcher,
Stat stat)
Return the last committed configuration (as known to the server to which the client is connected)
and the stat of the configuration.
|
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.
|
protected List<String> |
getDataWatches() |
protected List<String> |
getExistWatches() |
ZooKeeperSaslClient |
getSaslClient() |
long |
getSessionId()
The session id for this ZooKeeper client instance.
|
byte[] |
getSessionPasswd()
The session password for this ZooKeeper client instance.
|
int |
getSessionTimeout()
The negotiated session timeout for this ZooKeeper client instance.
|
ZooKeeper.States |
getState() |
Testable |
getTestable() |
protected void |
internalReconfig(List<String> joiningServers,
List<String> leavingServers,
List<String> newMembers,
long fromConfig,
AsyncCallback.DataCallback cb,
Object ctx) |
protected byte[] |
internalReconfig(List<String> joiningServers,
List<String> leavingServers,
List<String> newMembers,
long fromConfig,
Stat stat) |
protected void |
internalReconfig(String joiningServers,
String leavingServers,
String newMembers,
long fromConfig,
AsyncCallback.DataCallback cb,
Object ctx) |
protected byte[] |
internalReconfig(String joiningServers,
String leavingServers,
String newMembers,
long fromConfig,
Stat stat) |
List<OpResult> |
multi(Iterable<Op> ops)
Executes multiple ZooKeeper operations or none of them.
|
void |
multi(Iterable<Op> ops,
AsyncCallback.MultiCallback cb,
Object ctx)
The asynchronous version of multi.
|
protected List<OpResult> |
multiInternal(MultiTransactionRecord request) |
protected void |
multiInternal(MultiTransactionRecord request,
AsyncCallback.MultiCallback cb,
Object ctx) |
void |
reconfig(List<String> joiningServers,
List<String> leavingServers,
List<String> newMembers,
long fromConfig,
AsyncCallback.DataCallback cb,
Object ctx)
Deprecated.
instead use the reconfigure() methods instead in
ZooKeeperAdmin |
byte[] |
reconfig(List<String> joiningServers,
List<String> leavingServers,
List<String> newMembers,
long fromConfig,
Stat stat)
Deprecated.
instead use the reconfigure() methods instead in
ZooKeeperAdmin |
void |
reconfig(String joiningServers,
String leavingServers,
String newMembers,
long fromConfig,
AsyncCallback.DataCallback cb,
Object ctx)
Deprecated.
instead use the reconfigure() methods instead in
ZooKeeperAdmin |
byte[] |
reconfig(String joiningServers,
String leavingServers,
String newMembers,
long fromConfig,
Stat stat)
Deprecated.
instead use the reconfigure() methods instead in
ZooKeeperAdmin |
void |
register(Watcher watcher)
Specify the default watcher for the connection (overrides the one
specified during construction).
|
void |
removeAllWatches(String path,
Watcher.WatcherType watcherType,
boolean local)
For the given znode path, removes all the registered watchers of given
watcherType.
|
void |
removeAllWatches(String path,
Watcher.WatcherType watcherType,
boolean local,
AsyncCallback.VoidCallback cb,
Object ctx)
The asynchronous version of removeAllWatches.
|
void |
removeWatches(String path,
Watcher watcher,
Watcher.WatcherType watcherType,
boolean local)
For the given znode path, removes the specified watcher of given
watcherType.
|
void |
removeWatches(String path,
Watcher watcher,
Watcher.WatcherType watcherType,
boolean local,
AsyncCallback.VoidCallback cb,
Object ctx)
The asynchronous version of removeWatches.
|
Stat |
setACL(String path,
List<ACL> acl,
int aclVersion)
Set the ACL for the node of the given path if such a node exists and the
given aclVersion matches the acl 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.
|
protected SocketAddress |
testableLocalSocketAddress()
Returns the local address to which the socket is bound.
|
protected SocketAddress |
testableRemoteSocketAddress()
Returns the address to which the socket is connected.
|
protected boolean |
testableWaitForShutdown(int wait)
Wait up to wait milliseconds for the underlying threads to shutdown.
|
String |
toString()
String representation of this ZooKeeper client.
|
Transaction |
transaction()
A Transaction is a thin wrapper on the
multi(java.lang.Iterable<org.apache.zookeeper.Op>) method
which provides a builder object that can be used to construct
and commit an atomic set of operations. |
void |
updateServerList(String connectString)
This function allows a client to update the connection string by providing
a new comma separated list of host:port pairs, each corresponding to a
ZooKeeper server.
|
@Deprecated public static final String ZOOKEEPER_CLIENT_CNXN_SOCKET
ZKClientConfig.ZOOKEEPER_CLIENT_CNXN_SOCKET
instead.@Deprecated public static final String SECURE_CLIENT
ZKClientConfig.SECURE_CLIENT
instead.protected final ClientCnxn cnxn
protected final HostProvider hostProvider
protected final org.apache.zookeeper.ZooKeeper.ZKWatchManager watchManager
public ZooKeeper(String connectString, int sessionTimeout, Watcher watcher) throws IOException
Session establishment is asynchronous. This constructor will initiate connection to the server and return immediately - potentially (usually) before the session is fully established. The watcher argument specifies the watcher that will be notified of any changes in state. This notification can come at any point before or after the constructor call has returned.
The instantiated ZooKeeper client object will pick an arbitrary server from the connectString and attempt to connect to it. If establishment of the connection fails, another server in the connect string will be tried (the order is non-deterministic, as we random shuffle the list), until a connection is established. The client will continue attempts until the session is explicitly closed.
Added in 3.2.0: An optional "chroot" suffix may also be appended to the connection string. This will run the client commands while interpreting all paths relative to this root (similar to the unix chroot command).
connectString
- 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" If
the optional chroot suffix is used the example would look
like: "127.0.0.1:3000,127.0.0.1:3001,127.0.0.1:3002/app/a"
where the client would be rooted at "/app/a" and all paths
would be relative to this root - ie getting/setting/etc...
"/foo/bar" would result in operations being run on
"/app/a/foo/bar" (from the server perspective).sessionTimeout
- session timeout in millisecondswatcher
- a watcher object which will be notified of state changes, may
also be notified for node eventsIOException
- in cases of network failureIllegalArgumentException
- if an invalid chroot path is specifiedpublic ZooKeeper(String connectString, int sessionTimeout, Watcher watcher, ZKClientConfig conf) throws IOException
Session establishment is asynchronous. This constructor will initiate connection to the server and return immediately - potentially (usually) before the session is fully established. The watcher argument specifies the watcher that will be notified of any changes in state. This notification can come at any point before or after the constructor call has returned.
The instantiated ZooKeeper client object will pick an arbitrary server from the connectString and attempt to connect to it. If establishment of the connection fails, another server in the connect string will be tried (the order is non-deterministic, as we random shuffle the list), until a connection is established. The client will continue attempts until the session is explicitly closed.
Added in 3.2.0: An optional "chroot" suffix may also be appended to the connection string. This will run the client commands while interpreting all paths relative to this root (similar to the unix chroot command).
connectString
- 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" If
the optional chroot suffix is used the example would look
like: "127.0.0.1:3000,127.0.0.1:3001,127.0.0.1:3002/app/a"
where the client would be rooted at "/app/a" and all paths
would be relative to this root - ie getting/setting/etc...
"/foo/bar" would result in operations being run on
"/app/a/foo/bar" (from the server perspective).sessionTimeout
- session timeout in millisecondswatcher
- a watcher object which will be notified of state changes, may
also be notified for node eventsconf
- (added in 3.5.2) passing this conf object gives each client the flexibility of
configuring properties differently compared to other instancesIOException
- in cases of network failureIllegalArgumentException
- if an invalid chroot path is specifiedpublic ZooKeeper(String connectString, int sessionTimeout, Watcher watcher, boolean canBeReadOnly, HostProvider aHostProvider) throws IOException
Session establishment is asynchronous. This constructor will initiate connection to the server and return immediately - potentially (usually) before the session is fully established. The watcher argument specifies the watcher that will be notified of any changes in state. This notification can come at any point before or after the constructor call has returned.
The instantiated ZooKeeper client object will pick an arbitrary server from the connectString and attempt to connect to it. If establishment of the connection fails, another server in the connect string will be tried (the order is non-deterministic, as we random shuffle the list), until a connection is established. The client will continue attempts until the session is explicitly closed.
Added in 3.2.0: An optional "chroot" suffix may also be appended to the connection string. This will run the client commands while interpreting all paths relative to this root (similar to the unix chroot command).
For backward compatibility, there is another version
ZooKeeper(String, int, Watcher, boolean)
which uses
default StaticHostProvider
connectString
- 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" If
the optional chroot suffix is used the example would look
like: "127.0.0.1:3000,127.0.0.1:3001,127.0.0.1:3002/app/a"
where the client would be rooted at "/app/a" and all paths
would be relative to this root - ie getting/setting/etc...
"/foo/bar" would result in operations being run on
"/app/a/foo/bar" (from the server perspective).sessionTimeout
- session timeout in millisecondswatcher
- a watcher object which will be notified of state changes, may
also be notified for node eventscanBeReadOnly
- (added in 3.4) whether the created client is allowed to go to
read-only mode in case of partitioning. Read-only mode
basically means that if the client can't find any majority
servers but there's partitioned server it could reach, it
connects to one in read-only mode, i.e. read requests are
allowed while write requests are not. It continues seeking for
majority in the background.aHostProvider
- use this as HostProvider to enable custom behaviour.IOException
- in cases of network failureIllegalArgumentException
- if an invalid chroot path is specifiedpublic ZooKeeper(String connectString, int sessionTimeout, Watcher watcher, boolean canBeReadOnly, HostProvider aHostProvider, ZKClientConfig clientConfig) throws IOException
Session establishment is asynchronous. This constructor will initiate connection to the server and return immediately - potentially (usually) before the session is fully established. The watcher argument specifies the watcher that will be notified of any changes in state. This notification can come at any point before or after the constructor call has returned.
The instantiated ZooKeeper client object will pick an arbitrary server from the connectString and attempt to connect to it. If establishment of the connection fails, another server in the connect string will be tried (the order is non-deterministic, as we random shuffle the list), until a connection is established. The client will continue attempts until the session is explicitly closed.
Added in 3.2.0: An optional "chroot" suffix may also be appended to the connection string. This will run the client commands while interpreting all paths relative to this root (similar to the unix chroot command).
For backward compatibility, there is another version
ZooKeeper(String, int, Watcher, boolean)
which uses default
StaticHostProvider
connectString
- 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" If
the optional chroot suffix is used the example would look
like: "127.0.0.1:3000,127.0.0.1:3001,127.0.0.1:3002/app/a"
where the client would be rooted at "/app/a" and all paths
would be relative to this root - ie getting/setting/etc...
"/foo/bar" would result in operations being run on
"/app/a/foo/bar" (from the server perspective).sessionTimeout
- session timeout in millisecondswatcher
- a watcher object which will be notified of state changes, may
also be notified for node eventscanBeReadOnly
- (added in 3.4) whether the created client is allowed to go to
read-only mode in case of partitioning. Read-only mode
basically means that if the client can't find any majority
servers but there's partitioned server it could reach, it
connects to one in read-only mode, i.e. read requests are
allowed while write requests are not. It continues seeking for
majority in the background.aHostProvider
- use this as HostProvider to enable custom behaviour.clientConfig
- (added in 3.5.2) passing this conf object gives each client the flexibility of
configuring properties differently compared to other instancesIOException
- in cases of network failureIllegalArgumentException
- if an invalid chroot path is specifiedpublic ZooKeeper(String connectString, int sessionTimeout, Watcher watcher, boolean canBeReadOnly) throws IOException
Session establishment is asynchronous. This constructor will initiate connection to the server and return immediately - potentially (usually) before the session is fully established. The watcher argument specifies the watcher that will be notified of any changes in state. This notification can come at any point before or after the constructor call has returned.
The instantiated ZooKeeper client object will pick an arbitrary server from the connectString and attempt to connect to it. If establishment of the connection fails, another server in the connect string will be tried (the order is non-deterministic, as we random shuffle the list), until a connection is established. The client will continue attempts until the session is explicitly closed.
Added in 3.2.0: An optional "chroot" suffix may also be appended to the connection string. This will run the client commands while interpreting all paths relative to this root (similar to the unix chroot command).
connectString
- 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" If
the optional chroot suffix is used the example would look
like: "127.0.0.1:3000,127.0.0.1:3001,127.0.0.1:3002/app/a"
where the client would be rooted at "/app/a" and all paths
would be relative to this root - ie getting/setting/etc...
"/foo/bar" would result in operations being run on
"/app/a/foo/bar" (from the server perspective).sessionTimeout
- session timeout in millisecondswatcher
- a watcher object which will be notified of state changes, may
also be notified for node eventscanBeReadOnly
- (added in 3.4) whether the created client is allowed to go to
read-only mode in case of partitioning. Read-only mode
basically means that if the client can't find any majority
servers but there's partitioned server it could reach, it
connects to one in read-only mode, i.e. read requests are
allowed while write requests are not. It continues seeking for
majority in the background.IOException
- in cases of network failureIllegalArgumentException
- if an invalid chroot path is specifiedpublic ZooKeeper(String connectString, int sessionTimeout, Watcher watcher, boolean canBeReadOnly, ZKClientConfig conf) throws IOException
Session establishment is asynchronous. This constructor will initiate connection to the server and return immediately - potentially (usually) before the session is fully established. The watcher argument specifies the watcher that will be notified of any changes in state. This notification can come at any point before or after the constructor call has returned.
The instantiated ZooKeeper client object will pick an arbitrary server from the connectString and attempt to connect to it. If establishment of the connection fails, another server in the connect string will be tried (the order is non-deterministic, as we random shuffle the list), until a connection is established. The client will continue attempts until the session is explicitly closed.
Added in 3.2.0: An optional "chroot" suffix may also be appended to the connection string. This will run the client commands while interpreting all paths relative to this root (similar to the unix chroot command).
connectString
- 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" If
the optional chroot suffix is used the example would look
like: "127.0.0.1:3000,127.0.0.1:3001,127.0.0.1:3002/app/a"
where the client would be rooted at "/app/a" and all paths
would be relative to this root - ie getting/setting/etc...
"/foo/bar" would result in operations being run on
"/app/a/foo/bar" (from the server perspective).sessionTimeout
- session timeout in millisecondswatcher
- a watcher object which will be notified of state changes, may
also be notified for node eventscanBeReadOnly
- (added in 3.4) whether the created client is allowed to go to
read-only mode in case of partitioning. Read-only mode
basically means that if the client can't find any majority
servers but there's partitioned server it could reach, it
connects to one in read-only mode, i.e. read requests are
allowed while write requests are not. It continues seeking for
majority in the background.conf
- (added in 3.5.2) passing this conf object gives each client the flexibility of
configuring properties differently compared to other instancesIOException
- in cases of network failureIllegalArgumentException
- if an invalid chroot path is specifiedpublic ZooKeeper(String connectString, int sessionTimeout, Watcher watcher, long sessionId, byte[] sessionPasswd) throws IOException
Session establishment is asynchronous. This constructor will initiate connection to the server and return immediately - potentially (usually) before the session is fully established. The watcher argument specifies the watcher that will be notified of any changes in state. This notification can come at any point before or after the constructor call has returned.
The instantiated ZooKeeper client object will pick an arbitrary server from the connectString and attempt to connect to it. If establishment of the connection fails, another server in the connect string will be tried (the order is non-deterministic, as we random shuffle the list), until a connection is established. The client will continue attempts until the session is explicitly closed (or the session is expired by the server).
Added in 3.2.0: An optional "chroot" suffix may also be appended to the connection string. This will run the client commands while interpreting all paths relative to this root (similar to the unix chroot command).
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.
connectString
- 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"
If the optional chroot suffix is used the example would look
like: "127.0.0.1:3000,127.0.0.1:3001,127.0.0.1:3002/app/a"
where the client would be rooted at "/app/a" and all paths
would be relative to this root - ie getting/setting/etc...
"/foo/bar" would result in operations being run on
"/app/a/foo/bar" (from the server perspective).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 sessionIOException
- in cases of network failureIllegalArgumentException
- if an invalid chroot path is specifiedIllegalArgumentException
- for an invalid list of ZooKeeper hostspublic ZooKeeper(String connectString, int sessionTimeout, Watcher watcher, long sessionId, byte[] sessionPasswd, boolean canBeReadOnly, HostProvider aHostProvider) throws IOException
Session establishment is asynchronous. This constructor will initiate connection to the server and return immediately - potentially (usually) before the session is fully established. The watcher argument specifies the watcher that will be notified of any changes in state. This notification can come at any point before or after the constructor call has returned.
The instantiated ZooKeeper client object will pick an arbitrary server from the connectString and attempt to connect to it. If establishment of the connection fails, another server in the connect string will be tried (the order is non-deterministic, as we random shuffle the list), until a connection is established. The client will continue attempts until the session is explicitly closed (or the session is expired by the server).
Added in 3.2.0: An optional "chroot" suffix may also be appended to the connection string. This will run the client commands while interpreting all paths relative to this root (similar to the unix chroot command).
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.
For backward compatibility, there is another version
ZooKeeper(String, int, Watcher, long, byte[], boolean)
which uses
default StaticHostProvider
connectString
- 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"
If the optional chroot suffix is used the example would look
like: "127.0.0.1:3000,127.0.0.1:3001,127.0.0.1:3002/app/a"
where the client would be rooted at "/app/a" and all paths
would be relative to this root - ie getting/setting/etc...
"/foo/bar" would result in operations being run on
"/app/a/foo/bar" (from the server perspective).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 sessioncanBeReadOnly
- (added in 3.4) whether the created client is allowed to go to
read-only mode in case of partitioning. Read-only mode
basically means that if the client can't find any majority
servers but there's partitioned server it could reach, it
connects to one in read-only mode, i.e. read requests are
allowed while write requests are not. It continues seeking for
majority in the background.aHostProvider
- use this as HostProvider to enable custom behaviour.IOException
- in cases of network failureIllegalArgumentException
- if an invalid chroot path is specifiedpublic ZooKeeper(String connectString, int sessionTimeout, Watcher watcher, long sessionId, byte[] sessionPasswd, boolean canBeReadOnly, HostProvider aHostProvider, ZKClientConfig clientConfig) throws IOException
Session establishment is asynchronous. This constructor will initiate connection to the server and return immediately - potentially (usually) before the session is fully established. The watcher argument specifies the watcher that will be notified of any changes in state. This notification can come at any point before or after the constructor call has returned.
The instantiated ZooKeeper client object will pick an arbitrary server from the connectString and attempt to connect to it. If establishment of the connection fails, another server in the connect string will be tried (the order is non-deterministic, as we random shuffle the list), until a connection is established. The client will continue attempts until the session is explicitly closed (or the session is expired by the server).
Added in 3.2.0: An optional "chroot" suffix may also be appended to the connection string. This will run the client commands while interpreting all paths relative to this root (similar to the unix chroot command).
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.
For backward compatibility, there is another version
ZooKeeper(String, int, Watcher, long, byte[], boolean)
which uses
default StaticHostProvider
connectString
- 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"
If the optional chroot suffix is used the example would look
like: "127.0.0.1:3000,127.0.0.1:3001,127.0.0.1:3002/app/a"
where the client would be rooted at "/app/a" and all paths
would be relative to this root - ie getting/setting/etc...
"/foo/bar" would result in operations being run on
"/app/a/foo/bar" (from the server perspective).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 sessioncanBeReadOnly
- (added in 3.4) whether the created client is allowed to go to
read-only mode in case of partitioning. Read-only mode
basically means that if the client can't find any majority
servers but there's partitioned server it could reach, it
connects to one in read-only mode, i.e. read requests are
allowed while write requests are not. It continues seeking for
majority in the background.aHostProvider
- use this as HostProvider to enable custom behaviour.clientConfig
- (added in 3.5.2) passing this conf object gives each client the flexibility of
configuring properties differently compared to other instancesIOException
- in cases of network failureIllegalArgumentException
- if an invalid chroot path is specifiedpublic ZooKeeper(String connectString, int sessionTimeout, Watcher watcher, long sessionId, byte[] sessionPasswd, boolean canBeReadOnly) throws IOException
Session establishment is asynchronous. This constructor will initiate connection to the server and return immediately - potentially (usually) before the session is fully established. The watcher argument specifies the watcher that will be notified of any changes in state. This notification can come at any point before or after the constructor call has returned.
The instantiated ZooKeeper client object will pick an arbitrary server from the connectString and attempt to connect to it. If establishment of the connection fails, another server in the connect string will be tried (the order is non-deterministic, as we random shuffle the list), until a connection is established. The client will continue attempts until the session is explicitly closed (or the session is expired by the server).
Added in 3.2.0: An optional "chroot" suffix may also be appended to the connection string. This will run the client commands while interpreting all paths relative to this root (similar to the unix chroot command).
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.
This constructor uses a StaticHostProvider; there is another one to enable custom behaviour.
connectString
- 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"
If the optional chroot suffix is used the example would look
like: "127.0.0.1:3000,127.0.0.1:3001,127.0.0.1:3002/app/a"
where the client would be rooted at "/app/a" and all paths
would be relative to this root - ie getting/setting/etc...
"/foo/bar" would result in operations being run on
"/app/a/foo/bar" (from the server perspective).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 sessioncanBeReadOnly
- (added in 3.4) whether the created client is allowed to go to
read-only mode in case of partitioning. Read-only mode
basically means that if the client can't find any majority
servers but there's partitioned server it could reach, it
connects to one in read-only mode, i.e. read requests are
allowed while write requests are not. It continues seeking for
majority in the background.IOException
- in cases of network failureIllegalArgumentException
- if an invalid chroot path is specifiedpublic void updateServerList(String connectString) throws IOException
The function invokes a probabilistic load-balancing algorithm which may cause the client to disconnect from its current host with the goal to achieve expected uniform number of connections per server in the new list. In case the current host to which the client is connected is not in the new list this call will always cause the connection to be dropped. Otherwise, the decision is based on whether the number of servers has increased or decreased and by how much. For example, if the previous connection string contained 3 hosts and now the list contains these 3 hosts and 2 more hosts, 40% of clients connected to each of the 3 hosts will move to one of the new hosts in order to balance the load. The algorithm will disconnect from the current host with probability 0.4 and in this case cause the client to connect to one of the 2 new hosts, chosen at random.
If the connection is dropped, the client moves to a special mode "reconfigMode" where he chooses a new server to connect to using the probabilistic algorithm. After finding a server, or exhausting all servers in the new list after trying all of them and failing to connect, the client moves back to the normal mode of operation where it will pick an arbitrary server from the connectString and attempt to connect to it. If establishment of the connection fails, another server in the connect string will be tried (the order is non-deterministic, as we random shuffle the list), until a connection is established. The client will continue attempts until the session is explicitly closed (or the session is expired by the server).
connectString
- 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"
If the optional chroot suffix is used the example would look
like: "127.0.0.1:3000,127.0.0.1:3001,127.0.0.1:3002/app/a"
where the client would be rooted at "/app/a" and all paths
would be relative to this root - ie getting/setting/etc...
"/foo/bar" would result in operations being run on
"/app/a/foo/bar" (from the server perspective).IOException
- in cases of network failurepublic ZooKeeperSaslClient getSaslClient()
public ZKClientConfig getClientConfig()
protected ClientCnxn createConnection(String chrootPath, HostProvider hostProvider, int sessionTimeout, ZooKeeper zooKeeper, ClientWatchManager watcher, org.apache.zookeeper.ClientCnxnSocket clientCnxnSocket, boolean canBeReadOnly) throws IOException
IOException
public Testable getTestable()
protected org.apache.zookeeper.ZooKeeper.ZKWatchManager defaultWatchManager()
public long getSessionId()
public byte[] getSessionPasswd()
public int getSessionTimeout()
public void addAuthInfo(String scheme, byte[] auth)
scheme
- auth
- public void register(Watcher watcher)
watcher
- public void close() throws InterruptedException
Added in 3.5.3: try-with-resources may be used instead of calling close directly.
This method does not wait for all internal threads to exit.
Use the close(int)
method to wait for all resources to be released
close
in interface AutoCloseable
InterruptedException
public boolean close(int waitForShutdownTimeoutMs) throws InterruptedException
close()
method.
This method will wait for internal resources to be released.waitForShutdownTimeoutMs
- timeout (in milliseconds) to wait for resources to be released.
Use zero or a negative value to skip the waitInterruptedException
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. The sequence number is always fixed length of 10 digits, 0 padded. 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 nodecreateMode
- specifying whether the node to be created is ephemeral
and/or sequentialKeeperException
- if the server returns a non-zero error codeKeeperException.InvalidACLException
- if the ACL is invalid, null, or emptyInterruptedException
- if the transaction is interruptedIllegalArgumentException
- if an invalid path is specifiedpublic String create(String path, byte[] data, List<ACL> acl, CreateMode createMode, Stat stat) 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. The sequence number is always fixed length of 10 digits, 0 padded. 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 nodecreateMode
- specifying whether the node to be created is ephemeral
and/or sequentialstat
- The output Stat object.KeeperException
- if the server returns a non-zero error codeKeeperException.InvalidACLException
- if the ACL is invalid, null, or emptyInterruptedException
- if the transaction is interruptedIllegalArgumentException
- if an invalid path is specifiedpublic String create(String path, byte[] data, List<ACL> acl, CreateMode createMode, Stat stat, long ttl) throws KeeperException, InterruptedException
create(String, byte[], List, CreateMode, Stat)
but
allows for specifying a TTL when mode is CreateMode.PERSISTENT_WITH_TTL
or CreateMode.PERSISTENT_SEQUENTIAL_WITH_TTL
. If the znode has not been modified
within the given TTL, it will be deleted once it has no children. The TTL unit is
milliseconds and must be greater than 0 and less than or equal to
EphemeralType.maxValue()
for EphemeralType.TTL
.KeeperException
InterruptedException
public void create(String path, byte[] data, List<ACL> acl, CreateMode createMode, AsyncCallback.StringCallback cb, Object ctx)
create(String, byte[], List, CreateMode)
public void create(String path, byte[] data, List<ACL> acl, CreateMode createMode, AsyncCallback.Create2Callback cb, Object ctx)
public void create(String path, byte[] data, List<ACL> acl, CreateMode createMode, AsyncCallback.Create2Callback cb, Object ctx, long ttl)
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 interruptedKeeperException
- If the server signals an error with a non-zero
return code.IllegalArgumentException
- if an invalid path is specifiedpublic List<OpResult> multi(Iterable<Op> ops) throws InterruptedException, KeeperException
On success, a list of results is returned.
On failure, an exception is raised which contains partial results and
error details, see KeeperException.getResults()
Note: The maximum allowable size of all of the data arrays in all of the setData operations in this single request is typically 1 MB (1,048,576 bytes). This limit is specified on the server via jute.maxbuffer. Requests larger than this will cause a KeeperException to be thrown.
ops
- An iterable that contains the operations to be done.
These should be created using the factory methods on Op
.ops
input
operations.InterruptedException
- If the operation was interrupted.
The operation may or may not have succeeded, but will not have
partially succeeded if this exception is thrown.KeeperException
- If the operation could not be completed
due to some error in doing one of the specified ops.IllegalArgumentException
- if an invalid path is specifiedpublic void multi(Iterable<Op> ops, AsyncCallback.MultiCallback cb, Object ctx)
multi(Iterable)
protected void multiInternal(MultiTransactionRecord request, AsyncCallback.MultiCallback cb, Object ctx)
protected List<OpResult> multiInternal(MultiTransactionRecord request) throws InterruptedException, KeeperException
InterruptedException
KeeperException
public Transaction transaction()
multi(java.lang.Iterable<org.apache.zookeeper.Op>)
method
which provides a builder object that can be used to construct
and commit an atomic set of operations.public 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 watcherKeeperException
- If the server signals an errorInterruptedException
- 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 nodeKeeperException
- If the server signals an errorInterruptedException
- If the server transaction is interrupted.public void exists(String path, Watcher watcher, AsyncCallback.StatCallback cb, Object ctx)
exists(String, Watcher)
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 nodeKeeperException
- If the server signals an error with a non-zero error codeInterruptedException
- 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 nodeKeeperException
- If the server signals an error with a non-zero error codeInterruptedException
- 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 byte[] getConfig(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 configuration node (ZooDefs.CONFIG_NODE). The watch will be triggered by a successful reconfig operation
A KeeperException with error code KeeperException.NoNode will be thrown if the configuration node doesn't exists.
watcher
- explicit watcherstat
- the stat of the configuration node ZooDefs.CONFIG_NODEKeeperException
- If the server signals an error with a non-zero error codeInterruptedException
- If the server transaction is interrupted.public void getConfig(Watcher watcher, AsyncCallback.DataCallback cb, Object ctx)
getConfig(Watcher, Stat)
public byte[] getConfig(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 configuration node (ZooDefs.CONFIG_NODE). The watch will be triggered by a successful reconfig operation
A KeeperException with error code KeeperException.NoNode will be thrown if no node with the given path exists.
watch
- whether need to watch this nodestat
- the stat of the configuration node ZooDefs.CONFIG_NODEKeeperException
- If the server signals an error with a non-zero error codeInterruptedException
- If the server transaction is interrupted.public void getConfig(boolean watch, AsyncCallback.DataCallback cb, Object ctx)
getData(String, boolean, Stat)
@Deprecated public byte[] reconfig(String joiningServers, String leavingServers, String newMembers, long fromConfig, Stat stat) throws KeeperException, InterruptedException
ZooKeeperAdmin
KeeperException
InterruptedException
@Deprecated public byte[] reconfig(List<String> joiningServers, List<String> leavingServers, List<String> newMembers, long fromConfig, Stat stat) throws KeeperException, InterruptedException
ZooKeeperAdmin
KeeperException
InterruptedException
@Deprecated public void reconfig(String joiningServers, String leavingServers, String newMembers, long fromConfig, AsyncCallback.DataCallback cb, Object ctx)
ZooKeeperAdmin
@Deprecated public void reconfig(List<String> joiningServers, List<String> leavingServers, List<String> newMembers, long fromConfig, AsyncCallback.DataCallback cb, Object ctx)
ZooKeeperAdmin
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 KeeperException to be thrown.
path
- the path of the nodedata
- the data to setversion
- the expected matching versionInterruptedException
- 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 if
not null.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 aclVersion) 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 aclVersion does not match the node's aclVersion.
path
- the given path for the nodeacl
- the given acl for the nodeaclVersion
- the given acl version of the nodeInterruptedException
- 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 will be 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 watcherInterruptedException
- 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 will be 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 List<String> getChildren(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 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 watcherstat
- stat of the znode designated by pathInterruptedException
- 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, 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 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
- stat
- stat of the znode designated by pathInterruptedException
- 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.Children2Callback cb, Object ctx)
getChildren(String, Watcher, Stat)
public void getChildren(String path, boolean watch, AsyncCallback.Children2Callback cb, Object ctx)
getChildren(String, boolean, Stat)
public void sync(String path, AsyncCallback.VoidCallback cb, Object ctx)
path
- cb
- a handler for the callbackctx
- context to be provided to the callbackIllegalArgumentException
- if an invalid path is specifiedpublic void removeWatches(String path, Watcher watcher, Watcher.WatcherType watcherType, boolean local) throws InterruptedException, KeeperException
Watcher shouldn't be null. A successful call guarantees that, the removed watcher won't be triggered.
path
- - the path of the nodewatcher
- - a concrete watcherwatcherType
- - the type of watcher to be removedlocal
- - whether the watcher can be removed locally when there is no
server connectionInterruptedException
- if the server transaction is interrupted.KeeperException.NoWatcherException
- if no watcher exists that match the specified parametersKeeperException
- if the server signals an error with a non-zero error code.IllegalArgumentException
- if any of the following is true:
path
is invalid
watcher
is null
public void removeWatches(String path, Watcher watcher, Watcher.WatcherType watcherType, boolean local, AsyncCallback.VoidCallback cb, Object ctx)
public void removeAllWatches(String path, Watcher.WatcherType watcherType, boolean local) throws InterruptedException, KeeperException
A successful call guarantees that, the removed watchers won't be triggered.
path
- - the path of the nodewatcherType
- - the type of watcher to be removedlocal
- - whether watches can be removed locally when there is no
server connectionInterruptedException
- if the server transaction is interrupted.KeeperException.NoWatcherException
- if no watcher exists that match the specified parametersKeeperException
- if the server signals an error with a non-zero error code.IllegalArgumentException
- if an invalid path
is specifiedpublic void removeAllWatches(String path, Watcher.WatcherType watcherType, boolean local, AsyncCallback.VoidCallback cb, Object ctx)
public ZooKeeper.States getState()
public String toString()
protected boolean testableWaitForShutdown(int wait) throws InterruptedException
wait
- max wait in millisecondsInterruptedException
protected SocketAddress testableRemoteSocketAddress()
protected SocketAddress testableLocalSocketAddress()
protected byte[] internalReconfig(String joiningServers, String leavingServers, String newMembers, long fromConfig, Stat stat) throws KeeperException, InterruptedException
KeeperException
InterruptedException
protected byte[] internalReconfig(List<String> joiningServers, List<String> leavingServers, List<String> newMembers, long fromConfig, Stat stat) throws KeeperException, InterruptedException
KeeperException
InterruptedException
protected void internalReconfig(String joiningServers, String leavingServers, String newMembers, long fromConfig, AsyncCallback.DataCallback cb, Object ctx)
Copyright © 2008–2020 The Apache Software Foundation. All rights reserved.