Hello Laurens,

As mentioned here 
<https://cloud.google.com/functions/docs/concepts/exec#execution_guarantees>, 
background functions are invoked at least once. The way Functions is set up 
internally is a "at least once" delivery system meaning you should expect 
duplicate invocations. Multiple attempts could be made to execute the 
function. So to answer your concern, it would be something you have to 
guard against in your implementation. Here are some tips on 
making functions idempotent. 
<https://cloud.google.com/functions/docs/bestpractices/retries#make_retryable_background_functions_idempotent>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/084ae3e6-3749-4e4a-92db-9217be7d8c95%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to