Reputation: 523
I was looking at my Firebase Storage usage in my console and noticed the day I deployed my Cloud Functions there was a huge surge in storage usage. I see a new orange line appear called us.artifacts.%PROJECT NAME%.appspot.com
. Why is my data related to Cloud Functions being stored in Firebase Storage? How do I prevent this? My problem with this huge surge in storage usage is I fear it could continue to increase causing me to pass the free tier limit.
Upvotes: 0
Views: 684
Reputation: 598728
The files you see are part of the new deployment pipeline of Cloud Functions for Node.js 10 and higher. There is no way to prevent these files from being created while using Cloud Functions, although you can clean up outdated images.
Last time I checked, the files are actually creating in non-default buckets, which means there's no free quota on them. For most devs the storage cost adds up to a few dimes per month, but your mileage may vary of course.
For more on this see:
Upvotes: 1