To delete a single topic, you can use the Google Cloud console, the Google Cloud CLI, the client library, the Managed Kafka API, or the open source Apache Kafka APIs.
Required roles and permissions to delete a topic
To get the permissions that you need to delete a topic,
ask your administrator to grant you the
Managed Kafka Topic Editor(roles/managedkafka.topicEditor
)
IAM role on your project.
For more information about granting roles, see Manage access to projects, folders, and organizations.
This predefined role contains the permissions required to delete a topic. To see the exact permissions that are required, expand the Required permissions section:
Required permissions
The following permissions are required to delete a topic:
-
Delete a topic:
managedkafka.topics.delete
You might also be able to get these permissions with custom roles or other predefined roles.
For more information about this role, see Managed Service for Apache Kafka predefined roles.
Delete a topic
Deleting a topic is irreversible and results in the permanent loss of all data stored in that topic. Ensure that you have appropriate backups or have exported any necessary data before proceeding.
Ensure that you stop or reconfigure any consumers subscribed to the topic to consume from a different topic before deleting the topic.
To delete a topic, follow these steps:
Console
In the Google Cloud console console, go to the Clusters page.
- From the list of clusters, click the cluster to which the topic
that you want to delete belongs.
The Cluster details page opens. In the cluster details page, for the Resources tab, the topics are listed.
- Click the topic that you want to delete.
The Topic details page opens.
- Click Delete and confirm the operation.
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.
Run the
gcloud beta managed-kafka topics delete
command:gcloud beta managed-kafka topics delete TOPIC_ID \ --cluster=CLUSTER_ID \ --location=LOCATION_ID
This command removes the specified topic from the designated Google Cloud Managed Service for Apache Kafka cluster. All data associated with the topic is deleted, and the topic is longer accessible to producers or consumers.
Replace the following:
TOPIC_ID: The ID of the topic to delete.
CLUSTER_ID: The ID of the cluster where the topic is located.
LOCATION_ID: The location of the cluster.