11

Firebase Storage is using 490 MB, but no bucket has been initialized. I am not able to track where this storage com from, but it is quite strange to check that Firebase is charging 0.10 USD for an empty Storage.

Where can I delete this storage and why firebase is charging for having no buckets?

enter image description here

Currently I am using Firebase Authentication, Firestore, Realtime Database, Hosting and Functions.

enter image description here

enter image description here

enter image description here

Doug Stevenson
  • 297,357
  • 32
  • 422
  • 441
dllmkdir
  • 133
  • 6
  • Does this answer your question? [Firebase Storage bucket fills up gradually as I don't upload anything](https://stackoverflow.com/questions/63778920/firebase-storage-bucket-fills-up-gradually-as-i-dont-upload-anything) – Wing Oct 11 '21 at 10:46

2 Answers2

10

Every time you deploy to Cloud Functions, it takes some space in a new storage bucket. This is covered in the documentation FAQ about Cloud Functions billing for node 10.

You can delete those files over time if you want.

Doug Stevenson
  • 297,357
  • 32
  • 422
  • 441
5

My recommendation is to use object lifecycles in the artifacts storage bucket! that way the files deletion is automated.

Follow this documentation: https://cloud.google.com/storage/docs/lifecycle

(Firebase should be the one responsible for creating this rule!)