Home > front end >  calculating firebase - firestore export pricing
calculating firebase - firestore export pricing

Time:08-24

I have a 50GB firestore DB and around 10m documents to read i have a blaze plan but in the bucket calculator there is a "class operation" that i did not understand.

how much should I pay per backup ? , do i need to calculate the reading firebase operations only ? what is the price for GIB in the bucket

i tried to calculate smth like :

 (10,000,000 / 100,000 ) * 0.06

is that the price ? i would like to know what is the pricing per backup

CodePudding user response:

Do I need to calculate the Firestore reading operations only?

No. As you have noticed, and as explained in the doc, "exporting data from Cloud Firestore will incur one read operation per document exported."

But there are some extra costs: Storage Cost (see below), Cloud Functions invocations cost (normally should be 0$ since there is a generous free tier of 2M/month), Cloud Scheduler cost (again there is a enter image description here

  • Related