Reputation: 1076
Cloud Firestore has a quota of 1 GiB/day in the free tier. Does data in indexes count against that quota? I know that indexes have their own limits, but here I'm just concerned about their actual data usage.
An example: Let's assume I have 900 MB data (documents & collections) in Firestore. I also have many indexes that take up 200 MB on the storage medium. Now do these indexes now push me over the limit of 1 GiB/day for data?
Upvotes: 3
Views: 112
Reputation: 317467
Yes, the limit includes the size of any indexes. From the documentation:
You are charged for the amount of data that you store in Cloud Firestore, including storage overhead. The amount of overhead includes metadata, automatic indexes, and composite indexes.
Upvotes: 1