Home > Net >  Limiting pub/sub messages
Limiting pub/sub messages

Time:10-09

I have a service which uses google cloud pub/sub to handle a job requests, but when there is a large number of requests, it causes the docker pod to fail. how can i limit the rate of messages?

CodePudding user response:

you should subscribe with flow control as seen here

  • Related