How To Create a Pub/Sub Topic on GCP? Last Updated : 01 May, 2023 Comments Improve Suggest changes Like Article Like Report Pub/Sub is a messaging service that allows you to send and receive messages between independent applications. Separating the senders and receivers enables secure and consistent communication between independently developed applications. With Pub/Sub, you can expect quick delivery of messages while ensuring their durability. This messaging service is often used by developers to send notifications to users, real-time feeds of events, broadcast events, and Real-time event distribution. In this article, we will guide you on how to create a Pub/Sub topic on GCP (Google Cloud Platform). Terminologies used in Pub/SubPublisher: A client application that sends messages to a topic.Subscriber: A client application that receives messages from a subscription.Topic: A named resource to which messages are sent by publishers.Subscription: A named resource representing the stream of messages from a single, specific topic, to be delivered to the subscribing application.Steps To Creating a Pub/Sub TopicStep 1: Log in to the Google Cloud Console. After Login to your GCP account, you can view the menu with a list of Google Cloud Products and Services by clicking the Navigation menu at the top-left. Step 2: Navigate to the "Pub/Sub" > "Topics" in the left navigation bar. Step 3: Click on "Create Topic". Step 4: In the "Create topic" dialog box, enter a name for the topic in the "Topic ID" field. The topic must have a unique name.Leave other fields at their default value.Click CREATE.Step 5: Your Pub/Sub topic is now created. Comment More infoAdvertise with us Next Article How To Create a Pub/Sub Topic on GCP? T the_ravisingh Follow Improve Article Tags : Google Cloud Platform DevOps google-cloud-pub/sub Similar Reads How To Create VPC Network In GCP? A VPC or Virtual Private Cloud allows you to secure your virtual networking environment including IP addresses, subnets, and network gateways. VPC allows users to create a virtually protected environment for their virtual instances on the Cloud platform and have complete access to the environment. V 10 min read How To Create A GCP Project ? Google Cloud Platform is one of the leading providers of cloud computing in the industry. GCP provides multiple services, like infrastructure as a service (IaaS), platform as a service (PaaS), and many more. Using the Google Cloud Platform, businesses can get rid of managing physical servers and ins 7 min read How To Create File Store In GCP ? In other words, a Google Cloud Platform (GCP) is like having a high-performance shared drive in the cloud. It's a service that makes creating and managing file and application storage easy. Filestore is meant to manage tasks like file serving to websites and storing application data that needs to be 5 min read How To Create a Pull Request in GitHub? Pull requests are an important part of collaborative software development on GitHub. They allow developers to propose changes, review code, and discuss improvements before integrating new code into a project. This guide will walk you through the process of creating a pull request in GitHub, ensuring 3 min read How To Create Alerts In GCP ? Monitoring through the Google Cloud Platform (GCP) enables resource monitoring in the cloud. You will be able to monitor their performance, discover problems early, and make sure everything goes according to plan. You can maintain control over your cloud services and the smooth operation of your app 5 min read Like