Class ZooKeeper

  • All Implemented Interfaces:
    java.lang.AutoCloseable
    Direct Known Subclasses:
    ZooKeeperAdmin, ZooKeeperRetry

    @Public
    public class ZooKeeper
    extends java.lang.Object
    implements java.lang.AutoCloseable
    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. The methods of this class are thread-safe unless otherwise noted.

    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.

    • Constructor Summary

      Constructors 
      Constructor Description
      ZooKeeper​(java.lang.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​(java.lang.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​(java.lang.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​(java.lang.String connectString, int sessionTimeout, Watcher watcher, boolean canBeReadOnly, HostProvider hostProvider, 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​(java.lang.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​(java.lang.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​(java.lang.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​(java.lang.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​(java.lang.String connectString, int sessionTimeout, Watcher watcher, long sessionId, byte[] sessionPasswd, boolean canBeReadOnly, HostProvider hostProvider, 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​(java.lang.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.
    • Constructor Detail

      • ZooKeeper

        public ZooKeeper​(java.lang.String connectString,
                         int sessionTimeout,
                         Watcher watcher)
                  throws java.io.IOException
        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.

        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).

        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 milliseconds
        watcher - a watcher object which will be notified of state changes, may also be notified for node events
        Throws:
        java.io.IOException - in cases of network failure
        java.lang.IllegalArgumentException - if an invalid chroot path is specified
      • ZooKeeper

        public ZooKeeper​(java.lang.String connectString,
                         int sessionTimeout,
                         Watcher watcher,
                         ZKClientConfig conf)
                  throws java.io.IOException
        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.

        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).

        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 milliseconds
        watcher - a watcher object which will be notified of state changes, may also be notified for node events
        conf - (added in 3.5.2) passing this conf object gives each client the flexibility of configuring properties differently compared to other instances
        Throws:
        java.io.IOException - in cases of network failure
        java.lang.IllegalArgumentException - if an invalid chroot path is specified
      • ZooKeeper

        public ZooKeeper​(java.lang.String connectString,
                         int sessionTimeout,
                         Watcher watcher,
                         boolean canBeReadOnly,
                         HostProvider aHostProvider)
                  throws java.io.IOException
        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.

        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

        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 milliseconds
        watcher - a watcher object which will be notified of state changes, may also be notified for node events
        canBeReadOnly - (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.
        Throws:
        java.io.IOException - in cases of network failure
        java.lang.IllegalArgumentException - if an invalid chroot path is specified
      • ZooKeeper

        public ZooKeeper​(java.lang.String connectString,
                         int sessionTimeout,
                         Watcher watcher,
                         boolean canBeReadOnly,
                         HostProvider hostProvider,
                         ZKClientConfig clientConfig)
                  throws java.io.IOException
        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.

        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

        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 milliseconds
        watcher - a watcher object which will be notified of state changes, may also be notified for node events
        canBeReadOnly - (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.
        hostProvider - 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 instances
        Throws:
        java.io.IOException - in cases of network failure
        java.lang.IllegalArgumentException - if an invalid chroot path is specified
      • ZooKeeper

        public ZooKeeper​(java.lang.String connectString,
                         int sessionTimeout,
                         Watcher watcher,
                         boolean canBeReadOnly)
                  throws java.io.IOException
        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.

        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).

        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 milliseconds
        watcher - a watcher object which will be notified of state changes, may also be notified for node events
        canBeReadOnly - (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.
        Throws:
        java.io.IOException - in cases of network failure
        java.lang.IllegalArgumentException - if an invalid chroot path is specified
      • ZooKeeper

        public ZooKeeper​(java.lang.String connectString,
                         int sessionTimeout,
                         Watcher watcher,
                         boolean canBeReadOnly,
                         ZKClientConfig conf)
                  throws java.io.IOException
        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.

        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).

        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 milliseconds
        watcher - a watcher object which will be notified of state changes, may also be notified for node events
        canBeReadOnly - (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 instances
        Throws:
        java.io.IOException - in cases of network failure
        java.lang.IllegalArgumentException - if an invalid chroot path is specified
      • ZooKeeper

        public ZooKeeper​(java.lang.String connectString,
                         int sessionTimeout,
                         Watcher watcher,
                         long sessionId,
                         byte[] sessionPasswd)
                  throws java.io.IOException
        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.

        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.

        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 milliseconds
        watcher - a watcher object which will be notified of state changes, may also be notified for node events
        sessionId - specific session id to use if reconnecting
        sessionPasswd - password for this session
        Throws:
        java.io.IOException - in cases of network failure
        java.lang.IllegalArgumentException - if an invalid chroot path is specified
        java.lang.IllegalArgumentException - for an invalid list of ZooKeeper hosts
      • ZooKeeper

        public ZooKeeper​(java.lang.String connectString,
                         int sessionTimeout,
                         Watcher watcher,
                         long sessionId,
                         byte[] sessionPasswd,
                         boolean canBeReadOnly,
                         HostProvider aHostProvider)
                  throws java.io.IOException
        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.

        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

        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 milliseconds
        watcher - a watcher object which will be notified of state changes, may also be notified for node events
        sessionId - specific session id to use if reconnecting
        sessionPasswd - password for this session
        canBeReadOnly - (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.
        Throws:
        java.io.IOException - in cases of network failure
        java.lang.IllegalArgumentException - if an invalid chroot path is specified
      • ZooKeeper

        public ZooKeeper​(java.lang.String connectString,
                         int sessionTimeout,
                         Watcher watcher,
                         long sessionId,
                         byte[] sessionPasswd,
                         boolean canBeReadOnly,
                         HostProvider hostProvider,
                         ZKClientConfig clientConfig)
                  throws java.io.IOException
        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.

        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

        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 milliseconds
        watcher - a watcher object which will be notified of state changes, may also be notified for node events
        sessionId - specific session id to use if reconnecting
        sessionPasswd - password for this session
        canBeReadOnly - (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.
        hostProvider - 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 instances
        Throws:
        java.io.IOException - in cases of network failure
        java.lang.IllegalArgumentException - if an invalid chroot path is specified
        Since:
        3.5.5
      • ZooKeeper

        public ZooKeeper​(java.lang.String connectString,
                         int sessionTimeout,
                         Watcher watcher,
                         long sessionId,
                         byte[] sessionPasswd,
                         boolean canBeReadOnly)
                  throws java.io.IOException
        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.

        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.

        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 milliseconds
        watcher - a watcher object which will be notified of state changes, may also be notified for node events
        sessionId - specific session id to use if reconnecting
        sessionPasswd - password for this session
        canBeReadOnly - (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.
        Throws:
        java.io.IOException - in cases of network failure
        java.lang.IllegalArgumentException - if an invalid chroot path is specified
    • Method Detail

      • updateServerList

        public void updateServerList​(java.lang.String connectString)
                              throws java.io.IOException
        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.

        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).

        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).
        Throws:
        java.io.IOException - in cases of network failure
      • getDataWatches

        protected java.util.List<java.lang.String> getDataWatches()
      • getExistWatches

        protected java.util.List<java.lang.String> getExistWatches()
      • getChildWatches

        protected java.util.List<java.lang.String> getChildWatches()
      • getPersistentWatches

        protected java.util.List<java.lang.String> getPersistentWatches()
      • getPersistentRecursiveWatches

        protected java.util.List<java.lang.String> getPersistentRecursiveWatches()
      • getTestable

        public Testable getTestable()
      • getSessionId

        public long getSessionId()
        The session id for this ZooKeeper client instance. The value returned is not valid until the client connects to a server and may change after a re-connect. This method is NOT thread safe
        Returns:
        current session id
      • getSessionPasswd

        public byte[] getSessionPasswd()
        The session password for this ZooKeeper client instance. The value returned is not valid until the client connects to a server and may change after a re-connect. This method is NOT thread safe
        Returns:
        current session password
      • getSessionTimeout

        public int getSessionTimeout()
        The negotiated session timeout for this ZooKeeper client instance. The value returned is not valid until the client connects to a server and may change after a re-connect. This method is NOT thread safe
        Returns:
        current session timeout
      • addAuthInfo

        public void addAuthInfo​(java.lang.String scheme,
                                byte[] auth)
        Add the specified scheme:auth information to this connection. This method is NOT thread safe
        Parameters:
        scheme -
        auth -
      • register

        public void register​(Watcher watcher)
        Specify the default watcher for the connection (overrides the one specified during construction).
      • close

        public void close()
                   throws java.lang.InterruptedException
        Close this client object. Once the client is closed, its session becomes invalid. All the ephemeral nodes in the ZooKeeper server associated with the session will be removed. The watches left on those nodes (and on their parents) will be triggered.

        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

        Specified by:
        close in interface java.lang.AutoCloseable
        Throws:
        java.lang.InterruptedException
      • close

        public boolean close​(int waitForShutdownTimeoutMs)
                      throws java.lang.InterruptedException
        Close this client object as the close() method. This method will wait for internal resources to be released.
        Parameters:
        waitForShutdownTimeoutMs - timeout (in milliseconds) to wait for resources to be released. Use zero or a negative value to skip the wait
        Returns:
        true if waitForShutdownTimeout is greater than zero and all of the resources have been released
        Throws:
        java.lang.InterruptedException
        Since:
        3.5.4
      • create

        public java.lang.String create​(java.lang.String path,
                                       byte[] data,
                                       java.util.List<ACL> acl,
                                       CreateMode createMode)
                                throws KeeperException,
                                       java.lang.InterruptedException
        Create a node with the given path. The node data will be the given data, and node acl will be the given acl.

        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.

        Parameters:
        path - the path for the node
        data - the initial data for the node
        acl - the acl for the node
        createMode - specifying whether the node to be created is ephemeral and/or sequential
        Returns:
        the actual path of the created node
        Throws:
        KeeperException - if the server returns a non-zero error code
        KeeperException.InvalidACLException - if the ACL is invalid, null, or empty
        java.lang.InterruptedException - if the transaction is interrupted
        java.lang.IllegalArgumentException - if an invalid path is specified
      • create

        public java.lang.String create​(java.lang.String path,
                                       byte[] data,
                                       java.util.List<ACL> acl,
                                       CreateMode createMode,
                                       Stat stat)
                                throws KeeperException,
                                       java.lang.InterruptedException
        Create a node with the given path and returns the Stat of that node. The node data will be the given data and node acl will be the given acl.

        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.

        Parameters:
        path - the path for the node
        data - the initial data for the node
        acl - the acl for the node
        createMode - specifying whether the node to be created is ephemeral and/or sequential
        stat - The output Stat object.
        Returns:
        the actual path of the created node
        Throws:
        KeeperException - if the server returns a non-zero error code
        KeeperException.InvalidACLException - if the ACL is invalid, null, or empty
        java.lang.InterruptedException - if the transaction is interrupted
        java.lang.IllegalArgumentException - if an invalid path is specified
      • delete

        public void delete​(java.lang.String path,
                           int version)
                    throws java.lang.InterruptedException,
                           KeeperException
        Delete the node with the given path. The call will succeed if such a node exists, and the given version matches the node's version (if the given version is -1, it matches any node's versions).

        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.

        Parameters:
        path - the path of the node to be deleted.
        version - the expected node version.
        Throws:
        java.lang.InterruptedException - IF the server transaction is interrupted
        KeeperException - If the server signals an error with a non-zero return code.
        java.lang.IllegalArgumentException - if an invalid path is specified
      • multi

        public java.util.List<OpResult> multi​(java.lang.Iterable<Op> ops)
                                       throws java.lang.InterruptedException,
                                              KeeperException
        Executes multiple ZooKeeper operations. In case of transactions all of them or none of them will be executed.

        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.

        Parameters:
        ops - An iterable that contains the operations to be done. These should be created using the factory methods on Op and must be the same kind of ops.
        Returns:
        A list of results, one for each input Op, the order of which exactly matches the order of the ops input operations.
        Throws:
        java.lang.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.
        java.lang.IllegalArgumentException - if an invalid path is specified or different kind of ops are mixed
        Since:
        3.4.0
      • exists

        public Stat exists​(java.lang.String path,
                           Watcher watcher)
                    throws KeeperException,
                           java.lang.InterruptedException
        Return the stat of the node of the given path. Return null if no such a node exists.

        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.

        Parameters:
        path - the node path
        watcher - explicit watcher
        Returns:
        the stat of the node of the given path; return null if no such a node exists.
        Throws:
        KeeperException - If the server signals an error
        java.lang.InterruptedException - If the server transaction is interrupted.
        java.lang.IllegalArgumentException - if an invalid path is specified
      • exists

        public Stat exists​(java.lang.String path,
                           boolean watch)
                    throws KeeperException,
                           java.lang.InterruptedException
        Return the stat of the node of the given path. Return null if no such a node exists.

        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.

        Parameters:
        path - the node path
        watch - whether need to watch this node
        Returns:
        the stat of the node of the given path; return null if no such a node exists.
        Throws:
        KeeperException - If the server signals an error
        java.lang.IllegalStateException - if watch this node with a null default watcher
        java.lang.InterruptedException - If the server transaction is interrupted.
      • exists

        public void exists​(java.lang.String path,
                           boolean watch,
                           AsyncCallback.StatCallback cb,
                           java.lang.Object ctx)
        The asynchronous version of exists.
        Throws:
        java.lang.IllegalStateException - if watch this node with a null default watcher
        See Also:
        exists(String, boolean)
      • getData

        public byte[] getData​(java.lang.String path,
                              Watcher watcher,
                              Stat stat)
                       throws KeeperException,
                              java.lang.InterruptedException
        Return the data and the stat of the node of the given path.

        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.

        Parameters:
        path - the given path
        watcher - explicit watcher
        stat - the stat of the node
        Returns:
        the data of the node
        Throws:
        KeeperException - If the server signals an error with a non-zero error code
        java.lang.InterruptedException - If the server transaction is interrupted.
        java.lang.IllegalArgumentException - if an invalid path is specified
      • getData

        public byte[] getData​(java.lang.String path,
                              boolean watch,
                              Stat stat)
                       throws KeeperException,
                              java.lang.InterruptedException
        Return the data and the stat of the node of the given path.

        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.

        Parameters:
        path - the given path
        watch - whether need to watch this node
        stat - the stat of the node
        Returns:
        the data of the node
        Throws:
        KeeperException - If the server signals an error with a non-zero error code
        java.lang.IllegalStateException - if watch this node with a null default watcher
        java.lang.InterruptedException - If the server transaction is interrupted.
      • getData

        public void getData​(java.lang.String path,
                            boolean watch,
                            AsyncCallback.DataCallback cb,
                            java.lang.Object ctx)
        The asynchronous version of getData.
        Throws:
        java.lang.IllegalStateException - if watch this node with a null default watcher
        See Also:
        getData(String, boolean, Stat)
      • getConfig

        public byte[] getConfig​(Watcher watcher,
                                Stat stat)
                         throws KeeperException,
                                java.lang.InterruptedException
        Return the last committed configuration (as known to the server to which the client is connected) and the stat of the configuration.

        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.

        Parameters:
        watcher - explicit watcher
        stat - the stat of the configuration node ZooDefs.CONFIG_NODE
        Returns:
        configuration data stored in ZooDefs.CONFIG_NODE
        Throws:
        KeeperException - If the server signals an error with a non-zero error code
        java.lang.InterruptedException - If the server transaction is interrupted.
      • getConfig

        public byte[] getConfig​(boolean watch,
                                Stat stat)
                         throws KeeperException,
                                java.lang.InterruptedException
        Return the last committed configuration (as known to the server to which the client is connected) and the stat of the configuration.

        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.

        Parameters:
        watch - whether need to watch this node
        stat - the stat of the configuration node ZooDefs.CONFIG_NODE
        Returns:
        configuration data stored in ZooDefs.CONFIG_NODE
        Throws:
        KeeperException - If the server signals an error with a non-zero error code
        java.lang.IllegalStateException - if watch this node with a null default watcher
        java.lang.InterruptedException - If the server transaction is interrupted.
      • setData

        public Stat setData​(java.lang.String path,
                            byte[] data,
                            int version)
                     throws KeeperException,
                            java.lang.InterruptedException
        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). Return the stat of the node.

        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.

        Parameters:
        path - the path of the node
        data - the data to set
        version - the expected matching version
        Returns:
        the state of the node
        Throws:
        java.lang.InterruptedException - If the server transaction is interrupted.
        KeeperException - If the server signals an error with a non-zero error code.
        java.lang.IllegalArgumentException - if an invalid path is specified
      • getACL

        public java.util.List<ACL> getACL​(java.lang.String path,
                                          Stat stat)
                                   throws KeeperException,
                                          java.lang.InterruptedException
        Return the ACL and stat of the node of the given path.

        A KeeperException with error code KeeperException.NoNode will be thrown if no node with the given path exists.

        Parameters:
        path - the given path for the node
        stat - the stat of the node will be copied to this parameter if not null.
        Returns:
        the ACL array of the given node.
        Throws:
        java.lang.InterruptedException - If the server transaction is interrupted.
        KeeperException - If the server signals an error with a non-zero error code.
        java.lang.IllegalArgumentException - if an invalid path is specified
      • setACL

        public Stat setACL​(java.lang.String path,
                           java.util.List<ACL> acl,
                           int aclVersion)
                    throws KeeperException,
                           java.lang.InterruptedException
        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. Return the stat of the node.

        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.

        Parameters:
        path - the given path for the node
        acl - the given acl for the node
        aclVersion - the given acl version of the node
        Returns:
        the stat of the node.
        Throws:
        java.lang.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.
        java.lang.IllegalArgumentException - if an invalid path is specified
      • getChildren

        public java.util.List<java.lang.String> getChildren​(java.lang.String path,
                                                            Watcher watcher)
                                                     throws KeeperException,
                                                            java.lang.InterruptedException
        Return the list of the children of the node of the given path.

        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.

        Parameters:
        path -
        watcher - explicit watcher
        Returns:
        an unordered array of children of the node with the given path
        Throws:
        java.lang.InterruptedException - If the server transaction is interrupted.
        KeeperException - If the server signals an error with a non-zero error code.
        java.lang.IllegalArgumentException - if an invalid path is specified
      • getChildren

        public java.util.List<java.lang.String> getChildren​(java.lang.String path,
                                                            boolean watch)
                                                     throws KeeperException,
                                                            java.lang.InterruptedException
        Return the list of the children of the node of the given path.

        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.

        Parameters:
        path - the node path
        watch - whether need to watch this node
        Returns:
        an unordered array of children of the node with the given path
        Throws:
        java.lang.IllegalStateException - if watch this node with a null default watcher
        java.lang.InterruptedException - If the server transaction is interrupted.
        KeeperException - If the server signals an error with a non-zero error code.
      • getChildren

        public void getChildren​(java.lang.String path,
                                boolean watch,
                                AsyncCallback.ChildrenCallback cb,
                                java.lang.Object ctx)
        The asynchronous version of getChildren.
        Throws:
        java.lang.IllegalStateException - if watch this node with a null default watcher
        See Also:
        getChildren(String, boolean)
      • getChildren

        public java.util.List<java.lang.String> getChildren​(java.lang.String path,
                                                            Watcher watcher,
                                                            Stat stat)
                                                     throws KeeperException,
                                                            java.lang.InterruptedException
        For the given znode path return the stat and children list.

        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.

        Parameters:
        path -
        watcher - explicit watcher
        stat - stat of the znode designated by path
        Returns:
        an unordered array of children of the node with the given path
        Throws:
        java.lang.InterruptedException - If the server transaction is interrupted.
        KeeperException - If the server signals an error with a non-zero error code.
        java.lang.IllegalArgumentException - if an invalid path is specified
        Since:
        3.3.0
      • getChildren

        public java.util.List<java.lang.String> getChildren​(java.lang.String path,
                                                            boolean watch,
                                                            Stat stat)
                                                     throws KeeperException,
                                                            java.lang.InterruptedException
        For the given znode path return the stat and children list.

        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.

        Parameters:
        path - the node path
        watch - whether need to watch this node
        stat - stat of the znode designated by path
        Returns:
        an unordered array of children of the node with the given path
        Throws:
        java.lang.IllegalStateException - if watch this node with a null default watcher
        java.lang.InterruptedException - If the server transaction is interrupted.
        KeeperException - If the server signals an error with a non-zero error code.
        Since:
        3.3.0
      • getChildren

        public void getChildren​(java.lang.String path,
                                boolean watch,
                                AsyncCallback.Children2Callback cb,
                                java.lang.Object ctx)
        The asynchronous version of getChildren.
        Throws:
        java.lang.IllegalStateException - if watch this node with a null default watcher
        Since:
        3.3.0
        See Also:
        getChildren(String, boolean, Stat)
      • getAllChildrenNumber

        public int getAllChildrenNumber​(java.lang.String path)
                                 throws KeeperException,
                                        java.lang.InterruptedException
        Synchronously gets all numbers of children nodes under a specific path
        Parameters:
        path -
        Returns:
        Children nodes count under path
        Throws:
        KeeperException
        java.lang.InterruptedException
        Since:
        3.6.0
      • getAllChildrenNumber

        public void getAllChildrenNumber​(java.lang.String path,
                                         AsyncCallback.AllChildrenNumberCallback cb,
                                         java.lang.Object ctx)
        Asynchronously gets all numbers of children nodes under a specific path
        Parameters:
        path -
        Since:
        3.6.0
      • getEphemerals

        public java.util.List<java.lang.String> getEphemerals()
                                                       throws KeeperException,
                                                              java.lang.InterruptedException
        Synchronously gets all the ephemeral nodes created by this session.
        Throws:
        KeeperException
        java.lang.InterruptedException
        Since:
        3.6.0
      • getEphemerals

        public java.util.List<java.lang.String> getEphemerals​(java.lang.String prefixPath)
                                                       throws KeeperException,
                                                              java.lang.InterruptedException
        Synchronously gets all the ephemeral nodes matching prefixPath created by this session. If prefixPath is "/" then it returns all ephemerals
        Throws:
        KeeperException
        java.lang.InterruptedException
        Since:
        3.6.0
      • getEphemerals

        public void getEphemerals​(java.lang.String prefixPath,
                                  AsyncCallback.EphemeralsCallback cb,
                                  java.lang.Object ctx)
        Asynchronously gets all the ephemeral nodes matching prefixPath created by this session. If prefixPath is "/" then it returns all ephemerals
        Since:
        3.6.0
      • getEphemerals

        public void getEphemerals​(AsyncCallback.EphemeralsCallback cb,
                                  java.lang.Object ctx)
        Asynchronously gets all the ephemeral nodes created by this session. ephemerals
        Since:
        3.6.0
      • sync

        public void sync​(java.lang.String path,
                         AsyncCallback.VoidCallback cb,
                         java.lang.Object ctx)
        Asynchronous sync. Flushes channel between process and leader.
        Parameters:
        path -
        cb - a handler for the callback
        ctx - context to be provided to the callback
        Throws:
        java.lang.IllegalArgumentException - if an invalid path is specified
      • removeWatches

        public void removeWatches​(java.lang.String path,
                                  Watcher watcher,
                                  Watcher.WatcherType watcherType,
                                  boolean local)
                           throws java.lang.InterruptedException,
                                  KeeperException
        For the given znode path, removes the specified watcher of given watcherType.

        Watcher shouldn't be null. A successful call guarantees that, the removed watcher won't be triggered.

        Parameters:
        path - - the path of the node
        watcher - - a concrete watcher
        watcherType - - the type of watcher to be removed
        local - - whether the watcher can be removed locally when there is no server connection
        Throws:
        java.lang.InterruptedException - if the server transaction is interrupted.
        KeeperException.NoWatcherException - if no watcher exists that match the specified parameters
        KeeperException - if the server signals an error with a non-zero error code.
        java.lang.IllegalArgumentException - if any of the following is true:
        • path is invalid
        • watcher is null
        Since:
        3.5.0
      • removeAllWatches

        public void removeAllWatches​(java.lang.String path,
                                     Watcher.WatcherType watcherType,
                                     boolean local)
                              throws java.lang.InterruptedException,
                                     KeeperException
        For the given znode path, removes all the registered watchers of given watcherType.

        A successful call guarantees that, the removed watchers won't be triggered.

        Parameters:
        path - - the path of the node
        watcherType - - the type of watcher to be removed
        local - - whether watches can be removed locally when there is no server connection
        Throws:
        java.lang.InterruptedException - if the server transaction is interrupted.
        KeeperException.NoWatcherException - if no watcher exists that match the specified parameters
        KeeperException - if the server signals an error with a non-zero error code.
        java.lang.IllegalArgumentException - if an invalid path is specified
        Since:
        3.5.0
      • addWatch

        public void addWatch​(java.lang.String basePath,
                             Watcher watcher,
                             AddWatchMode mode)
                      throws KeeperException,
                             java.lang.InterruptedException
        Add a watch to the given znode using the given mode. Note: not all watch types can be set with this method. Only the modes available in AddWatchMode can be set with this method.
        Parameters:
        basePath - the path that the watcher applies to
        watcher - the watcher
        mode - type of watcher to add
        Throws:
        java.lang.InterruptedException - If the server transaction is interrupted.
        KeeperException - If the server signals an error with a non-zero error code.
        Since:
        3.6.0
      • addWatch

        public void addWatch​(java.lang.String basePath,
                             AddWatchMode mode)
                      throws KeeperException,
                             java.lang.InterruptedException
        Add a watch to the given znode using the given mode. Note: not all watch types can be set with this method. Only the modes available in AddWatchMode can be set with this method. In this version of the method, the default watcher is used
        Parameters:
        basePath - the path that the watcher applies to
        mode - type of watcher to add
        Throws:
        java.lang.InterruptedException - If the server transaction is interrupted.
        KeeperException - If the server signals an error with a non-zero error code.
        Since:
        3.6.0
      • addWatch

        public void addWatch​(java.lang.String basePath,
                             Watcher watcher,
                             AddWatchMode mode,
                             AsyncCallback.VoidCallback cb,
                             java.lang.Object ctx)
        Async version of addWatch(String, Watcher, AddWatchMode) (see it for details)
        Parameters:
        basePath - the path that the watcher applies to
        watcher - the watcher
        mode - type of watcher to add
        cb - a handler for the callback
        ctx - context to be provided to the callback
        Throws:
        java.lang.IllegalArgumentException - if an invalid path is specified
        Since:
        3.6.0
      • addWatch

        public void addWatch​(java.lang.String basePath,
                             AddWatchMode mode,
                             AsyncCallback.VoidCallback cb,
                             java.lang.Object ctx)
        Async version of addWatch(String, AddWatchMode) (see it for details)
        Parameters:
        basePath - the path that the watcher applies to
        mode - type of watcher to add
        cb - a handler for the callback
        ctx - context to be provided to the callback
        Throws:
        java.lang.IllegalArgumentException - if an invalid path is specified
        Since:
        3.6.0
      • toString

        public java.lang.String toString()
        String representation of this ZooKeeper client. Suitable for things like logging. Do NOT count on the format of this string, it may change without warning.
        Overrides:
        toString in class java.lang.Object
        Since:
        3.3.0
      • testableWaitForShutdown

        protected boolean testableWaitForShutdown​(int wait)
                                           throws java.lang.InterruptedException
        Wait up to wait milliseconds for the underlying threads to shutdown. THIS METHOD IS EXPECTED TO BE USED FOR TESTING ONLY!!!
        Parameters:
        wait - max wait in milliseconds
        Returns:
        true iff all threads are shutdown, otw false
        Throws:
        java.lang.InterruptedException
        Since:
        3.3.0
      • testableRemoteSocketAddress

        protected java.net.SocketAddress testableRemoteSocketAddress()
        Returns the address to which the socket is connected. Useful for testing against an ensemble - test client may need to know which server to shutdown if interested in verifying that the code handles disconnection/reconnection correctly. THIS METHOD IS EXPECTED TO BE USED FOR TESTING ONLY!!!
        Returns:
        ip address of the remote side of the connection or null if not connected
        Since:
        3.3.0
      • testableLocalSocketAddress

        protected java.net.SocketAddress testableLocalSocketAddress()
        Returns the local address to which the socket is bound. THIS METHOD IS EXPECTED TO BE USED FOR TESTING ONLY!!!
        Returns:
        ip address of the remote side of the connection or null if not connected
        Since:
        3.3.0
      • whoAmI

        public java.util.List<ClientInfo> whoAmI()
                                          throws java.lang.InterruptedException
        Gives all authentication information added into the current session.
        Returns:
        list of authentication info
        Throws:
        java.lang.InterruptedException - when interrupted