You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment it's not possible to take advantage of a builtin retry mechanism of a pubsub subscription (https://cloud.google.com/pubsub/docs/handling-failures) as messages are acknowledged as soon as they are successfully pulled (not processed) from a subscription.
Laravel retry mechanism (push back to topic) is BADLY designed imho at tleast when it comes to pubsub.
requires an app to have publish permissions - VERY BAD
as many subscribers can exist for a single topic pushing the same message again will cause other subscribers process the same message again - BAD
The text was updated successfully, but these errors were encountered:
At the moment it's not possible to take advantage of a builtin retry mechanism of a pubsub subscription (https://cloud.google.com/pubsub/docs/handling-failures) as messages are acknowledged as soon as they are successfully pulled (not processed) from a subscription.
Laravel retry mechanism (push back to topic) is BADLY designed imho at tleast when it comes to pubsub.
The text was updated successfully, but these errors were encountered: