Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Kafka Confluent REST API: Kafka Included?

I have an exisiting Kafka Cluster. I want to install the Kafka REST Proxy:

https://github.com/confluentinc/kafka-rest

If I install confluent does that come with Kafka? I am afraid if I still it on my master Kafka node confluent will override all my settings and mess up my Kafka cluster.

How do you install Kafka REST when you have an existing Kafka cluster? This is not made clear on their website. I have CentOS and was going to try:

sudo yum install confluent-platform-oss-2.11

Any help would be great....

like image 464
wwjdm Avatar asked Mar 20 '18 22:03

wwjdm


Video Answer


1 Answers

Download the Confluent Platform tarball, extract it, (or preferrably use APT/YUM) then only configure and run the REST proxy via kafka-rest-start

I wouldn't recommend using APT/YUM to install the entire confluent platform if you already have an existing Kafka. You might be able to only install kafka-rest using it, though.

Alternatively, backup your existing Kafka and Zookeeper property files, then place the Confluent Platform on top of the existing files, keeping the original files. If your Kafka is an old release, take this as a good opportunity to schedule an upgrade. Downloading Confluent isn't going to overwrite anything for the upstream Apache projects version for the corresponding release. If anything, it's an extension

like image 67
OneCricketeer Avatar answered Oct 20 '22 14:10

OneCricketeer