Karsten Silz
Karsten Silz

Reputation: 1076

Does index data count against the free tier data quota in Cloud Firestore?

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

Answers (1)

Doug Stevenson
Doug Stevenson

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

Related Questions