
ZooKeeper
文章平均质量分 71
介绍ZooKeeper的基础知识与源码分析
等後那场雪
喜欢研究多线程、分布式相关技术
展开
-
ZooKeeper架构篇 - 分布式协调服务ZooKeeper
本文介绍分布式协调服务-ZooKeeper原创 2023-01-28 19:45:17 · 548 阅读 · 0 评论 -
ZooKeeper架构篇 - Curator#LeaderLatch、LeaderSelector
本文解析Curator针对Leader选举提供的LeaderLatch、LeaderSelector展开分析。原创 2020-12-21 18:05:22 · 682 阅读 · 0 评论 -
ZooKeeper架构篇 - Curator分布式锁
本文分析Curator提供的几种分布式锁。原创 2020-08-18 17:43:24 · 672 阅读 · 0 评论 -
ZooKeeper架构 - 服务器角色 - Leader、Follower、Observer
本文解析ZooKeeper服务器的三个角色 - Leader、Follower、Observer。原创 2020-05-31 14:11:23 · 2114 阅读 · 0 评论 -
ZooKeeper架构篇 - 监听器机制
本文解析ZooKeeper的监听器机制原创 2020-04-30 16:53:41 · 1806 阅读 · 0 评论 -
ZooKeeper - 四字命令解析
四字命令操作方式echo “ruok” | nc 192.168.0.106 2181cons输出当前服务器的所有客户端的连接信息NIOServerCnxn代码: private class ConsCommand extends CommandThread { public ConsCommand(PrintWriter pw) { super...原创 2020-04-07 23:56:47 · 1154 阅读 · 0 评论 -
ZooKeeper架构篇 - Leader选举
本文解析 ZooKeeper 的 Leader 选举。原创 2020-03-25 10:54:24 · 526 阅读 · 0 评论 -
ZooKeeper java操作
public class ZooKeeperDemo implements Watcher { private static CountDownLatch latch = new CountDownLatch(1); private static ZooKeeper zooKeeper; public static void main(String[] args) { try {...原创 2019-03-22 17:21:59 · 167 阅读 · 0 评论