Top distributed open source project, coupled with this visualization tool, really fragrant!

As a top distributed open source project, ZooKeeper is widely used. Dubbo and Kafka are well-known open source projects. I've only heard of it before and haven't studied it carefully. Today, I'll take you to learn about ZooKeeper, mainly from three aspects: ZooKeeper installation, visualization tools and application. I hope it will be helpful t ...

Added by irken on Tue, 11 Jan 2022 05:50:34 +0200

2, Command line operation, API operation and Zookeeper election mechanism for Zookeeper cluster

3, Zookeeper cluster operation 3.1 cluster operation 3.1.1 installation of zookeeper on Cluster We learned earlier Installation of Zookeeper locally , the basic steps are similar, but after we install it on a host in the cluster, we still need to install the installation files Distribute across hosts , and the number of the configuration ...

Added by ericburnard on Mon, 10 Jan 2022 22:11:40 +0200

Zookeeper cluster and listener principle

1, Zookeeper cluster operation Objective: deploy Zookeeper on Hadoop 101, Hadoop 102 and Hadoop 103 nodes. 1.1 decompression and installation In Hadoop 101, unzip the Zookeeper installation package to the / usr/local / directory decompression [root@hadoop101 local]# tar -zxvf apache-zookeeper-3.6.3-bin.tar.gz Delete compressed package [roo ...

Added by dwu on Sat, 08 Jan 2022 13:23:42 +0200

Zookeeper high availability cluster & distributed message queue Kafka | Cloud computing

1. Set up zookeeper cluster 1.1 problems This case requires: Set up zookeeper cluster1 leader2 follower s1 observer 1.2 steps To implement this case, you need to follow the following steps. Step 1: install Zookeeper 1) Edit / etc/hosts and all cluster hosts can ping each other (configured on Hadoop 1 and synchronized to node-0001, ...

Added by biohazardep on Wed, 05 Jan 2022 11:08:14 +0200

hadoop high availability cluster building (HA) semester summary (please correct any errors)

(1) Preparation: Linux uses CentOS-7-x86 Official website download address: https://archive.kernel.org/centos-vault/7.6.1810/isos/x86_64/ Virtual machine VMware Workstation 16 Pro I know everything on this website Hadoop installation package version: hadoop-2.7.4 Official website download address: https://archive.apache.org/dist/hadoop/co ...

Added by matty on Wed, 05 Jan 2022 08:54:31 +0200

Kafka: Topic concept and API introduction

Topic Events are organized and persistently stored in Topic, which is similar to a folder in the file system, and events are the files in the folder. Topics in Kafka are always multi producers and multi subscribers: a Topic can have zero, one or more producers write events to it, or zero, one or more consumers subscribe to these events. The ev ...

Added by maseeha on Mon, 03 Jan 2022 11:25:07 +0200

Zookeeper client operation

1. Client command line operation 1.1 basic grammar commandexplainhelpDisplay all operation commandsls pathView the child nodes of the current node (can listen)-w listen for changes in child nodes-s additional secondary informationcreateCreate normal node-s contains sequences-e temporary (restart or timeout disappears)get pathObtain the value ...

Added by prueba123a on Thu, 30 Dec 2021 11:04:02 +0200

Docker compose deploying a single host zookeeper cluster

Docker compose installation You can refer to this zookeeper official website Brief introduction to zookeeper ZooKeeper is a high-performance coordination service for distributed applications, which is used to maintain configuration information, name, provide distributed synchronization and provide group services. As we all know, coordination ...

Added by justinjkiss on Thu, 30 Dec 2021 09:22:00 +0200

No, I don't know the watcher mechanism of Zookeeper. I'll go deep into the source code analysis

We can use zookeeper as the registry to realize service registration and discovery. The curator framework provides curator-x-discovery extension to realize out of the box service registration and discovery, but more often we choose to implement it ourselves. At that time, we need to pay extra attention to a feature of zookeeper, that is, wathce ...

Added by ziggs on Tue, 28 Dec 2021 16:56:19 +0200

Dubbo Cluster fault tolerant Cluster

1. Preface Online services are rarely deployed in a single machine, which does not meet the needs of the three high architecture of the Internet. Once the service is suspended, high availability is out of the question. In addition, the default maximum 200 concurrent processing of Dubbo single machine does not meet the so-called high concurrenc ...

Added by spyke01 on Tue, 28 Dec 2021 03:54:22 +0200