Deleting the DataStax Apache Kafka Connector

Remove the DataStax Apache Kafka Connector and all of its tasks.

To completely remove the DataStax Apache Kafka Connector and all of its tasks:
curl -X DELETE "http://worker_ip:port/connectors/connector_name"
where
  • worker_ip - The hostname or IP address of the Kafka Connect worker.
  • port - The listening port for the Kafka Connect REST API. By default this service runs on port 8083.
  • connector_name - DataStax Apache Kafka® Connector name.

Example - delete connector

curl -X DELETE "http://localhost:8083/connectors/cassandra-sink-distributed-example"
Tip: On success there is no output for this command.