封面
版权信息
前言
第1章 ZooKeeper核心理论
1.1 ZooKeeper的介绍
1.2 ZooKeeper的数据模型和Watch观察机制
1.3 ZooKeeper中的角色:Leader和Follower
1.4 ZooKeeper为什么要进行选举
1.5 Paxos算法和ZAB协议简介
1.6 ZooKeeper选举的算法
1.7 为什么建议服务器个数为奇数
1.8 ZooKeeper的特点
1.9 使用ZooKeeper的架构
1.10 znode类型
1.11 ZooKeeper的运用场景
1.12 ZooKeeper的五点保证
1.13 简单的API
第2章 搭建ZooKeeper单机运行环境
2.1 下载ZooKeeper
2.2 创建zoo.cfg配置文件
2.3 核心配置选项tickTime、dataDir、clientPort的解释
2.4 启动ZooKeeper服务
2.5 连接ZooKeeper服务
2.6 停止ZooKeeper服务
2.7 查看ZooKeeper服务状态
2.8 查看ZooKeeper所有命令
2.9 使用create命令创建znode
2.10 使用ls命令查看所有子节点
2.11 使用get命令查看节点对应的值
2.12 使用set命令对节点设置新值
2.13 使用delete命令删除节点
第3章 搭建ZooKeeper主从运行环境
3.1 配置选项initLimit和syncLimit的解释
3.2 创建myid文件及更改cfg配置文件
3.3 启动每个ZooKeeper实例
3.4 向Leader中存数据及从Follower中取数据
3.5 获取ZooKeeper实例的角色
3.6 命令sync的使用
第4章 ZooKeeper常见命令和Curator的使用
4.1 命令create [-s] [-e] [-c] [-t ttl] path [data] [acl]和get [-s] [-w] path的使用
4.2 命令deleteall的使用
4.3 命令close的使用
4.4 命令connect host:port的使用
4.5 命令getAcl [-s] path的使用与验证方式
4.6 设置认证方式与授权
4.7 命令quit的使用
4.8 配额的使用
4.9 命令history的使用
4.10 命令redo cmdno的使用
4.11 命令set [-s] [-v version] path data的使用:根据version实现乐观锁
4.12 命令delete [-v version] path的使用:根据version版本号删除
4.13 命令get [-s] [-w] path的使用:使用watch监控数据变化
4.14 命令printwatches on|off的使用
4.15 命令ls [-s] [-w] [-R] path的使用:使用-w参数只监控子节点变化
4.16 命令ls [-s] [-w] [-R] path的使用:使用-R参数取出所有子节点和子孙节点
4.17 命令ls [-s] [-w] [-R] path的使用:使用-s参数取出节点的状态数据
4.18 命令stat [-w] path的使用
4.19 命令removewatches path [-c|-d|-a] [-l]的使用
4.20 自实现递归watch的效果
4.21 命令whoami的使用
4.22 命令version的使用
4.23 命令getAllChildrenNumber path的使用
4.24 命令getEphemerals path的使用
第5章 软件技术架构的发展
5.1 单体架构
5.2 水平集群架构
5.3 垂直集群架构
5.4 SOA架构
5.5 微服务架构
5.6 CAP理论
第6章 Dubbo介绍
6.1 Dubbo介绍
6.2 使用服务注册和服务发现的必要性
第7章 Dubbo实战技能
7.1 创建my-parent父模块
7.2 创建my-api模块
7.3 使用ZooKeeper作为注册中心实现RPC通信
7.4 直连提供者
7.5 隐式参数
7.6 服务分组
7.7 多版本
7.8 启动时检查
7.9 令牌验证
7.10 超时和线程池大小
7.11 Nacos介绍
7.12 搭建Nacos单机运行环境
7.13 使用Nacos作为注册中心实现RPC通信
7.14 结合ZooKeeper注册中心集群
第8章 Dubbo高级技能
8.1 服务提供者集群
8.2 集群容错
8.3 负载均衡
更新时间:2025-03-28 16:39:59