Varun Gupta
Varun Gupta

Reputation: 3112

Is the Cloud Function for Firebase unavailable when the function is updated

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

Answers (1)

Doug Stevenson
Doug Stevenson

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

Related Questions