0

I am using Google Cloud Platform. I need to push messages from different source to a topic, but it should be done using a single asynchronous call.

1 Answers1

1

Batching Cloud Pub/Sub messages can be done and implemented using the Client Libraries. Have a look at the official GCP documentation here for examples in different programming languages.

Maxim
  • 4,075
  • 1
  • 14
  • 23
  • ^^ This is correct. In fact, they have default batch settings. Note that most client libraries will start the batching in the background when you create your pubsub object and you will post things individually in your code. – Bryan Davis Dec 28 '18 at 05:48