ZooKeeper <二> 安装使用

ZooKeeper <二> 安装使用

首页枪战射击gz穿越火线单机版全武器更新时间:2024-06-18
ZooKeeper <二> 安装使用

ZooKeeper version: 3.6.0

安装

本示例均在 CentOS Linux release 8.1.1911 (Core) 下进行

同时需要保证当前机器含有 java 环境,java 安装步骤可参考 这里

1. 下载

首先到 Apache Download 寻找合适的版本,这里以 3.6.0 为例,下载

wget https://downloads.apache.org/zookeeper/current/apache-zookeeper-3.6.0-bin.tar.gz

2. 解压

tar -xvf apache-zookeeper-3.6.0-bin.tar.gz

3. 单机版启动

如图示,我在解压完后,将那串长长的目录名,重命名为 zk1, 同时又 cp 了 zk2 和 zk3,cp zoo_sample.cfg 为 zoo.cfg

# 修改名称 mv apache-zookeeper-3.6.0-bin zk1 # cp 两份,为后面的伪集群搭建做准备 cp -r zk1 zk2 cp -r zk1 zk3 # 增加 zoo.cfg 配置 cd zk1 && cp conf/zoo_sample.cfg zoo.cfg

这里我没有修改任何地方,直接 start

./bin/zkServer.sh start /usr/bin/java ZooKeeper JMX enabled by default Using config: /home/dylan/tmp/zookeeper/zk1/bin/../conf/zoo.cfg Starting zookeeper ... STARTED

可以看到, zk1 已经启动,我们验证一下:

./bin/zkServer.sh status /usr/bin/java ZooKeeper JMX enabled by default Using config: /home/dylan/tmp/zookeeper/zk1/bin/../conf/zoo.cfg Client port found: 2181. Client address: localhost. Mode: standalone

通过 zkServer.sh status ,能看到 zk 已经正常启动,Mode 为 standalone ,当我们配置 ensemble 时,这个 Mode 就会变成 Leader/Follower/Observer

4. 单机伪集群版

前面我们已经 cp 了 3 个 zk,现在我们再添加一个 observer 节点,同时,在各个 dataDir 新建 myid 文件,并写入值,如 zk1 的 dataDir 为 /tmp/zk1 ,则我们执行: echo 1 > /tmp/zk1/myid

4.1 四份配置如下:

其中涉及到的配置项有:

To get low latencies on updates it is important to have a dedicated transaction log directory. By default transaction logs are put in the same directory as the data snapshots and myid file. The dataLogDir parameters indicates a different directory to use for the transaction logs.

By default, Observers connect to the Leader of the quorum along its quorum port and this is how they learn of all new proposals on the ensemble. There are benefits to allowing Observers to connect to the Followers instead as a means of plugging into the commit stream in place of connecting to the Leader. It shifts the burden of supporting Observers off the Leader and allow it to focus on coordinating the commit of writes. This means better performance when the Leader is under high load, particularly high network load such as can happen after a leader election when many Learners need to sync. It reduces the total network connections maintained on the Leader when there are a high number of observers. Activating Followers to support Observers allow the overall number of Observers to scale into the hundreds. On the other end, Observer availability is improved since it will take shorter time for a high number of Observers to finish syncing and start serving client traffic.

4.2 启动

分别执行(注意下执行目录)

./zk1/bin/zkServer.sh start

上面没有更改日志位置,所以可以在 ./zk1/logs 下面找到

当只启动了 zk1 时,日志如上所示,它在尝试和 zk2 ,zk3 通信时,会一直失败,当我们启动了 zk2 和 zk3 时,整个集群就会稳定下来。

因为单机版的问题,这里 zk4 ,即 observer 的 observerMasterPort 配置为 2481,即 zk1 ,所以如果 zk1 当选为 Leader ,此时 zk4 会疯狂刷日志,报 connection refused,别问我怎么知道的!!!

通过这张图我们可以看到 ,zk1 成功当选了 leader,则它监听的端口有:

Follower 监听的端口有(这里以 zk2 为例):

4.3 简单使用

# 不加[]中内容,默认连接到 2181 端口 ./zk1/bin/zkCli.sh [-server localhost:2182] ​ # 输入 help ,会打印出命令 # 可以看到 create 相关: create [-s] [-e] [-c] [-t ttl] path [data] [acl] # 我们用 create 创建一个节点,其中 data 为 "zk_test_data", acl 我们暂时不设置 create /zk_test "zk_test_data" ​ # 通过 ls / 能到节点已经创建 ls / ​ # get 获取节点信息, -s 参数会把整个节点信息 zxid 等打印出来 get -s /zk_test ​ # 更多命令请百度/Google # 使用到此结束

ACL

ACL 有关的官方文档请点击 这里

所谓 ACL ,即 Access Control Lists ,访问控制列表。在 zk 中,用来控制访问 znode。

1. ACL 构成

<scheme>:<id>:<perms>

// org.apache.zookeeper.data.ACL public ACL( int perms, org.apache.zookeeper.data.Id id) { this.perms=perms; this.id=id; } // org.apache.zookeeper.data.Id public Id( String scheme, String id) { this.scheme=scheme; this.id=id; } // org.apache.zookeeper.ZooDefs.Perms public interface Perms { int READ = 1 << 0; int WRITE = 1 << 1; int CREATE = 1 << 2; int DELETE = 1 << 3; int ADMIN = 1 << 4; int ALL = READ | WRITE | CREATE | DELETE | ADMIN; }

通过源码我们可以看到, ACL = Id perms 构成 , 而 Id = scheme id

2. Perms

同样由源码可以看到 perms 主要包含以下几种:

3. 内置权限方案

zookeeper 内置的 scheme 有如下几种:

事实上,还有 sasl,你可以在 zoo.cfg 中进行配置:

authProvider.1=org.apache.zookeeper.server.auth.SASLAuthenticationProvider

以及 super !!!

Watch

Watch 有关的官方文档请参考 这里

zk 的 watch 机制,也是我们 这篇文章 提到的很多应用的保证之一,正式因为 zk 的 watch 机制提供了这些保证,我们才能说,这样做,是可以的。

那么,zk 的 watch 机制究竟是什么?又提供了哪些保证呢?

zk watch event ,当 watch 的 数据发生变化时,watch event 会 一次触发 ,发送给设置了 watch event 的客户端。

1. watch event type

我们在 org.apache.zookeeper.Watcher.Event.EventType 能看到, 3.6 版本总共有如下几种 watch event:

2. zookeeper guarantees about watches

基于 watch event 的特点,有两个地方需要特别注意:

To Be Continue

  1. FastLeaderElection
  2. Zab 协议详解
  3. 部分源码解析
  4. watch 源码解析
查看全文
大家还看了
也许喜欢
更多游戏

Copyright © 2024 妖气游戏网 www.17u1u.com All Rights Reserved