Reputation: 1651
I'am trying to deploy my firebase functions (approximately 40 functions) but I'm getting the message error "HTTP Error: 429, Quota for Google Cloud Functions API exceeded for project XXX" and only some of the functions get updated/created. I know that limitation is because of the free plan that lets me deploy only 20 functions per 100 seconds!
So, how can I chose the functions I want to deploy without affecting the others?
Basically I'm looking for a way to deploy 20 functions then wait for 100 seconds and deploy the other 20 functions because letting only 20 function I want to deploy in my index.js file will delete the others from the server.
Thank you.
Upvotes: 1
Views: 2842
Reputation: 8020
With the Firebase CLI you can deploy specific functions like so:
firebase deploy --only functions:function1,functions:function2,functions:function3...,functions:function20
Upvotes: 4