Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Kafka running on zookeeper subcontext or chroot

State: We are sharing zookeeper with kafka and several different services, which are using zookeeper for coordination. They are nicely operating on zookeeper subcontext. Looks like this:

/
   /service1/...
   /service2/...
   /brokers/...
   /consumers/...

My question is.. Is it possible to setup kafka to use subcontext? So, the other services can't eventually modify other services subcontext. It would be:

/
   /service1/...
   /service2/...
   /kafka/brokers/...
   /kafka/consumers/...

I saw this syntax in other projects:

zk://10.0.0.1,10.0.0.2/kafka

lets say. So, kafka would see only the brokers and consumers paths and there would be no way to mess up with other subcontext.

I'm afraid kafka is just not supported this format at the time. Other question is, is there a workaround? Like wrap up zookeeper somehow? Any ideas? Or kafka is supposed to use zookeeper exclusively. Is it best practice and we should spawn zookeeper for each project, which is overkill thus zookeeper need ensemble consists atleast of 3 nodes.

Thanks for your answer!

like image 650
Milan Baran Avatar asked Feb 24 '16 13:02

Milan Baran


People also ask

How does Kafka work with ZooKeeper?

Zookeeper is used by Kafka brokers to determine which broker is the leader of a given partition and topic and perform leader elections. Zookeeper stores configurations for topics and permissions. Zookeeper sends notifications to Kafka in case of changes (e.g. new topic, broker dies, broker comes up, delete topics, etc. ...

What is chroot in ZooKeeper?

Brief: Chroot is actually termed as zookeeper. chroot and it is one of the Kafka configuration parameter. Zookeeper is a robust distributed software and one of its feature is that, it is used for coordination and Kafka coordination is taken care by zookeeper for certain tasks.

Does Kafka depend on ZooKeeper?

Usually, Kafka uses Zookeeper to store and manage all the metadata information about Kafka clusters. Kafka also uses Zookeeper as a centralized controller that manages and organizes all the Kafka brokers or servers.


1 Answers

You can use the zk chroot syntax with Kafka, as detailed in the Kafka configuration documentation.

Zookeeper also allows you to add a "chroot" path which will make all kafka data for this cluster appear under a particular path. This is a way to setup multiple Kafka clusters or other applications on the same zookeeper cluster. To do this give a connection string in the form hostname1:port1,hostname2:port2,hostname3:port3/chroot/path which would put all this cluster's data under the path /chroot/path. Note that you must create this path yourself prior to starting the broker and consumers must use the same connection string.

The best practice is to maintain a single ZooKeeper cluster (at least that is what I've seen). Otherwise you are creating more operational workload for maintaining a good ZK ensemble.

The Kafka documentation on operationalizing ZK sort of recommends having multiple ZKs though:

Application segregation: Unless you really understand the application patterns of other apps that you want to install on the same box, it can be a good idea to run ZooKeeper in isolation (though this can be a balancing act with the capabilities of the hardware).

like image 96
Martin Serrano Avatar answered Oct 03 '22 22:10

Martin Serrano