使用curator框架简单操作zookeeper 学习笔记

时间:2022-09-07 18:51:25

Curator 操作是zookeeper的优秀api(相对于原生api),满足大部分需求.而且是Fluent流式api风格.

参考文献:https://www.jianshu.com/p/70151fc0ef5d 感谢分享,动手敲一遍留个印象

curator-framework:对zookeeper的底层api的一些封装
curator-client:提供一些客户端的操作,例如重试策略等
curator-recipes:封装了一些高级特性,如:Cache事件监听、选举、分布式锁、分布式计数器、分布式Barrier等

环境:JDK1.8 、maven 、启动三台虚拟机做分部署环境 、 curator-recipes 4.0.1 、zookeeper3.4.8

maven 依赖:不依赖zookeeper会报错..

<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-recipes</artifactId>
<version>4.0.1</version>
</dependency>
<dependency>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
<version>3.4.8</version>
</dependency>
测试增删改查:
package com.zookeeper.curator;

import org.apache.curator.framework.CuratorFramework;
import org.apache.curator.framework.CuratorFrameworkFactory;
import org.apache.curator.retry.ExponentialBackoffRetry;
import org.apache.zookeeper.CreateMode; import java.util.List; /**
* Created by Administrator on 2018/6/25.
* @see org.apache.zookeeper.CreateMode
* PERSISTENT:持久化
PERSISTENT_SEQUENTIAL:持久化并且带序列号
EPHEMERAL:临时
EPHEMERAL_SEQUENTIAL:临时并且带序列号
*/
public class curatorRecipesDemo { final static String zookeeperAddress = "192.168.149.133:2181,192.168.149.135:2181,192.168.149.134:2181"; public static void main(String[] args) throws Exception {
CuratorFramework curatorClint =
CuratorFrameworkFactory.builder().
connectString(zookeeperAddress)//zkClint连接地址
.connectionTimeoutMs(2000)//连接超时时间
.sessionTimeoutMs(10000)//会话超时时间
.retryPolicy(new ExponentialBackoffRetry(1000, 3))
//重试策略
.namespace("myZookeeperTest")
//命名空间,默认节点
.build(); curatorClint.start(); curatorClint.create().forPath("/path");//默认持久化节点,以斜杠开头
System.out.println(curatorClint.getChildren().forPath("/"));
curatorClint.create().withMode(CreateMode.EPHEMERAL)
.forPath("/secondPath","hello,word".getBytes());
System.out.println("节点secondPath的数据"+new String(curatorClint.getData().forPath("/secondPath")));
curatorClint.setData().forPath("/secondPath","hello,myWorld!".getBytes());
System.out.println("节点secondPath的数据"+new String(curatorClint.getData().forPath("/secondPath"))); curatorClint.create()
.creatingParentContainersIfNeeded()
.forPath("/secondPath/second2/second3");//递归创建
List<String> list= curatorClint.getChildren().forPath("/secondPath");//查询节点的所有字节点
System.out.println(list);
curatorClint.delete().deletingChildrenIfNeeded().forPath("/secondPath/second2");//递归删除
System.out.println(curatorClint.checkExists().forPath("/secondPath/second2"));//判断节点是否存在
System.out.println(curatorClint.checkExists().forPath("/secondPath/second2/second3"));//判断节点是否存在
System.out.println(curatorClint.getChildren().forPath("/secondPath"));
curatorClint.delete().deletingChildrenIfNeeded().forPath("/secondPath"); //todo guaranteed()如果删除失败,会记录下来,只要会话有效,就会不断的重试,直到删除成功为止
//todo Stat stat 对象包含版本id,事物id等信息 } }

 创建的节点可以通过 zookeeper 安装下的bin目录 连接客户端 sh zkCli.sh   ls  /      分开斜杠命令进行查看(或./zkCli.sh -timeout 5000 -server 127.0.0.1:2181)

监听watcer   api

package com.zookeeper.curator;

import org.apache.curator.framework.CuratorFramework;
import org.apache.curator.framework.CuratorFrameworkFactory;
import org.apache.curator.framework.recipes.cache.*;
import org.apache.curator.retry.ExponentialBackoffRetry; import java.util.List;
import java.util.Objects; /**
* Created by Administrator on 2018/6/26.
*
* PathChildCache 监听一个节点下子节点的创建、删除、更新
* NodeCache 监听一个节点的更新和创建事件
* TreeCache 综合PatchChildCache和NodeCache的特性
*/
public class WatcherDemo {
final static String zookeeperAddress = "192.168.149.133:2181,192.168.149.135:2181,192.168.149.134:2181"; public static void main(String[] args) throws Exception {
CuratorFramework curatorClint =
CuratorFrameworkFactory.builder().
connectString(zookeeperAddress)//zkClint连接地址
.connectionTimeoutMs(2000)//连接超时时间
.sessionTimeoutMs(10000)//会话超时时间
.retryPolicy(new ExponentialBackoffRetry(1000, 3))
//重试策略
.namespace("myZookeeperTest")
//命名空间,默认节点
.build(); curatorClint.start();
List<String> list= curatorClint.getChildren().forPath("/");
if(Objects.nonNull(list)){
if( !list.contains("myWatch")){
curatorClint.delete().deletingChildrenIfNeeded().forPath("/myWatch");
}
}else {
curatorClint.create().forPath("/myWatch");
} PathChildrenCache pathChildrenCache= pathChildrenCache = new PathChildrenCache(curatorClint,"/myWatch",false);
PathChildrenCacheListener pathChildrenCacheListener=new PathChildrenCacheListener() {
@Override
public void childEvent(CuratorFramework curatorFramework, PathChildrenCacheEvent pathChildrenCacheEvent) throws Exception {
System.out.println("pathChildrenCacheListener::::->"+pathChildrenCacheEvent.getData());
}
};
pathChildrenCache.getListenable().addListener(pathChildrenCacheListener);//注册监听事件
pathChildrenCache.start(); NodeCache nodeCache=new NodeCache(curatorClint,"/myWatch",false);
NodeCacheListener nodeCacheListener=new NodeCacheListener() {
@Override
public void nodeChanged() throws Exception {
System.out.println("nodeCacheListener::::->:"+nodeCache.getCurrentData().getPath());
}
};
nodeCache.getListenable().addListener(nodeCacheListener);
nodeCache.start(); TreeCache treeCache=new TreeCache(curatorClint,"/myWatch");
TreeCacheListener treeCacheListener=new TreeCacheListener() {
@Override
public void childEvent(CuratorFramework curatorFramework, TreeCacheEvent treeCacheEvent) throws Exception {
System.out.println("treeCacheListener::::->"+treeCacheEvent.getData());
}
};
treeCache.getListenable().addListener(treeCacheListener);
treeCache.start(); curatorClint.create().forPath("/myWatch/child22","生个好孩子".getBytes());
curatorClint.create().creatingParentContainersIfNeeded().forPath("/myWatch/child22/child22","生个好孩子".getBytes());
curatorClint.setData().forPath("/myWatch/child222","生个好孩子aaaa".getBytes());
System.in.read();//阻塞不然启动后clint就关掉了
} }

											

使用curator框架简单操作zookeeper 学习笔记的更多相关文章

  1. ZooKeeper学习笔记三:使用ZooKeeper实现一个简单的配置中心

    作者:Grey 原文地址:ZooKeeper学习笔记三:使用ZooKeeper实现一个简单的配置中心 前置知识 完成ZooKeeper集群搭建以及熟悉ZooKeeperAPI基本使用 需求 很多程序往 ...

  2. ZooKeeper学习笔记四:使用ZooKeeper实现一个简单的分布式锁

    作者:Grey 原文地址: ZooKeeper学习笔记四:使用ZooKeeper实现一个简单的分布式锁 前置知识 完成ZooKeeper集群搭建以及熟悉ZooKeeperAPI基本使用 需求 当多个进 ...

  3. ZooKeeper 学习笔记

    ZooKeeper学习笔记 1.   zookeeper基本概念 zookeeper是一个分布式的,开放源码的分布式应用程序协调服务,是hadoop和Habase的重要组件,是为分布式应用提供一致性服 ...

  4. delphi操作xml学习笔记 之一 入门必读

    Delphi 对XML的支持---TXMLDocument类       Delphi7 支持对XML文档的操作,可以通过TXMLDocument类来实现对XML文档的读写.可以利用TXMLDocum ...

  5. ZooKeeper学习笔记(二)——内部原理

    zookeeper学习笔记(二)--内部原理 1. zookeeper的节点的类型 总的来说可以分为持久型和短暂型,主要区别如下: 持久:客户端与服务器端断开连接的以后,创建的节点不会被删除: 持久化 ...

  6. Zookeeper学习笔记&lpar;中&rpar;

    Zookeeper学习笔记(中) Zookeeper的基本原理和基本实现 深入了解ZK的基本原理 ZK的一致性: ZAB 协议: Zookeeper 原子消息广播协议 ZK通过选举保证 leader ...

  7. Zookeeper学习笔记&lpar;上&rpar;

    Zookeeper学习笔记 本篇主要是一些基本的介绍和API的使用介绍, 有些只是记录了知识点,而没有完全在笔记中详细解释, 需要自行查找资料补充相关概念 主要参考了课程中的内容: Zookeeper ...

  8. PHP操作MongoDB学习笔记

    <?php/*** PHP操作MongoDB学习笔记*///*************************//**   连接MongoDB数据库  **////*************** ...

  9. Flas-SQLAchemy数据库操作使用学习笔记

    Flas-SQLAchemy数据库操作使用学习笔记 Flask-SQLALchemy 是一个给你的应用添加 SQLALchemy 支持的 Flask 扩展.SQLALchemy 是Python语言的S ...

随机推荐

  1. IIS实现反向代理

    http://www.cnblogs.com/dreamer-fish/p/3911953.html C#实现: C#写的一个反向代理,可以缓存 https://www.oschina.net/cod ...

  2. &lowbar;&lowbar;iter&lowbar;&lowbar;

    [__iter__] 如果一个类想被用于for ... in循环,类似list或tuple那样,就必须实现一个__iter__()方法,该方法返回一个迭代对象,然后,Python的for循环就会不断调 ...

  3. 使用PPT制作交叉密文图

    曾几何时,一张图火遍大江南北,互相流传. 其中的奥秘早已破解出来,但是仍乐趣无穷. 来回顾这样一张图吧! 最近,在朋友圈中,这样的一种图又流行起来,被改成不同的版本. 可是这样一种图片到底是怎样做出来 ...

  4. Pagekit安装

    Pagekit 是一个模块化,轻量的 CMS 系统,基于现代化的技术,如 Symfony 组件和 Doctrine.它提供了一个很好的平台,用于主题和延伸开发.Pagekit 为您提供了工具来创造美丽 ...

  5. 剑指offier第三题

    package 剑指office; /* * 第三题二维数组查找 * 在一个二维数组中,每一行都按照从左到右递增的顺序排序, * 每一列都按照从上到下递增的顺序排序.请完成一个函数,输入这样的一个二维 ...

  6. kernel Makefile Kconfig说明

    实际文档位置:Documentation/kbuild/makefiles.txt,此为翻译稿. *************************************************** ...

  7. mybatis 模糊查询 like的三种方式

    第一种 public void selectBykeyWord(String keyword) { String id = "%" + keyword + "%&quot ...

  8. 小程序一个大盒子里面的盒子内容居中对其显示wxss写法

    对小程序研究感兴趣的可加(交流QQ群:604788754)入群联系群主可得到小程序教学资源. 这个案例只是想展示效果,内容部分未进行for循环绑定处理: WXML: <view class=&q ...

  9. cf1063A Oh Those Palindromes &lpar;贪心&rpar;

    给一些字符 求它们能拼成的字符串 的回文子串的个数最大值 对应的那个字符串 就是把相同的都放一起是最优的,排下序就行了... #include<bits/stdc++.h> #define ...

  10. Mac Apache Tomcat 配置

    1.配置准备工作 1)配置 Tomcat 准备工作 下载相关软件 apache-tomcat-9.0.6.zip tomcat 官网 Tomcat 配置软件下载地址,密码:sgrn. 2)配置注意事项 ...