Dcoker sets up zookeeper cluster operation
Using Docker to build zookeeper cluster environment
Start docker service
The above situation indicates that the docker is not started and the docker service needs to be started manually
service docker start
This error is reported when starting the service
[root@localhost ~]# docker start 722cb567ad8b
Error response from daemon: d ...
Posted by slindstr on Tue, 12 Oct 2021 12:12:07 -0700
Zookeeper enterprise best practices
1. Course content
Today's main contents include:
1,ZooKeeper Core functions of-ZNode data model
2,ZooKeeper Core functions of-Watcher
3,Zookeeper actual combat
Application scenario
Implementation of actual enterprise case
Purpose of enterprise application case:
1,I will realize these needs
2,You should know that some commonly u ...
Posted by marty on Sun, 10 Oct 2021 19:41:14 -0700
A reliable coordination system for distributed systems -- Zookeeper
catalogue
1, About zookeeper
. 1 overview of zookeeper
2. Definition of Zookeeper
3. Working mechanism of Zookeeper
4. Features of Zookeeper
5. Data structure of zookeeper
2, Application scenario of Zookeeper
3, Zookeeper's election mechanism
1. The electoral mechanism was launched for the first time
2. It is not the f ...
Posted by stlewis on Tue, 05 Oct 2021 16:39:57 -0700
hadoop+zookeeper to set up a highly available cluster
hadoop to build highly available clusters
Question: What are the problems with existing clusters? HDFS clusters, in a single NN scenario, if the NN fails, the entire HDFS cluster will not be available (centralized cluster), the solution is to configure multiple NNs.
But the question arises again. Which one of these NN Ns provides service ...
Posted by saf on Tue, 28 Sep 2021 11:07:59 -0700
Nacos service governance
Introduction to service governance
Let's think about a problem first
Through the operations in the previous chapter, we can realize the invocation between microservices. However, we hard code the network address (ip, port) of the service provider into the code, which has many problems:
Once the service provider address changes, you need ...
Posted by aspekt9 on Fri, 24 Sep 2021 02:30:13 -0700
Related bug s about connecting zookeeper
Connecting zookeeper related bug s
After learning about ssm recently, you need to further study dubbo and its required registration center zookeeper. However, a bug was encountered when writing an introductory case, which is as follows:
Caused by: java.lang.IllegalStateException: zookeeper not connected
at org.apache.dubbo.remoting.zookeepe ...
Posted by Sillysoft on Mon, 20 Sep 2021 20:38:52 -0700
SpringCloudAlibabaNacos Discovery--Service Governance
3.1 Introduction to Service Governance
Think about a question first
With the actions in the previous chapter, we can already make calls between micro services.But we take the network address of the service provider
(
ip
Hardcoded into your code, such as ports, has many problems:
Once the service provider address cha ...
Posted by sprocket on Tue, 07 Sep 2021 10:31:38 -0700
[cluster building topic] - Kafka cluster building
Kafka -- cluster building
Service discovery: first of all, the mutual discovery of services between kfakas is realized by using Zookeeper. Therefore, Zookeeper must be built in advance. To build a Zookeeper cluster, please pay attention to the blog's article: Building Zookeeper cluster;Service relat ...
Posted by Bauer418 on Mon, 29 Jun 2020 20:50:55 -0700
Hbase client programming (Eclipse)
Hadoop stepping on the pit (4)
Hbase client programming (Eclipse)
Environmental Science
For the installation and configuration of Hbase and the configuration of Eclipse, please refer to the previous two articles
The version of hbase used in this series is 1.4.13
The selected hadoop version of this series is 2.8.5
Please pay attention to the per ...
Posted by Quest on Sun, 28 Jun 2020 21:59:57 -0700
Construction of Zookeeper single machine and cluster environment
Article catalog
1, Single machine environment construction
1.1 download
1.2 decompression
1.3 configure environment variables
1.4 modify configuration
1.5 start up
1.6 verification
2, Cluster environment construction
2.1 modify configuration
2.2 identification node
2.3 start cluster
2.4 cluster ve ...
Posted by jwagner on Thu, 25 Jun 2020 04:42:05 -0700