Deleting a Connector in Kafka Connect without the REST API

Kafka Connect exposes a REST interface through which all config and monitoring operations can be done. You can create connectors, delete them, …

Sending multiline messages to Kafka

(SO answer repost) You can use kafkacat to send messages to Kafka that include line breaks. To do this, use its -D operator to specify a custom …

Quick ’n Easy Population of Realistic Test Data into Kafka

tl;dr Use curl to pull data from the Mockaroo REST endpoint, and pipe it into kafkacat, thus: curl -s …