linux下zookeeper搭建以及java client调用

ZooKeeper是一个分布式的,开放源码的分布式应用程序协调服务,是Google的Chubby一个开源的实现,它是集群的管理者,监视着集群中各个节点的状态根据节点提交的反馈进行下一步合理操作。最终,将简单易用的接口和性能高效、功能稳定的系统提供给用户。

本帖没技术难度,最近在巩固zk这一块,记录下日后参考。

 

1.在linux上安装最新的zookeeper

  http://mirror.bit.edu.cn/apache/zookeeper/zookeeper-3.5.4-beta/,这里我们下载最新的。

 拷贝到服务器 usr/local下

 

 tar -zxvf zookeeper-3.5.4-beta.tar.gz


 

 

 

2.修改配置

cd /usr/local/zookeeper-3.5.4-beta/conf

拷贝zoo_samle.cfg为zoo.cfg

cp zoo_sample.cfg zoo.cfg  

编辑zoo.cfg文件

vi zoo.cfg   

 


# The number of milliseconds of each tick
tickTime=2000
# The number of ticks that the initial
# synchronization phase can take
initLimit=10
# The number of ticks that can pass between
# sending a request and getting an acknowledgement
syncLimit=5
# the directory where the snapshot is stored.
# do not use /tmp for storage, /tmp here is just
# example sakes.
dataDir=/usr/local/zookeeper-3.5.4-beta/data
dataLogDir=/usr/local/zookeeper-3.5.4-beta/logs
# the port at which the clients will connect
clientPort=2181
admin.serverPort=8081
# the maximum number of client connections.
# increase this if you need to handle more clients
#maxClientCnxns=60
#
# Be sure to read the maintenance section of the
# administrator guide before turning on autopurge.
#
"zoo.cfg" 30L, 1014C                                    

 

环境变量设置

export ZOOKEEPER_INSTALL=/usr/local/zookeeper-3.5.4-beta/
export PATH=$PATH:$ZOOKEEPER_INSTALL/bin

 

启动

cd /usr/local/zookeeper-3.5.4-beta/bin

./zkServer.sh start  

 

 

打开控制台看看

 

 

3.在springBoot环境下集成

pom文件增加依赖

       <dependency>
            <groupId>org.apache.zookeeper</groupId>
            <artifactId>zookeeper</artifactId>
            <version>3.4.6</version>
        </dependency>

 

增加测试类

package com.springboot.buy.zookeeper;

import org.apache.zookeeper.*;
import org.apache.zookeeper.ZooDefs.Ids;
import org.apache.zookeeper.data.Stat;
import org.junit.Before;
import org.junit.Test;

import java.util.List;

/**
 * @Author: nanJunYu
 * @Description:zookeeper客户端
 * @Date: Create in  2018/8/16 16:03
 * @params:
 * @return:
 */
public class TestZkClient {

    private static final String connectString = "10.x.x.x:2181";
    private static final int sessionTimeout = 30000;

    public static ZooKeeper zkClient = null;

    @Before
    public void init() throws Exception {
        zkClient = new ZooKeeper(connectString, sessionTimeout, new Watcher() {
            @Override
            public void process(WatchedEvent event) {
                // 收到事件通知后的回调函数(应该是我们自己的事件处理逻辑)
                System.out.println(event.getType() + "---" + event.getPath());
                try {
                    zkClient.getChildren("/", true);
                } catch (Exception e) {
                }
            }
        });

    }

    /**
     * 数据的增删改查
     *
     * @throws InterruptedException
     * @throws KeeperException
     */

    // 创建数据节点到zk中
    @Test
    public void testCreate() throws KeeperException, InterruptedException {
        // 参数1:要创建的节点的路径 参数2:节点大数据 参数3:节点的权限 参数4:节点的类型
        zkClient.create("/frank", "hello..zk".getBytes(), Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT);
        //上传的数据可以是任何类型,但都要转成byte[]
        System.out.println("frank...node create success!");
    }

    @Test
    public void testDelete() throws KeeperException, InterruptedException {
        zkClient.delete("/frank", -1);
        System.out.println("frank...node delete success!");
    }

    //判断znode是否存在
    @Test
    public void testExist() throws Exception {
        Stat stat = zkClient.exists("/frank", false);
        System.out.println(stat == null ? "not exist" : "exist");


    }

    // 获取子节点
    @Test
    public void getChildren() throws Exception {
        List<String> children = zkClient.getChildren("/", true);
        for (String child : children) {
            System.out.println(child);
        }
        Thread.sleep(Long.MAX_VALUE);
    }

    //获取znode的数据
    @Test
    public void getData() throws Exception {

        byte[] data = zkClient.getData("/frank", false, null);
        System.out.println(new String(data));

    }

    //删除znode
    @Test
    public void setData() throws Exception {

        zkClient.setData("/frank", "i miss you gao ya shu!".getBytes(), -1);
        byte[] data = zkClient.getData("/frank", false, null);
        System.out.println(new String(data));

    }


}

 

我们看下运行结果

 

感谢观看!

  • 0
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值