Hello,
I have a question regarding the Cloud Function triggers for Pub/Sub.
The Pub/Sub ensures at least once delivery, but doesn't guarantee that a message is sent only once, in some cases it might not: "Typically, Cloud Pub/Sub delivers each message once and in the order in which it was published. However, messages may sometimes be delivered out of order or more than once."
Was the Cloud Function Pub/Sub Trigger implemented so that it deals with that? Couldn't find that information, only something about Dataflow Pub/Sub IO: "You can achieve exactly once processing of Cloud Pub/Sub message streams using Cloud Dataflow PubsubIO. PubsubIO de-duplicates messages on custom message identifiers or those assigned by Cloud Pub/Sub."
Thanks!