Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does kafka have any default web UI [closed]

I have a couple questions in Kafka.

1) Does Kafka have a default web UI?

2) How can we gracefully shutdown a standalone kafka server, kafka console- consumer/console-producer.

Any solutions will be highly appreciated.

Thank you.

like image 236
Visweswaran Radhakrishnan Avatar asked Mar 21 '18 02:03

Visweswaran Radhakrishnan


1 Answers

1) No Kafka does not have a default UI.

There are however a number of third party tools that can graphically display Kafka resources. Just Google for kafka ui and pick the tool that displays what you want and you like the most.

2) To gracefully shutdown a Kafka broker, just send a SIGTERM to the Kafka process and it will properly shutdown. This can be done via the ./bin/kafka-server-stop.sh tool.

If it's part of a cluster, new leaders will be elected on other brokers, otherwise it will simply cleanly close all its resources. Note that depending on the number of partitions, this can take a few minutes.

like image 120
Mickael Maison Avatar answered Sep 25 '22 06:09

Mickael Maison