Apache Kafka ConnectorDelete

Apache Kafka ConnectorDelete

Certified

Delete a Kafka Connect connector

Removes the connector and stops all of its tasks. Irreversible — its config and offsets are discarded.

yaml
type: io.kestra.plugin.kafka.ConnectorDelete
yaml
id: kafka_connector_delete
namespace: company.team

tasks:
  - id: delete_connector
    type: io.kestra.plugin.kafka.ConnectorDelete
    connectUrl: http://connect:8083
    connectorName: orders_jdbc_sink
Properties

Kafka Connect REST API base URL

For example http://connect: 8083. Kafka Connect has no dedicated Java admin client — every operation goes through this REST API.

Connector name

Additional HTTP headers

Sent on every request to the Connect REST API. Useful when the worker sits behind a reverse proxy or expects a bearer token, e.g. Authorization: Bearer ....

Basic auth password

Reference (ref) of the pluginDefaults to apply to this task.

Basic auth username

Required together with password when the Connect REST API is protected with HTTP basic auth. Leave both unset to call an unauthenticated worker — no Authorization header is sent in that case.

Deleted connector name