Home > Article > Backend Development > Using Google Cloud Pub/Sub in Go: A Complete Guide
With the rise of cloud computing, more and more enterprises and developers are beginning to use cloud services to build applications. In these cloud services, Message Queue is widely used to help transmit and process large amounts of data. Google Cloud Pub/Sub is an efficient, reliable, and easy-to-use messaging service for a variety of applications developed on Google Cloud Platform. This article will introduce how to use Google Cloud Pub/Sub in Go language.
Overview of Google Cloud Pub/Sub
Google Cloud Pub/Sub is a fully managed messaging service designed to provide you with what you need to build real-time and reliable applications on Google Cloud infrastructure. It is a publish/subscribe model that allows you to pass messages between publications and subscriptions. Google Cloud handles all message transmission and management for you in the background, you just need to call the API to send and receive messages.
Using Google Cloud Pub/Sub in Go language
Using Google Cloud Pub/Sub in Go language requires completing the following three steps:
Step one: Create a Google Cloud Pub/Sub project and set authorization
Create a project in the Google Cloud Console, select the paid account to pay, and enable the Cloud Pub/Sub API. Next, create a service account and set its roles to "Pub/Sub Administrator" and "Pub/Sub Publisher." You will also need to create a key for the service account to authenticate when using Google Cloud Pub/Sub in Go.
Step 2: Use the Google Cloud Pub/Sub API to create a topic and subscribe
Use the Google Cloud Pub/Sub console or API to create a topic and subscription. A topic represents a sender or publisher to whom messages can be sent. A subscription represents a recipient, or subscriber, who can receive messages from a topic. Topics and subscriptions are both identified by unique names and can be used anywhere in the same Google Cloud project. You can easily create and manage topics and subscriptions using Google Cloud's client libraries. In Go, you can use the Google Cloud Pub/Sub library to create topics and subscriptions.
Step 3: Use the Google Cloud Pub/Sub library in the Go language to send and receive messages
In your Go project, use the Google Cloud Pub/Sub library to send and receive messages. Before sending a message, create a PublishRequest and set the subscription name and message. The Publish method sends a message to a subscribed topic. Before receiving messages, create a Subscription and use the Receive method to wait for messages from the topic. Finally, the Decode method is called to decode the received message. Here is a Go sample code for sending and receiving messages:
package main import ( "context" "fmt" "cloud.google.com/go/pubsub" ) func main() { // Set Google Cloud credentials and project ID ctx := context.Background() projectID := "your-project-id" client, err := pubsub.NewClient(ctx, projectID) if err != nil { fmt.Println(err) } // Create topic and subscription topicName := "test-topic" subscriptionName := "test-subscription" topic, err := client.CreateTopic(ctx, topicName) if err != nil { fmt.Println(err) } _, err = client.CreateSubscription(ctx, subscriptionName, pubsub.SubscriptionConfig{ Topic: topic, }) if err != nil { fmt.Println(err) } // Send message to topic message := "test message" result := topic.Publish(ctx, &pubsub.Message{ Data: []byte(message), }) _, err = result.Get(ctx) if err != nil { fmt.Println(err) } // Receive message from subscription sub := client.Subscription(subscriptionName) err = sub.Receive(ctx, func(ctx context.Context, msg *pubsub.Message) { fmt.Printf("Received message: %s ", string(msg.Data)) msg.Ack() }) if err != nil { fmt.Println(err) } }
Conclusion
Google Cloud Pub/Sub is an efficient, reliable and easy-to-use messaging service for running on Google Cloud Platform Various applications built on. Using Google Cloud Pub/Sub in the Go language requires completing three steps: creating a Google Cloud Pub/Sub project and setting up authorization, using the Google Cloud Pub/Sub API to create topics and subscriptions, and using Google Cloud Pub/Sub in the Go language The library sends and receives messages. Using Google Cloud Pub/Sub can greatly simplify messaging and make your applications more reliable and efficient.
The above is the detailed content of Using Google Cloud Pub/Sub in Go: A Complete Guide. For more information, please follow other related articles on the PHP Chinese website!