赞
踩
Zookeeper是 Apache Hadoop 项目下的一个子项目,是一个树形目录服务
Zookeeper 翻译过来就是动物园管理员,他是用来管 Hadoop(大象)、Hive(蜜蜂)、Pig(小猪)的管理员。简称zk
Hadoop: 存储海量数据和分析海量数据的工具
Hive: 基于Hadoop的一个数据仓库工具,用来进行数据提取、转化、加载
Pig: 基于Hadoop的大规模数据分析平台
Zookeeper 是一个开源的,分布式应用程序的协调服务
Zookeeper 提供的主要功能包括:
注册中心:比如Dubbo的注册中心
分布式锁:比如卖电影票有好多入口:官网、猫眼、淘票票
配置管理:比如用来保存项目的各种配置信息(数据库连接信息);常用的配置中心:Apollo(百度开源)、Nacos(阿里开源)
ZooKeeper 是一个树形目录服务,其数据模型和Unix的文件系统目录树很类似,拥有一个层次化结构。
这里面的每一个节点都被称为:ZNode,每个节点上都会保存自己的数据和节点信息。
节点可以拥有子节点,同时也允许少量(1MB)数据存储在该节点之下
节点可以分为四大类:
持久节点(PERSISTENT):创建后一直存在,直到主动删除此节点
临时节点(EPHEMERAL):生命周期依赖于客户端会话,对应客户端会话失效后节点自动清除:-e
持久顺序节点(PERSISTENT_SEQUENTIAL) :持久顺序节点,创建后一直存在,直到主动删除此节点:-s
临时顺序节点(EPHEMERAL_SEQUENTIAL) :临时节点在客户端会话失效后节点自动清:-es
启动 ZooKeeper 服务: ./zkServer.sh start
查看 ZooKeeper 服务状态: ./zkServer.sh status
停止 ZooKeeper 服务: ./zkServer.sh stop
重启 ZooKeeper 服务: ./zkServer.sh restart
连接ZooKeeper服务端
./zkCli.sh -server localhost:2181
若为连接本机可直接
./zkCli.sh
显示指定目录下节点
查看根节点
ls /查看指定节点
ls /zookeeper
创建根节点
create /节点path value
获取节点
create /节点path value
设置节点
set /节点path value
创建子节点
create /节点path/子节点
删除单个节点
delete /节点path
删除带有子节点的节点
deleteall /节点path
查看命令帮助
help
创建临时节点
create -e /节点path value
再次使用zk-cli连接服务端,验证刚才创建的临时节点已经没了
创建顺序节点,zk会自动在节点路径后边添加序号
create -s /节点path value
创建临时顺序节点
create -es /节点path value
czxid:节点被创建的事务ID
ctime: 创建时间
mZxid: 最后一次被更新的事务ID
mtime: 修改时间
pzxid:子节点列表最后一次被更新的事务ID
cversion:子节点的版本号
dataversion:数据版本号
aclversion:权限版本号
ephemeralOwner:用于临时节点,代表临时节点的事务ID,如果为持久节点则为0
dataLength:节点存储的数据的长度
numChildren:当前节点的子节点个数
查询节点详细信息
ls –s /节点path
Curator 是 Apache ZooKeeper 的Java客户端库,目标是简化 ZooKeeper 客户端的使用
常见的ZooKeeper Java API :
原生Java API
ZkClient
Curator
Curator 最初是 Netfix 研发的,后来捐献了 Apache 基金会,目前是 Apache 的顶级项目
官网:Welcome to Apache Curator | Apache Curator
创建项目curator-zk
pom.xml中添加Curator和日志坐标
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <!--单元测试-->
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.10</version>
- <scope>test</scope>
- </dependency>
- <!--curator-->
- <dependency>
- <groupId>org.apache.curator</groupId>
- <artifactId>curator-framework</artifactId>
- <version>4.0.0</version>
- </dependency>
- <dependency>
- <groupId>org.apache.curator</groupId>
- <artifactId>curator-recipes</artifactId>
- <version>4.0.0</version>
- </dependency>
- <!--日志-->
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- <version>1.7.21</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-log4j12</artifactId>
- <version>1.7.21</version>
- </dependency>
- </dependencies>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.1</version>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
日志配置文件:log4j.properties
- log4j.rootLogger=off,stdout
-
- log4j.appender.stdout = org.apache.log4j.ConsoleAppender
- log4j.appender.stdout.Target = System.out
- log4j.appender.stdout.layout = org.apache.log4j.PatternLayout
- log4j.appender.stdout.layout.ConversionPattern = [%d{yyyy-MM-dd HH/:mm/:ss}]%-5p %c(line/:%L) %x-%m%n
在java测试包下创建com\curator包创建测试类CuratorTest
- package com.curator;
-
- import org.apache.curator.RetryPolicy;
- import org.apache.curator.framework.CuratorFramework;
- import org.apache.curator.framework.CuratorFrameworkFactory;
- import org.apache.curator.retry.ExponentialBackoffRetry;
- import org.junit.Test;
-
- public class CuratorTest {
- /*
- * 建立连接
- */
- @Test
- public void testConnect() {
- /*
- * connectString 连接字符串。zk server 地址和端口
- * sessionTimeoutMs 会话差事时间 单位ms
- * connectionTimeoutMs 连接超时时间 单位ms
- * retryPolicy 重试策略
- */
- //重试策略
- RetryPolicy retryPolicy = new ExponentialBackoffRetry(3000, 10);
- //第一种方式
- /*CuratorFramework client = CuratorFrameworkFactory.newClient("192.168.235.129:2181",
- 60*1000,15*1000,retryPolicy);*/
- //常用第二种方式,更直观
- CuratorFramework client = CuratorFrameworkFactory.builder()
- .connectString("192.168.235.129:2181")
- .sessionTimeoutMs(60 * 1000)
- .connectionTimeoutMs(15 * 1000)
- .retryPolicy(retryPolicy)
- .namespace("ljb")
- .build();
- //开启连接
- client.start();
- }
-
- }
@Before:初始化方法(对于每一个测试方法都要执行一次)
@After:释放资源(对于每一个测试方法运行完后都要执行一次)
- package com.curator;
-
- import org.apache.curator.RetryPolicy;
- import org.apache.curator.framework.CuratorFramework;
- import org.apache.curator.framework.CuratorFrameworkFactory;
- import org.apache.curator.retry.ExponentialBackoffRetry;
- import org.apache.zookeeper.CreateMode;
- import org.junit.After;
- import org.junit.Before;
- import org.junit.Test;
-
- public class CuratorTest {
- /*
- * 建立连接
- */
- private CuratorFramework client;
- @Before
- public void testConnect() {
- /*
- * connectString 连接字符串。zk server 地址和端口
- * sessionTimeoutMs 会话差事时间 单位ms
- * connectionTimeoutMs 连接超时时间 单位ms
- * retryPolicy 重试策略
- */
- //重试策略
- RetryPolicy retryPolicy = new ExponentialBackoffRetry(3000, 10);
- //第一种方式
- /*CuratorFramework client = CuratorFrameworkFactory.newClient("192.168.235.129:2181",
- 60*1000,15*1000,retryPolicy);*/
- //常用第二种方式,更直观
- client = CuratorFrameworkFactory.builder()
- .connectString("192.168.235.129:2181")
- .sessionTimeoutMs(60 * 1000)
- .connectionTimeoutMs(15 * 1000)
- .retryPolicy(retryPolicy)
- .namespace("ljb")
- .build();
- //开启连接
- client.start();
- }
-
- /*
- * 创建节点:create 持久 临时 顺序 数据
- * 1.基本创建
- * 2.创建节点 带有数据
- * 3.设置节点的类型
- * 4.创建多级节点 /app1/p1
- */
- @Test
- public void testCreate() throws Exception {
- //1. 基本创建 :create().forPath("")
- //如果创建节点,没有指定数据,则默认将当前客户端的ip作为数据存储
- String path = client.create().forPath("/app1");
- System.out.println(path);
- }
-
- @Test
- public void testCreate2() throws Exception {
- //2. 创建节点 带有数据:create().forPath("",data)
- //节点默认类型:持久化
- String path = client.create().forPath("/app2", "hehe".getBytes());
- System.out.println(path);
- }
-
- @Test
- public void testCreate3() throws Exception {
- //3. 设置节点的类型:create().withMode().forPath("",data)
- //创建临时节点
- String path = client.create().withMode(CreateMode.EPHEMERAL).forPath("/app3");
- System.out.println(path);
- }
-
- @Test
- public void testCreate4() throws Exception {
- //创建多级节点 /app1/p1 :create().creatingParentsIfNeeded().forPath("",data)
- //creatingParentsIfNeeded():如果父节点不存在,则创建父节点
- String path = client.create().creatingParentsIfNeeded().forPath("/app4/p1");
- System.out.println(path);
- }
-
- @After
- public void close() {
- if (client != null) {
- client.close();
- }
- }
-
-
- }
- //====================get===============================
- /**
- * 查询节点:
- * 1. 查询数据:get: getData().forPath()
- * 2. 查询子节点: ls: getChildren().forPath()
- * 3. 查询节点状态信息:ls -s:getData().storingStatIn(状态对象).forPath()
- */
- @Test
- public void testGet1() throws Exception {
- //1. 查询数据:get
- byte[] data = client.getData().forPath("/app1");
- System.out.println(new String(data));
- }
- @Test
- public void testGet2() throws Exception {
- // 2. 查询子节点: ls
- List<String> path = client.getChildren().forPath("/");
- System.out.println(path);
- }
- @Test
- public void testGet3() throws Exception {
- Stat status = new Stat();
- System.out.println(status);
- //3. 查询节点状态信息:ls -s
- // store status in ...
- client.getData().storingStatIn(status).forPath("/app1");
- System.out.println(status);
- }
- //=====================set==================
- /**
- * 修改数据
- * 1. 基本修改数据:setData().forPath()
- * 2. 根据版本修改: setData().withVersion().forPath()
- * * version 是通过查询出来的。目的就是为了让其他客户端或者线程不干扰我。
- *
- * @throws Exception
- */
- @Test
- public void testSet() throws Exception {
- client.setData().forPath("/app1", "ljb".getBytes());
- }
-
- @Test
- public void testSetForVersion() throws Exception {
- Stat status = new Stat();
- //3. 查询节点状态信息:ls -s
- client.getData().storingStatIn(status).forPath("/app1");
- int version = status.getVersion();//查询出来的 3
- System.out.println(version);
- client.setData().withVersion(version).forPath("/app1", "hehe".getBytes());
- }
- //=================delete=================
- /**
- * 删除节点: delete deleteall
- * 1. 删除单个节点:delete().forPath("/app1");
- * 2. 删除带有子节点的节点:delete().deletingChildrenIfNeeded().forPath("/app1");
- * 3. 必须成功的删除:为了防止网络抖动。本质就是重试。 client.delete().guaranteed().forPath("/app2");
- * 4. 回调:inBackground
- */
- @Test
- public void testDelete() throws Exception {
- // 1. 删除单个节点
- client.delete().forPath("/app1");
- }
- @Test
- public void testDelete2() throws Exception {
- //2. 删除带有子节点的节点
- client.delete().deletingChildrenIfNeeded().forPath("/app4");
- }
-
- @Test
- public void testDelete3() throws Exception {
- //3. 必须成功的删除, 底层是自动重试
- client.delete().guaranteed().forPath("/app2");
- }
-
- @Test
- public void testDelete4() throws Exception {
- //4. 回调
- client.delete().guaranteed().inBackground(new BackgroundCallback(){
- @Override
- public void processResult(CuratorFramework client, CuratorEvent event) throws Exception {
- System.out.println("我被删除了~");
- System.out.println(event);
- }
- }).forPath("/app1");
- }
完整代码
- package com.curator;
-
- import org.apache.curator.RetryPolicy;
- import org.apache.curator.framework.CuratorFramework;
- import org.apache.curator.framework.CuratorFrameworkFactory;
- import org.apache.curator.framework.api.BackgroundCallback;
- import org.apache.curator.framework.api.CuratorEvent;
- import org.apache.curator.retry.ExponentialBackoffRetry;
- import org.apache.zookeeper.CreateMode;
- import org.apache.zookeeper.data.Stat;
- import org.junit.After;
- import org.junit.Before;
- import org.junit.Test;
-
- import java.util.List;
-
- public class CuratorTest {
- /*
- * 建立连接
- */
- private CuratorFramework client;
- @Before
- public void testConnect() {
- /*
- * connectString 连接字符串。zk server 地址和端口
- * sessionTimeoutMs 会话差事时间 单位ms
- * connectionTimeoutMs 连接超时时间 单位ms
- * retryPolicy 重试策略
- */
- //重试策略
- RetryPolicy retryPolicy = new ExponentialBackoffRetry(3000, 10);
- //第一种方式
- /*CuratorFramework client = CuratorFrameworkFactory.newClient("192.168.235.129:2181",
- 60*1000,15*1000,retryPolicy);*/
- //常用第二种方式,更直观
- client = CuratorFrameworkFactory.builder()
- .connectString("192.168.235.129:2181")
- .sessionTimeoutMs(60 * 1000)
- .connectionTimeoutMs(15 * 1000)
- .retryPolicy(retryPolicy)
- .namespace("ljb")
- .build();
- //开启连接
- client.start();
- }
- //======================create=====================
- /*
- * 创建节点:create 持久 临时 顺序 数据
- * 1.基本创建
- * 2.创建节点 带有数据
- * 3.设置节点的类型
- * 4.创建多级节点 /app1/p1
- */
- @Test
- public void testCreate() throws Exception {
- //1. 基本创建 :create().forPath("")
- //如果创建节点,没有指定数据,则默认将当前客户端的ip作为数据存储
- String path = client.create().forPath("/app1");
- System.out.println(path);
- }
-
- @Test
- public void testCreate2() throws Exception {
- //2. 创建节点 带有数据:create().forPath("",data)
- //节点默认类型:持久化
- String path = client.create().forPath("/app2", "hehe".getBytes());
- System.out.println(path);
- }
-
- @Test
- public void testCreate3() throws Exception {
- //3. 设置节点的类型:create().withMode().forPath("",data)
- //创建临时节点
- String path = client.create().withMode(CreateMode.EPHEMERAL).forPath("/app3");
- System.out.println(path);
- }
-
- @Test
- public void testCreate4() throws Exception {
- //创建多级节点 /app1/p1 :create().creatingParentsIfNeeded().forPath("",data)
- //creatingParentsIfNeeded():如果父节点不存在,则创建父节点
- String path = client.create().creatingParentsIfNeeded().forPath("/app4/p1");
- System.out.println(path);
- }
- //====================get===============================
- /**
- * 查询节点:
- * 1. 查询数据:get: getData().forPath()
- * 2. 查询子节点: ls: getChildren().forPath()
- * 3. 查询节点状态信息:ls -s:getData().storingStatIn(状态对象).forPath()
- */
- @Test
- public void testGet1() throws Exception {
- //1. 查询数据:get
- byte[] data = client.getData().forPath("/app1");
- System.out.println(new String(data));
- }
- @Test
- public void testGet2() throws Exception {
- // 2. 查询子节点: ls
- List<String> path = client.getChildren().forPath("/");
- System.out.println(path);
- }
- @Test
- public void testGet3() throws Exception {
- Stat status = new Stat();
- System.out.println(status);
- //3. 查询节点状态信息:ls -s
- // store status in ...
- client.getData().storingStatIn(status).forPath("/app1");
- System.out.println(status);
- }
- //=====================set==================
-
- /** 修改数据
- * 1. 基本修改数据:setData().forPath()
- * 2. 根据版本修改: setData().withVersion().forPath()
- * * version 是通过查询出来的。目的就是为了让其他客户端或者线程不干扰我。
- */
-
- @Test
- public void testSet() throws Exception {
- client.setData().forPath("/app1", "ljb".getBytes());
- }
-
- @Test
- public void testSetForVersion() throws Exception {
- Stat status = new Stat();
- //3. 查询节点状态信息:ls -s
- client.getData().storingStatIn(status).forPath("/app1");
- int version = status.getVersion();//查询出来的 3
- System.out.println(version);
- client.setData().withVersion(version).forPath("/app1", "hehe".getBytes());
- }
-
- //=================delete=================
- /**
- * 删除节点: delete deleteall
- * 1. 删除单个节点:delete().forPath("/app1");
- * 2. 删除带有子节点的节点:delete().deletingChildrenIfNeeded().forPath("/app1");
- * 3. 必须成功的删除:为了防止网络抖动。本质就是重试。 client.delete().guaranteed().forPath("/app2");
- * 4. 回调:inBackground
- */
- @Test
- public void testDelete() throws Exception {
- // 1. 删除单个节点
- client.delete().forPath("/app1");
- }
- @Test
- public void testDelete2() throws Exception {
- //2. 删除带有子节点的节点
- client.delete().deletingChildrenIfNeeded().forPath("/app4");
- }
-
- @Test
- public void testDelete3() throws Exception {
- //3. 必须成功的删除, 底层是自动重试
- client.delete().guaranteed().forPath("/app2");
- }
-
- @Test
- public void testDelete4() throws Exception {
- //4. 回调
- client.delete().guaranteed().inBackground(new BackgroundCallback(){
- @Override
- public void processResult(CuratorFramework client, CuratorEvent event) throws Exception {
- System.out.println("我被删除了~");
- System.out.println(event);
- }
- }).forPath("/app1");
- }
-
- @After
- public void close() {
- if (client != null) {
- client.close();
- }
- }
- }
ZooKeeper 允许用户在指定节点上注册一些Watcher,并且在一些特定事件触发的时候,ZooKeeper 服务端会将事件通知到感兴趣的客户端上去,该机制是 ZooKeeper 实现分布式协调服务的重要特性
ZooKeeper 中引入了Watcher机制来实现了发布/订阅功能能,能够让多个订阅者同时监听某一个对象,当一个对象自身状态变化时,会通知所有订阅者
ZooKeeper 原生支持通过注册Watcher来进行事件监听,但是其使用并不是特别方便,需要开发人员自己反复注册Watcher,比较繁琐
Curator引入了 Cache 来实现对 ZooKeeper 服务端事件的监听
ZooKeeper提供了三种Watcher:
NodeCache : 只监听某一个特定的节点
PathChildrenCache : 监控一个ZNode的子节点
TreeCache : 可以监控整个树上的所有节点,类似于PathChildrenCache和NodeCache的组合
只监听某一个特定的节点
- package com.curator;
-
- import org.apache.curator.RetryPolicy;
- import org.apache.curator.framework.CuratorFramework;
- import org.apache.curator.framework.CuratorFrameworkFactory;
- import org.apache.curator.framework.recipes.cache.NodeCache;
- import org.apache.curator.framework.recipes.cache.NodeCacheListener;
- import org.apache.curator.retry.ExponentialBackoffRetry;
- import org.junit.After;
- import org.junit.Before;
- import org.junit.Test;
-
- public class CuratorWatcherTest {
- /*
- * 建立连接
- */
- private CuratorFramework client;
- @Before
- public void testConnect() {
- /*
- * connectString 连接字符串。zk server 地址和端口
- * sessionTimeoutMs 会话差事时间 单位ms
- * connectionTimeoutMs 连接超时时间 单位ms
- * retryPolicy 重试策略
- */
- //重试策略
- RetryPolicy retryPolicy = new ExponentialBackoffRetry(3000, 10);
- //第一种方式
- /*CuratorFramework client = CuratorFrameworkFactory.newClient("192.168.235.129:2181",
- 60*1000,15*1000,retryPolicy);*/
- //常用第二种方式,更直观
- client = CuratorFrameworkFactory.builder()
- .connectString("192.168.235.129:2181")
- .sessionTimeoutMs(60 * 1000)
- .connectionTimeoutMs(15 * 1000)
- .retryPolicy(retryPolicy)
- .namespace("ljb")
- .build();
- //开启连接
- client.start();
- }
- @After
- public void close() {
- if (client != null) {
- client.close();
- }
- }
-
- /**
- * 演示 NodeCache:给指定一个节点注册监听器
- */
- @Test
- public void testNodeCache() throws Exception {
- //1. 创建NodeCache对象
- NodeCache nodeCache = new NodeCache(client,"/app1");
- //2. 注册监听
- nodeCache.getListenable().addListener(new NodeCacheListener() {
- @Override
- public void nodeChanged() throws Exception {
- System.out.println("节点变化了~");
- //获取修改节点后的数据
- byte[] data = nodeCache.getCurrentData().getData();
- System.out.println(new String(data));
- }
- });
- //3. 开启监听.如果设置为true,则开启监听是,加载缓冲数据
- nodeCache.start(true);
- while (true){
- }
- }
- }
监控一个ZNode的子节点
- package com.curator;
-
- import org.apache.curator.RetryPolicy;
- 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 org.junit.After;
- import org.junit.Before;
- import org.junit.Test;
-
- public class CuratorWatcherTest {
- /*
- * 建立连接
- */
- private CuratorFramework client;
- @Before
- public void testConnect() {
- /*
- * connectString 连接字符串。zk server 地址和端口
- * sessionTimeoutMs 会话差事时间 单位ms
- * connectionTimeoutMs 连接超时时间 单位ms
- * retryPolicy 重试策略
- */
- //重试策略
- RetryPolicy retryPolicy = new ExponentialBackoffRetry(3000, 10);
- //第一种方式
- /*CuratorFramework client = CuratorFrameworkFactory.newClient("192.168.235.129:2181",
- 60*1000,15*1000,retryPolicy);*/
- //常用第二种方式,更直观
- client = CuratorFrameworkFactory.builder()
- .connectString("192.168.235.129:2181")
- .sessionTimeoutMs(60 * 1000)
- .connectionTimeoutMs(15 * 1000)
- .retryPolicy(retryPolicy)
- .namespace("ljb")
- .build();
- //开启连接
- client.start();
- }
- @After
- public void close() {
- if (client != null) {
- client.close();
- }
- }
-
- @Test
- public void testPathChildrenCache() throws Exception {
- //1.创建监听对象
- PathChildrenCache pathChildrenCache = new PathChildrenCache(client,"/app2",true);
- //2. 绑定监听器
- pathChildrenCache.getListenable().addListener(new PathChildrenCacheListener() { @Override
- public void childEvent(CuratorFramework client, PathChildrenCacheEvent event) throws Exception {
- System.out.println("子节点变化了~");
- System.out.println(event);
- //监听子节点的数据变更,并且拿到变更后的数据
- //1.获取类型
- PathChildrenCacheEvent.Type type = event.getType();
- //2.判断类型是否是update
- if(type.equals(PathChildrenCacheEvent.Type.CHILD_UPDATED)){
- System.out.println("数据变了!!!");
- byte[] data = event.getData().getData();
- System.out.println(new String(data));
- }
- }
- });
- //3. 开启
- pathChildrenCache.start();
- while (true){
- }
- }
- }
可以监控整个树上的所有节点,类似于PathChildrenCache和NodeCache的组合
- package com.curator;
-
- import org.apache.curator.RetryPolicy;
- 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 org.junit.After;
- import org.junit.Before;
- import org.junit.Test;
-
- public class CuratorWatcherTest {
- /*
- * 建立连接
- */
- private CuratorFramework client;
- @Before
- public void testConnect() {
- /*
- * connectString 连接字符串。zk server 地址和端口
- * sessionTimeoutMs 会话差事时间 单位ms
- * connectionTimeoutMs 连接超时时间 单位ms
- * retryPolicy 重试策略
- */
- //重试策略
- RetryPolicy retryPolicy = new ExponentialBackoffRetry(3000, 10);
- //第一种方式
- /*CuratorFramework client = CuratorFrameworkFactory.newClient("192.168.235.129:2181",
- 60*1000,15*1000,retryPolicy);*/
- //常用第二种方式,更直观
- client = CuratorFrameworkFactory.builder()
- .connectString("192.168.235.129:2181")
- .sessionTimeoutMs(60 * 1000)
- .connectionTimeoutMs(15 * 1000)
- .retryPolicy(retryPolicy)
- .namespace("ljb")
- .build();
- //开启连接
- client.start();
- }
- @After
- public void close() {
- if (client != null) {
- client.close();
- }
- }
-
- @Test
- public void testTreeCache() throws Exception {
- //1. 创建监听器
- TreeCache treeCache = new TreeCache(client,"/app2");
- //2. 注册监听
- treeCache.getListenable().addListener(new TreeCacheListener() {
- @Override
- public void childEvent(CuratorFramework client, TreeCacheEvent event) throws Exception {
- System.out.println("节点变化了");
- System.out.println(event);
- }
- });
- //3. 开启
- treeCache.start();
- while (true){
- }
- }
- }
在我们进行单机应用开发,涉及并发同步的时候,我们往往采用synchronized(同步)或者Lock的方式来解决多线程间的代码同步问题,这时多线程的运行都是在同一个JVM之下,没有任何问题
但当我们的应用是分布式集群工作的情况下,属于多JVM下的工作环境,跨JVM之间已经无法通过多线程的锁解决同步问题
那么就需要一种更加高级的锁机制,来处理这种跨机器的进程之间的数据同步问题——这就是分布式锁
核心思想:当客户端要获取锁,则创建节点,使用完锁,则删除该节点
1.客户端获取锁时,在lock节点下创建临时顺序节点。
2.然后获取lock下面的所有子节点,客户端获取到所有的子节点之后,如果发现自己创建的子节点序号最小,那么就认为该客户端获取到了锁。使用完锁后,将该节点删除。
3.如果发现自己创建的节点并非lock所有子节点中最小的,说明自己还没有获取到锁,此时客户端需要找到比自己小的那个节点,同时对其注册事件监听器,监听删除事件。
4.如果发现比自己小的那个节点被删除,则客户端的Watcher会收到相应通知,此时再次判断自己创建的节点是否是lock子节点中序号最小的;如果是则获取到了锁,如果不是则重复以上步骤继续获取到比自己小的一个节点并注册监听
为什么创建的是临时顺序节点: 如果是持久化结点,如果获取锁的节点宕机,锁就不会被释放,如果是临时的锁就会被自动释放。是顺序节点是因为要找最小的节点所以要排个顺序
在Curator中有五种锁方案:
InterProcessSemaphoreMutex:分布式排它锁(非可重入锁)
InterProcessMutex:分布式可重入排它锁
InterProcessReadWriteLock:分布式读写锁
InterProcessMultiLock:将多个锁作为单个实体管理的容器
InterProcessSemaphoreV2:共享信号量
创建线程进行加锁设置
- package com.curator;
-
- import org.apache.curator.RetryPolicy;
- import org.apache.curator.framework.CuratorFramework;
- import org.apache.curator.framework.CuratorFrameworkFactory;
- import org.apache.curator.framework.recipes.locks.InterProcessMutex;
- import org.apache.curator.retry.ExponentialBackoffRetry;
-
- import java.util.concurrent.TimeUnit;
-
- public class Ticket12306 implements Runnable{
- private int tickets = 10;//数据库的票数
- private InterProcessMutex lock ;
- //在构造方法中创建连接,并且初始化锁
- public Ticket12306() {
- //重试策略
- RetryPolicy retryPolicy = new ExponentialBackoffRetry(3000, 10);
- //2.第二种方式
- //CuratorFrameworkFactory.builder();
- CuratorFramework client = CuratorFrameworkFactory.builder()
- .connectString("192.168.235.129:2181")
- .sessionTimeoutMs(60 * 1000)
- .connectionTimeoutMs(15 * 1000)
- .retryPolicy(retryPolicy)
- .build();
-
- //开启连接
- client.start();
- try {
- if (client.checkExists().forPath("/lock") != null) {
- //删除之前测试遗留的/lock节点
- client.delete().deletingChildrenIfNeeded().forPath("/lock");
- }
- } catch (Exception e) {
- e.printStackTrace();
- }
- lock = new InterProcessMutex(client, "/lock");
- }
-
- @Override
- public void run() {
- while(true){
- //获取锁
- try {
- lock.acquire(3, TimeUnit.SECONDS);//时间与时间单位
- if(tickets > 0){
- System.out.println(Thread.currentThread()+":"+tickets);
- Thread.sleep(100);
- tickets--;
- }
- } catch (Exception e) {
- e.printStackTrace();
- }finally {
- //释放锁
- try {
- lock.release();
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
- }
- }
- }
测试
- package com.curator;
-
- public class LockTest {
- public static void main(String[] args) {
- Ticket12306 ticket12306 = new Ticket12306();
- //创建客户端
- Thread t1 = new Thread(ticket12306,"携程");
- Thread t2 = new Thread(ticket12306,"飞猪");
- t1.start();
- t2.start();
- }
- }
-
Leader选举:
Serverid:服务器ID
比如有三台服务器,编号分别是1,2,3
编号越大在选择算法中的权重越大
Zxid:数据ID
服务器中存放的最大数据ID,值越大说明数据越新,在选举算法中数据越新权重越大
在Leader选举的过程中,如果某台ZooKeeper获得了超过半数的选票,则此ZooKeeper就可以成为Leader了
搭建要求
真实的集群是需要部署在不同的服务器上的,但是在我们测试时同时启动很多个虚拟机内存会吃不消,所以我们通常会搭建伪集群,也就是把所有的服务都搭建在一台虚拟机上,用端口进行区分。
我们这里要求搭建一个三个节点的Zookeeper集群(伪集群)
建立/usr/local/zookeeper-cluster目录,将解压后的Zookeeper复制到以下三个目录
mkdir /usr/local/zookeeper-cluster
cp -r apache-zookeeper-3.8.3-bin /usr/local/zookeeper-cluster/zookeeper-1
cp -r apache-zookeeper-3.8.3-bin /usr/local/zookeeper-cluster/zookeeper-2
cp -r apache-zookeeper-3.8.3-bin /usr/local/zookeeper-cluster/zookeeper-3
创建data目录 ,并且将 conf下zoo_sample.cfg 文件改名为 zoo.cfg
mkdir /usr/local/zookeeper-cluster/zookeeper-1/data
mkdir /usr/local/zookeeper-cluster/zookeeper-2/data
mkdir /usr/local/zookeeper-cluster/zookeeper-3/datamv /usr/local/zookeeper-cluster/zookeeper-1/conf/zoo_sample.cfg /usr/local/zookeeper-cluster/zookeeper-1/conf/zoo.cfg
mv /usr/local/zookeeper-cluster/zookeeper-2/conf/zoo_sample.cfg /usr/local/zookeeper-cluster/zookeeper-2/conf/zoo.cfg
mv /usr/local/zookeeper-cluster/zookeeper-3/conf/zoo_sample.cfg /usr/local/zookeeper-cluster/zookeeper-3/conf/zoo.cfg
配置每一个Zookeeper 的dataDir 和 clientPort 分别为2181 2182 2183
vim /usr/local/zookeeper-cluster/zookeeper-1/conf/zoo.cfg
dataDir=/usr/local/zookeeper-cluster/zookeeper-1/dataclientPort=2181
vim /usr/local/zookeeper-cluster/zookeeper-2/conf/zoo.cfg
clientPort=2182
dataDir=/usr/local/zookeeper-cluster/zookeeper-2/data
vim /usr/local/zookeeper-cluster/zookeeper-3/conf/zoo.cfg
clientPort=2183
dataDir=/usr/local/zookeeper-cluster/zookeeper-3/data
在每个zookeeper的 data 目录下创建一个 myid 文件,内容分别是1、2、3 。这个文件就是记录每个服务器的ID
echo 1 >/usr/local/zookeeper-cluster/zookeeper-1/data/myid
echo 2 >/usr/local/zookeeper-cluster/zookeeper-2/data/myid
echo 3 >/usr/local/zookeeper-cluster/zookeeper-3/data/myid
在每一个zookeeper 的 zoo.cfg配置客户端访问端口(clientPort)和集群服务器IP列表
vim /usr/local/zookeeper-cluster/zookeeper-1/conf/zoo.cfg
vim /usr/local/zookeeper-cluster/zookeeper-2/conf/zoo.cfg
vim /usr/local/zookeeper-cluster/zookeeper-3/conf/zoo.cfgserver.1=192.168.235.129:2881:3881
server.2=192.168.235.129:2882:3882
server.3=192.168.235.129:2883:3883
注:server.服务器ID=服务器IP地址:服务器之间通信端口:服务器之间投票选举端口
启动集群就是分别启动每个实例
/usr/local/zookeeper-cluster/zookeeper-1/bin/zkServer.sh start
/usr/local/zookeeper-cluster/zookeeper-2/bin/zkServer.sh start
/usr/local/zookeeper-cluster/zookeeper-3/bin/zkServer.sh start
启动后查询一下每个实例的运行状态
/usr/local/zookeeper-cluster/zookeeper-1/bin/zkServer.sh status
/usr/local/zookeeper-cluster/zookeeper-2/bin/zkServer.sh status
/usr/local/zookeeper-cluster/zookeeper-3/bin/zkServer.sh status
先查询第一个服务:Mode为follower表示是跟随者(从)
再查询第二个服务:Mod 为leader表示是领导者(主)
查询第三个为跟随者(从)
首先我们先测试如果是从服务器挂掉,会怎么样
把3号服务器停掉,观察1号和2号,发现状态并没有变化
/usr/local/zookeeper-cluster/zookeeper-3/bin/zkServer.sh stop
/usr/local/zookeeper-cluster/zookeeper-1/bin/zkServer.sh status
/usr/local/zookeeper-cluster/zookeeper-2/bin/zkServer.sh status
由此得出结论,3个节点的集群,从服务器挂掉,集群正常
再把1号服务器(从服务器)也停掉,查看2号(主服务器)的状态,发现已经停止运行了
/usr/local/zookeeper-cluster/zookeeper-1/bin/zkServer.sh stop
/usr/local/zookeeper-cluster/zookeeper-2/bin/zkServer.sh status
3个节点的集群,2个从服务器都挂掉,主服务器也无法运行。因为可运行的机器没有超过集群总数量的半数
我们再次把1号服务器启动起来,发现2号服务器又开始正常工作了。而且依然是领导者
/usr/local/zookeeper-cluster/zookeeper-1/bin/zkServer.sh start
/usr/local/zookeeper-cluster/zookeeper-2/bin/zkServer.sh status
我们把3号服务器也启动起来,把2号服务器停掉,停掉后观察1号和3号的状态
/usr/local/zookeeper-cluster/zookeeper-3/bin/zkServer.sh start
/usr/local/zookeeper-cluster/zookeeper-2/bin/zkServer.sh stop/usr/local/zookeeper-cluster/zookeeper-1/bin/zkServer.sh status
/usr/local/zookeeper-cluster/zookeeper-3/bin/zkServer.sh status
发现新的leader产生了
当集群中的主服务器挂了,集群中的其他服务器会自动进行选举状态,然后产生新得leader
我们再次测试,当我们把2号服务器重新启动起来启动后,会发生什么?2号服务器会再次成为新的领导吗
/usr/local/zookeeper-cluster/zookeeper-2/bin/zkServer.sh start
/usr/local/zookeeper-cluster/zookeeper-2/bin/zkServer.sh status
/usr/local/zookeeper-cluster/zookeeper-3/bin/zkServer.sh status
我们会发现,2号服务器启动后依然是跟随者(从服务器),3号服务器依然是领导者(主服务器),没有撼动3号服务器的领导地位
当领导者产生后,再次有新服务器加入集群,不会影响到现任领导者
在ZooKeeper集群服务中有三个角色:
Leader 领导者 :
1.处理事务请求(增删改操作)
2.集群内部各服务器的调度者
Follower 跟随者 :
1.处理客户端非事务请求(查询操作),转发事务请求给Leader服务器
2.参与Leader选举投票
Observer 观察者:
处理客户端非事务请求(查询操作),转发事务请求给Leader服务器
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。