Reputation: 3112
When I am updating a Cloud Function for Firebase using the CLI firebase deploy --only functions
, is the Function unavailable for a certain amount of time or is that handled by the Cloud Function infrastructure internally and the Function is available at all times and it just switches over to the new Function once the deployment is successful?
Upvotes: 0
Views: 608
Reputation: 317497
Cloud Functions is in beta, and Google currently does not give any guarantees about the availability of your code. But the intent is that you should not miss any invocations when replacing the code. There has been discussion about this already.
Upvotes: 1