Reputation: 538
Could somebody explain to me how possible is to have quota numbers like these:
Cloud Firestore Read Operations - 0.004794 Million Ops
Cloud Firestore Small Operations - 0.00004 Million Ops
Cloud Firestore API Calls - 8,802
Cloud Firestore Stored Data - 0.000213 GB
Data Sent to Cloud Firestore API - 0.000005 GB
Data Received from Cloud Firestore API - 0.000024 GB
Cloud Firestore Entity Fetch Operations - 4,755.00 Million Ops
Cloud Firestore Entity Write Operations - 0.000158 Million Ops
Cloud Firestore Entity Delete Operations - 0.000062 Million Ops
Cloud Firestore Index Write Operations - 1,684.00 Million Ops
Cloud Firestore Query Operations - 39.00 Million Ops
Cloud Firestore Key Fetch Operations - 40.00 Million Ops
Cloud Firestore Network Egress - 0.001388 GB
I want to start my business next month and I'm afraid I don't understand enough the charges rules. What will happen if I run AdWords? Trillions of Operations? What Operations? I started development today, and 5 minutes later I had Cloud Firestore Entity Fetch Operations - 19.00 Million Ops. Just only after login to my app and see the dashboard with 10 records in the table. Incredible :/
I don't wanna be another 'How I lost 30k with firebase in one-day' guy :/. What do you think?
Upvotes: 4
Views: 470
Reputation: 1872
The issue was that in some quotas there was a change in the units shown in the Console. The unit in the client side from Ops to Million Ops. But in the server side, we still use Ops instead of Million Ops.
There are only 450.00 entity fetch operations in total instead of 450.00 Million.
Upvotes: 1