question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

[Question] Zookeeper communication issue (strimzi-operator version >= 0.18.0)

See original GitHub issue

Hi all, on earlier version (strimzi<=0.16.0 for example) I can communicate with zookeeper using initContainer, check that it’s up and running using next script:

result=1; until [ $result -eq 0 ]; do OK=$(echo ruok | nc -w 1 octopus-zookeeper-nodes 21810 ); if [ "$OK" == "imok" ]; then result=0; echo "zookeeper returned imok!"; else echo waiting for zookeeper to be ready; sleep 1; fi; done; echo "Success: zookeeper is up"

Now it not works with port 21810 and even with 2181,12181…

Is port 21810 is not usable now? Could you please advise how can now we should communicate with zookeeper without authorization?

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Comments:12 (6 by maintainers)

github_iconTop GitHub Comments

2reactions
scholzjcommented, Sep 10, 2020

Well, that is one of the reasons the zoo-entrance mini-project exists. But Zookeeper will be gone from Kafka soon - so I think using any tool which requires Zookeeper is a liability these days.

0reactions
vutkincommented, Sep 10, 2020

By the way some tools like CMAK, kafka-tools and confluent control center need to connect to zookeeper too.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Using Strimzi (0.18.0)
Strimzi provides a way to run an Apache Kafka cluster on Kubernetes in various deployment configurations.
Read more >
AI Manager known issues and limitations - IBM
Persistence service fails and causes system instability and failures with the Event Grouping service; Strimzi operator conflict with OpenShift 4.5 causing ...
Read more >
Strimzi Kafka Zookeeper not starting - Stack Overflow
i'm trying to deploy kafka using strimzi, but zookeeper keep throwing ... This is a problem of how your DNS works and how...
Read more >
External Access of Apache Kafka on OpenShift - mimacom blog
Containers are a solution to the problem of how to get the software to run ... We will deploy a Kafka cluster with...
Read more >
1861772 – amq-streams-cluster-operator couldn't start on IPv6 ...
The problem seems to be related to a bug in the okhttp3 library that ... .generex-1.0.2.redhat-1.jar:lib/io.strimzi.operator-common-0.18.0.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found