You can edit a connector to update its configuration, such as changing the topics it reads from or writes to, modifying data transformations, or adjusting error handling settings.
To update a connector in a Connect cluster, you can use the Google Cloud console, the gcloud CLI, the Managed Service for Apache Kafka client library, or the Managed Kafka API. You can't use the open source Apache Kafka API to update the connectors.
Before you begin
Before updating a connector, review its existing configuration and understand the potential impact of any changes you make.
Required roles and permissions to update a connector
To get the permissions that
you need to edit a connector,
ask your administrator to grant you the
Managed Kafka Connector Editor (roles/managedkafka.connectorEditor
) IAM role on the project containing the Connect cluster.
For more information about granting roles, see Manage access to projects, folders, and organizations.
This predefined role contains the permissions required to edit a connector. To see the exact permissions that are required, expand the Required permissions section:
Required permissions
The following permissions are required to edit a connector:
-
Grant the update connector permission on the parent Connect cluster:
managedkafka.connectors.update
-
Grant the list connectors permission on the parent Connect cluster:
This permission is only required for updating a connector using the Google Cloud console
You might also be able to get these permissions with custom roles or other predefined roles.
For more information about the Managed Kafka Connector Editor role, see Google Cloud Managed Service for Apache Kafka predefined roles.
Editable properties of a connector
The editable properties of a connector depend on its type. Here's a summary of the editable properties for the supported connector types:
MirrorMaker 2.0 Source connector
- Comma-separated topic names or topic regex: The topics to be
replicated.
For more information about the property, see Topic names.
- Configuration: Additional configuration settings for
the connector.
For more information about the property, see Configuration.
- Task restart policy: The policy for restarting failed connector
tasks.
For more information about the property, see Task restart policy.
BigQuery Sink connector
- Topics: The Kafka topics from which to stream data.
For more information about the property, see Topics.
- Dataset: The BigQuery dataset to store the data.
For more information about the property, see Dataset.
- Configuration: Additional configuration settings for the connector.
For more information about the property, see Configuration.
- Task restart policy: The policy for restarting failed connector tasks.
For more information about the property, see Task restart policy.
Cloud Storage Sink connector
- Topics: The Kafka topics from which to stream data.
For more information about the property, see Topics.
- Cloud Storage bucket:
The Cloud Storage bucket to store the data.
For more information about the property, see Bucket.
- Configuration: Additional configuration settings for the connector.
For more information about the property, see Configuration.
- Task restart policy: The policy for restarting failed connector
tasks.
For more information about the property, see Task restart policy.
Pub/Sub Source connector
- Pub/Sub subscription: The Pub/Sub
subscription from which to receive messages.
For more information about the property, see Subscription.
- Kafka topic: The Kafka topic to which to stream messages.
For more information about the property, see Kafka topic.
- Configuration: Additional configuration settings for the connector.
For more information about the property, see Configuration.
- Task restart policy: The policy for restarting failed connector tasks.
For more information about the property, see Task restart policy.
Pub/Sub Sink connector
- Topics: The Kafka topics from which to stream messages.
For more information about the property, see Topics.
- Pub/Sub topic: The Pub/Sub topic to
which to send messages.
For more information about the property, see Pub/Sub topic.
- Configuration: Additional configuration settings for the connector.
For more information about the property, see Configuration.
- Task restart policy: The policy for restarting failed connector tasks.
For more information about the property, see Task restart policy.
Update a connector
Updating a connector may cause a temporary interruption in data flow while the changes are applied.
Console
-
In the Google Cloud console, go to the Connect clusters page.
-
Click the Connect cluster that hosts the connector you want to update.
The Connect cluster details page is displayed.
-
On the Resources tab, find the connector in the list and click its name.
You are redirected to the Connector details page.
-
Click Edit.
-
Update the required properties for the connector. The available properties vary depending on the connector type.
-
Click Save.
gcloud
-
In the Google Cloud console, activate Cloud Shell.
At the bottom of the Google Cloud console, a Cloud Shell session starts and displays a command-line prompt. Cloud Shell is a shell environment with the Google Cloud CLI already installed and with values already set for your current project. It can take a few seconds for the session to initialize.
-
Use the
gcloud alpha managed-kafka connectors update
command to update a connector:You can update a connector's configuration using either the
--configs
flag with comma-separated key-value pairs or the--config-file
flag with a path to a JSON or YAML file.Here is the syntax that uses the
--configs
flag with comma-separated key-value pairs.gcloud alpha managed-kafka connectors update CONNECTOR_ID \ --location=LOCATION \ --connect_cluster=CONNECT_CLUSTER_ID \ --configs=KEY1=VALUE1,KEY2=VALUE2...
Here is the syntax that uses the
--config-file
flag with a path to a JSON or YAML file.gcloud alpha managed-kafka connectors update CONNECTOR_ID \ --location=LOCATION \ --connect_cluster=CONNECT_CLUSTER_ID \ --config-file=PATH_TO_CONFIG_FILE
Replace the following:
-
CONNECTOR_ID: Required. The ID of the connector you want to update.
-
LOCATION: Required. The location of the Connect cluster containing the connector.
-
CONNECT_CLUSTER_ID: Required. The ID of the Connect cluster containing the connector.
-
KEY1=VALUE1,KEY2=VALUE2...: Comma-separated configuration properties to update. For example,
tasks.max=2,value.converter.schemas.enable=true
. -
PATH_TO_CONFIG_FILE: The path to a JSON or YAML file containing the configuration properties to update. For example,
config.json
.
-
Example command using --configs
:
gcloud alpha managed-kafka connectors update test-connector \ --location=us-central1 \ --connect_cluster=test-connect-cluster \ --configs=tasks.max=2,value.converter.schemas.enable=true
Example command using --config-file
. The following is a
sample file that is named `update_config.yaml`:
tasks.max: 3 topic: updated-test-topic
The following is a sample command that uses the file:
gcloud alpha managed-kafka connectors update test-connector \ --location=us-central1 \ --connect_cluster=test-connect-cluster \ --config-file=update_config.yaml