Resuming the DataStax Apache Kafka Connector

After a pause resume the DataStax Apache Kafka Connector .

After a pause, resume the DataStax Apache Kafka Connector operations. To start running the connector again, use the following Kafka Connect REST API command:
curl -X PUT "http://worker_ip:port/connectors/connector_name/resume”
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 - resume

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