Hi, the push subscriber documentation states "With slow-start, Google Cloud Pub/Sub starts by sending a single message at a time, and doubles up with each successful delivery, until it reaches the maximum number of concurrent messages outstanding. Any time there is a delivery failure, the number of messages outstanding allowed for the subscription is halved." (
https://cloud.google.com/pubsub/docs/push)
My question is, what happens when there is a pause in activity for a topic, let us say for example no new messages are published for an hour. Will the slow start algorithm start over when a new messages arrive or will it remember the last successful rate used for that subscriber? My concern is that we will get latency spikes when the queue activity is not constantly high.