How to remove Kafka theme using Kafka REST Proxy?

How to remove Kafka theme using Kafka REST Proxy ? I tried the following command, but it returns an error message:

curl -X DELETE XXX.XX.XXX.XX:9092/topics/test_topic

If this is not possible, then how to update the deletion of messages and update the theme layout?

+4
source share
2 answers

According to the API Reference documentation, you cannot delete topics through REST Proxy, and I agree with them because such a destructive operation should not be accessible through an interface open from the outside.

, . . apache kafka

+3

Source: https://habr.com/ru/post/1665722/


All Articles