zk 原生API 连接

对zk 操作的方式有一下几种:

  • 基于java的 shell命令,zkCli.sh
  • 原生的java api
  • zkClient
  • Curator
  • spring cloud zookeeper

原生API

代码展示

  • ZKConstant 常量
public class ZKConstant {
    public static final String CONNET_STR = "192.168.56.101:2181,192.168.56.102:2181,192.168.56.103:2181";
    public static final int SESSION_TIMEOUT = 5000;
}
  • CreateSession
public class CreateSession_API {
    private static ZooKeeper zk1;
    private static CountDownLatch connectSemaphore = new CountDownLatch(1);

    public static void main(String[] args) throws Exception {
//        createSession();
        createSessionWithSID();
    }

    public static void createSession() throws Exception {
        //Zookeeper是API提供的1个类,我们连接zk集群,进行相应的znode操作,都是通过ZooKeeper的实例进行,这个实例就是zk client,和命令行客户端是同样的角色
        //Zookeeper实例的创建需要传递3个参数
        //connectString 代表要连接zk集群服务,通过逗号分隔
        // 注册watcher事件
        zk1 = new ZooKeeper(ZKConstant.CONNET_STR, ZKConstant.SESSION_TIMEOUT, new Watcher() {
            public void process(WatchedEvent watchedEvent) {
//                这个方法只会调用一次,在这个session建立完成调用
                if (watchedEvent.getState() == Event.KeeperState.SyncConnected) {
                    connectSemaphore.countDown();
                    System.out.println("event:" + watchedEvent);
                    System.out.println("receive session established.");
                }
            }
        });
        System.out.println(zk1.getState());
        connectSemaphore.await();
        System.out.println("zk session established");
    }

    // 重复使用上次session, 利用sessionId和passwd
    public static void createSessionWithSID() throws Exception {
        zk1 = new ZooKeeper(ZKConstant.CONNET_STR, ZKConstant.SESSION_TIMEOUT,
                new MyWatcher());
        connectSemaphore.await();
        long sessionId = zk1.getSessionId();
        byte[] passwd = zk1.getSessionPasswd();

        zk1 = new ZooKeeper(ZKConstant.CONNET_STR, ZKConstant.SESSION_TIMEOUT,
                new MyWatcher(),
                1l, "test".getBytes());

        zk1 = new ZooKeeper(ZKConstant.CONNET_STR, ZKConstant.SESSION_TIMEOUT,
                new MyWatcher(),
                sessionId,
                passwd);
        Thread.sleep(Integer.MAX_VALUE);
    }

    static class MyWatcher implements Watcher {
        @Override
        public void process(WatchedEvent watchedEvent) {
//            只注册一次
            System.out.println("receive watched event:" + watchedEvent);
            if (Event.KeeperState.SyncConnected == watchedEvent.getState()) {
                connectSemaphore.countDown();
            }
        }
    }
}
  • CreateNode
public class CreateNode_API {
    private static ZooKeeper zk1;
    private static CountDownLatch connectSemaphore = new CountDownLatch(1); // 同步计数器
    public static void main(String[] args) throws Exception {
//        createNodeASync();
        createNodeSync();
    }
    public static void createNodeSync() throws Exception {
        ZooKeeper zookeeper = new ZooKeeper(ZKConstant.CONNET_STR,
                ZKConstant.SESSION_TIMEOUT, //
                new MyWatcher());
        connectSemaphore.await();
        // 创建临时节点
        String path1 = zookeeper.create("/zk-test-ephemeral-",
                "".getBytes(),
                ZooDefs.Ids.OPEN_ACL_UNSAFE,
                CreateMode.EPHEMERAL);
        System.out.println("Success create znode: " + path1);

        String path2 = zookeeper.create("/zk-test-ephemeral-",
                "".getBytes(),
                ZooDefs.Ids.OPEN_ACL_UNSAFE,
                CreateMode.EPHEMERAL_SEQUENTIAL);
        System.out.println("Success create znode: " + path2);
    }
    public static void createNodeASync() throws Exception {
        ZooKeeper zk1 = new ZooKeeper(ZKConstant.CONNET_STR, ZKConstant.SESSION_TIMEOUT,
                new MyWatcher());
        connectSemaphore.await();
        // 创建临时节点
        zk1.create("/zk-test-eph-", "".getBytes(),
                ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.EPHEMERAL,
                new IStringCallback(), "I am context1.");
        zk1.create("/zk-test-eph-", "".getBytes(),
                ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.EPHEMERAL,
                new IStringCallback(), "i am context2");
        //  创建临时有序节点
        zk1.create("/zk-test-eph-", "".getBytes(),
                ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.EPHEMERAL_SEQUENTIAL,
                new IStringCallback(), "i am context3");
        Thread.sleep(Integer.MAX_VALUE);
    }
    static class MyWatcher implements Watcher {
        @Override
        public void process(WatchedEvent watchedEvent) {
//            建立连接成功回调
            if (watchedEvent.getState() == Event.KeeperState.SyncConnected) {
                connectSemaphore.countDown();
            }
        }
    }
    // 创建节点成功回调
    static class IStringCallback implements AsyncCallback.StringCallback {
        @Override
        public void processResult(int rc, String path, Object ctx, String name) {
            System.out.println("create path result: [" + rc + "," + path + "," + ctx + ", real path name:" + name);
        }
    }
}

  • DeleteNode
public class DeleteNode_API {
   private static CountDownLatch connectedSemaphore = new CountDownLatch(1);
   private static ZooKeeper zk;
   public static void main(String[] args) throws Exception {
       deleteNodeSync();
   }
   public static void deleteNodeSync() throws Exception {
       String path = "/zk_book";
       zk = new ZooKeeper(ZKConstant.CONNET_STR, ZKConstant.SESSION_TIMEOUT,
               new DeleteWatcher());
       connectedSemaphore.await();
       zk.create(path, "".getBytes(), ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.EPHEMERAL);
       zk.delete(path, -1);
       Thread.sleep(Integer.MAX_VALUE);
   }
   static class DeleteWatcher implements Watcher {
       @Override
       public void process(WatchedEvent watchedEvent) {
           if (Event.KeeperState.SyncConnected == watchedEvent.getState() && watchedEvent.getPath() == null) {
               connectedSemaphore.countDown();
           }
       }
   }
}
  • ExistsNode
public class ExistsNode_API {
    private static CountDownLatch connectedSemaphore = new CountDownLatch(1);
    private static ZooKeeper zk;
    public static void main(String[] args) throws Exception {
        String path = "/zk-book";
        zk = new ZooKeeper(ZKConstant.CONNET_STR,
                ZKConstant.SESSION_TIMEOUT, //
                new MyWatcher());
        connectedSemaphore.await();
//         对path 路劲进行监听
        zk.exists(path, true);
        zk.create(path, "".getBytes(), ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT);
        zk.setData(path, "123".getBytes(), -1);
        zk.create(path+"/c1", "".getBytes(), ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT);
        zk.setData(path + "/c1", "000".getBytes(), -1);
        zk.delete(path + "/c1", -1);
        zk.delete(path, -1);
        Thread.sleep(Integer.MAX_VALUE);
    }
    static class MyWatcher implements Watcher {
        public void process(WatchedEvent watchedEvent) {
            try {
                if (Event.KeeperState.SyncConnected == watchedEvent.getState()) {
                    if (Event.EventType.None == watchedEvent.getType() && null == watchedEvent.getPath()) {
                        connectedSemaphore.countDown();
                    } else if (Event.EventType.NodeCreated == watchedEvent.getType()) {
                        System.out.println("node (" + watchedEvent.getPath() + ") created ");
                        zk.exists(watchedEvent.getPath(), true);
                    } else if (Event.EventType.NodeDeleted == watchedEvent.getType()) {
                        System.out.println("node (" + watchedEvent.getPath() + ") deleted ");
                        zk.exists(watchedEvent.getPath(), true);
                    } else if (Event.EventType.NodeDataChanged == watchedEvent.getType()) {
                        System.out.println("node (" + watchedEvent.getPath() + ") dataChanged");
                        zk.exists(watchedEvent.getPath(), true);
                    }
                }
            } catch (Exception e) {
            }
        }
    }
}
  • GetData
public class GetData_API {
    private static ZooKeeper zk1;
    private static CountDownLatch connectedSemaphore = new CountDownLatch(1);
    private static Stat stat = new Stat();
    static String path = "/zk-book";
    public static void main(String[] args) throws Exception {
        sync_setData();
    }
    public static void sync_setData() throws Exception {
        String path = "/zk-book";
        zk1 = new ZooKeeper(ZKConstant.CONNET_STR,
                ZKConstant.SESSION_TIMEOUT, //
                new MyWatcher());
        connectedSemaphore.await();
        Stat stat = zk1.setData(path, "haha".getBytes(), -1);
        System.out.println(stat.getCzxid() + "," + stat.getMzxid() + "," +
                stat.getVersion());
        Stat stat2 = zk1.setData(path, "haha".getBytes(), -1);
        System.out.println(stat.getCzxid() + "," + stat.getMzxid() + "," +
                stat.getVersion());
        try {
            // 指定version, 需要正确的version才可以通过
            zk1.setData(path, "456".getBytes(), stat.getVersion());
        } catch (KeeperException e) {
            System.out.println("Error: " + e.code() + "," + e.getMessage());
        }
        Thread.sleep(Integer.MAX_VALUE);
    }

    public static void async_setData() throws Exception {
        String path = "/zk-book";
        zk1 = new ZooKeeper(ZKConstant.CONNET_STR,
                ZKConstant.SESSION_TIMEOUT, //
                new MyWatcher());
        connectedSemaphore.await();
        zk1.setData(path, "456".getBytes(), -1, new AsyncCallback.StatCallback() {
            public void processResult(int i, String s, Object o, Stat stat) {
                if (i == 0) {
                    System.out.println("SUCCESS");
                }
            }
        }, null);
        Thread.sleep(Integer.MAX_VALUE);
    }
    public static void sync_getChildren() throws Exception {
        String path = "/zk-book";
        zk1 = new ZooKeeper(ZKConstant.CONNET_STR,
                ZKConstant.SESSION_TIMEOUT, //
                new MyWatcher());
        connectedSemaphore.await();
//        zk1.delete(path+"/c1", 0);
        zk1.delete(path, 0);
        zk1.create(path, "".getBytes(), ZooDefs.Ids.OPEN_ACL_UNSAFE,
                CreateMode.PERSISTENT);
        zk1.create(path + "/c1", "".getBytes(), ZooDefs.Ids.OPEN_ACL_UNSAFE,
                CreateMode.PERSISTENT);
        List<String> childrenList = zk1.getChildren(path, true);
        System.out.println(childrenList);
        zk1.create(path + "/c2", "".getBytes(), ZooDefs.Ids.OPEN_ACL_UNSAFE,
                CreateMode.EPHEMERAL);
        Thread.sleep(Integer.MAX_VALUE);
    }

    public static void async_getChildren() throws Exception {
        String path = "/zk-book";
        zk1 = new ZooKeeper(ZKConstant.CONNET_STR,
                ZKConstant.SESSION_TIMEOUT, //
                new MyWatcher());
        connectedSemaphore.await();
        zk1.create(path, "".getBytes(), ZooDefs.Ids.OPEN_ACL_UNSAFE,
                CreateMode.PERSISTENT);
        zk1.create(path + "/c1", "".getBytes(), ZooDefs.Ids.OPEN_ACL_UNSAFE,
                CreateMode.PERSISTENT);
        // 只会响应一次
        zk1.getChildren(path, true, new AsyncCallback.Children2Callback() {
            public void processResult(int rc, String path, Object ctx, List<String> children, Stat stat) {
                System.out.println("Get Children znode result: [response code: " + rc + ", param path: " + path
                        + ", ctx: " + ctx + ", children list: " + children + ", stat: " + stat);
            }
        }, null);
        zk1.create(path + "/c2", "".getBytes(), ZooDefs.Ids.OPEN_ACL_UNSAFE,
                CreateMode.EPHEMERAL);
        Thread.sleep(Integer.MAX_VALUE);
    }
    public static void sync_getData() throws Exception {
        String path = "/zk-book";
        zk1 = new ZooKeeper(ZKConstant.CONNET_STR,
                ZKConstant.SESSION_TIMEOUT, //
                new MyWatcher());
        connectedSemaphore.await();
        zk1.create(path, "123".getBytes(), ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.EPHEMERAL);
        System.out.println(new String(zk1.getData(path, true, stat)));
        System.out.println(stat.getCzxid() + "," + stat.getMzxid() + "," + stat.getVersion());
        zk1.setData(path, "456".getBytes(), -1);
        Thread.sleep(Integer.MAX_VALUE);
    }
    public static void async_getData() throws Exception {
        zk1 = new ZooKeeper(ZKConstant.CONNET_STR,
                ZKConstant.SESSION_TIMEOUT, //
                new MyWatcher());
        connectedSemaphore.await();
        zk1.create(path, "123".getBytes(), ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.EPHEMERAL);
        zk1.getData(path, true, new IDataCallback(), null);
        zk1.setData(path, "456".getBytes(), -1);
        Thread.sleep(Integer.MAX_VALUE);
    }
    static class MyWatcher implements Watcher {
        public void process(WatchedEvent watchedEvent) {
            if (Event.KeeperState.SyncConnected == watchedEvent.getState()) {
                if (Event.EventType.None == watchedEvent.getType() && null == watchedEvent.getPath()) {
                    connectedSemaphore.countDown();
                } else if (watchedEvent.getType() == Event.EventType.NodeDataChanged) {
                    try {
                        zk1.getData(watchedEvent.getPath(), true, new IDataCallback(), null);
                    } catch (Exception e) {
                    }
                }
            }
        }
    }
    static class IDataCallback implements AsyncCallback.DataCallback {
        public void processResult(int rc, String path, Object ctx, byte[] data, Stat stat) {
            System.out.println(rc + ", " + path + ", " + new String(data));
            System.out.println("--" + stat.getCzxid() + "," +
                    stat.getMzxid() + "," +
                    stat.getVersion());
        }
    }
}

PS: 若你觉得可以、还行、过得去、甚至不太差的话,可以“关注”或者“点赞”一下,就此谢过!

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,193评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,306评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,130评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,110评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,118评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,085评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,007评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,844评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,283评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,508评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,667评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,395评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,985评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,630评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,797评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,653评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,553评论 2 352