Docs Cloud Develop Kafka Connect Disable Kafka Connect Disable Kafka Connect Kafka Connect is disabled by default on new clusters. If you previously enabled Kafka Connect on a cluster and want to disable it, you can use the Cloud API. Redpanda Support does not manage or monitor Kafka Connect, but Support can enable the feature for your account. Verify Kafka Connect is enabled If Kafka Connect is enabled on your cluster, you will see it configured on the Connect page in the Redpanda Cloud UI. You can also verify with the Cloud API: curl -sX GET "https://api.redpanda.com/v1/clusters/{cluster.id}" \ -H "Authorization: Bearer $AUTH_TOKEN" \ -H 'accept: application/json' | jq -r '.cluster.kafka_connect' Replace {cluster.id} with your actual cluster ID. You can find the cluster ID in the Redpanda Cloud UI. Look in the Details section of the cluster overview. If Kafka Connect is enabled, the response will show: "enabled": true Prerequisites You have the cluster ID of a cluster that has Kafka Connect enabled. You have a valid bearer token for the Cloud API. For details, see Authenticate to the API. Make sure to stop any active connectors gracefully before disabling Kafka Connect to avoid data loss or incomplete processing. Disable Kafka Connect After you are authenticated to the Cloud API, make a PATCH /v1/clusters/{cluster.id} request, replacing {cluster.id} with your actual cluster ID. curl -X PATCH "https://api.redpanda.com/v1/clusters/{cluster.id}" \ -H "Authorization: Bearer $AUTH_TOKEN" \ -H "Content-Type: application/json" \ -d '{"kafka_connect":{"enabled":false}}' The PATCH request returns the ID of a long-running operation. You can check the status of the operation by polling the GET /operations/{id} endpoint: curl -X GET "https://api.redpanda.com/v1/operations/{operation.id}" \ -H "Authorization: Bearer $AUTH_TOKEN" \ -H "Content-Type: application/json" When the operation is complete, the status will show "state": "STATE_COMPLETED". You can verify that Kafka Connect has been disabled by running the verification command from the previous section. The response should show: "enabled": false Back to top × Simple online edits For simple changes, such as fixing a typo, you can edit the content directly on GitHub. Edit on GitHub Or, open an issue to let us know about something that you want us to change. Open an issue Contribution guide For extensive content updates, or if you prefer to work locally, read our contribution guide . Was this helpful? thumb_up thumb_down group Ask in the community mail Share your feedback group_add Make a contribution 🎉 Thanks for your feedback! Monitor Connectors Single Message Transforms