Questions tagged [zookeeper]
49 questions
1
vote
1 answer
zookeeper ssl alert "alert bad certificate"
I am using Kafka (version 2.3.0) and Zookeeper (version 3.5.5-3) - the stable version is 3.6.3.
When I test the SSL of my Zookeeper using this command:
openssl s_client -showcerts -connect 127.0.0.1:2280 -CAfile /certs/ca-chain.cert.pem
and I am…

John Mark
- 13
- 2
1
vote
0 answers
Zookeeper ensemble leader reporting incorrect number of followers
I have a zookeeper ensemble running in Kubernetes consisting of 3 instances. The ensemble operates mostly correctly and successfully services the Solr cluster it is backing. One thing does seem incorrect however, and it's breaking some health checks…

Taz
- 147
- 3
- 16
1
vote
0 answers
How can I further analyze ram usage in a possible leak? [debian@HyperV + Kafka + Zookeeper]
We have a 3-box cluster Kafka+Zookeeper, in a virtualized enviroment (in Windows 2019 HyperV).
In the machines' config dynamic memory is disabled, and they have 4G RAM each (I know it's a very few amount for this kind of cluster, but the usage is…

Mise
- 11
- 2
0
votes
0 answers
zookeeper server due unable to load database on disk
We have kafka cluster with 3 nodes , each kafka include zookeeper server and schema registry
We get the following error on one of the zookeeper server
[2019-11-12 07:44:20,719] ERROR Unable to load database on disk…

shalom
- 461
- 13
- 29
0
votes
1 answer
hadoop + can we install zookeeper servers on kafka hosts
we want to dedicated the zookeeper servers only for kafka machines
so each kafka machine include the zookeeper server
and zookeeper server will serve only the kafka host and not other application
in that case is it ok?

shalom
- 461
- 13
- 29
0
votes
1 answer
Dose zookeeper servers must use SSD disks?
we want to install kafka cluster and 3 zookeeper servers
kafka should use the zookeeper servers in order to save the metadata on the zookeeper servers
ZK Data and Log files should be on disks, which have least contention from other I/O activities.…

shalom
- 461
- 13
- 29
0
votes
1 answer
kafka with ACL fails to connect zk and stops
I have a kafka installation (with ssl listener and ssl client authentication). It works fine until I try to add ACL.
this is the error (full error in the bottom):
[edit-1]
the first error on kafka startup is this:
[2018-07-25 14:15:10,498] ERROR…

ozma
- 121
- 1
- 5
0
votes
1 answer
How to manage failover in ZooKeeper across datacenters using observers
I have an application running in 3 different datacenters that uses ZooKeeper for many tasks. Following the recommended practices, we have deployed three ZooKeeper ensembles where one datacenter contains common ZooKeeper instances and the other two…

Matheus Portela
- 181
- 1
- 9
0
votes
1 answer
Why does DFSZKFailoverController kills Namenode process in hadoop?
I try to configure hadoop high availability cluster by following this tutorial:
http://www.edureka.co/blog/how-to-set-up-hadoop-cluster-with-hdfs-high-availability/
When I follow that article I faces with two main problems:
1. hdfs namenode…

Oleksandr
- 733
- 2
- 10
- 17
0
votes
1 answer
Zookeeper will not join the cluster. How to apply patch/upgrade?
I am running a 3 node zookeeper ensemble on ubuntu 14.04. After noticing that node1 was not running, I had to remove the snapshots of this node and now the server did start, but refuses to join the cluster.
This is the log from zookeeper:
2016-01-15…

merlin
- 2,093
- 11
- 39
- 78
0
votes
2 answers
How to add second ZooKeeper to same machine?
I am running 2 dedicated servers on which I plan to install Solrcloud. I have installed ZooKeeper using apt-get install zookeeperd and ZooKeeper is running on both systems.
From solr docs I learned that 3 zookeepers are recommended for…

merlin
- 2,093
- 11
- 39
- 78
0
votes
1 answer
Why does Accumulo require $ZOOKEEPER_HOME in addition to the IPs of the Zookeeper ensemble?
According to the documentation, Accumulo requires you to set $ZOOKEEPER_HOME (a local path) in the configuration files, and also requires a list of IPs for the Zookeeper ensemble. Why are IPs alone not sufficient?
What if your Zookeeper ensemble is…

Ianvdl
- 45
- 7
0
votes
1 answer
HDFS' ZKFC service unable to start
CDH4's ZooKeeper Failover Controller (ZKFC) has been installed.
Starting the ZKFC service:
[vagrant@localhost ~]$ sudo service hadoop-hdfs-zkfc start
Starting Hadoop zkfc: [ OK ]
starting…

030
- 5,901
- 13
- 68
- 110
0
votes
0 answers
ZooKeeper error ; unrecognized host name for local configuration
I am using Kylin 4+ and want to use Windows and run it locally (without Hadoop).
I follow this tut in their website which states that zookeeper config must be set to local like so:
kylin.env.zookeeper-is-local=true
Which supposes that Kylin won't…
0
votes
0 answers
How to enable TLSv1.3 on Zookeeper 3.8
I had set the below properties in zoo.cfg to enable TLSv1.3 on zookeper 3.8.0 , but in the logs I see that zookeeper is connected to other zookeeper node on TLSv1.2 that is the default version. I want to know how can I enable TLSv1.3 on zookeeper…