In the Cloud Firestore 'Usage and Limits' documentation, the stated rate limit for writing documents to a single collection (accounting for sequential indexing) reads:
Maximum write rate to a collection in which documents contain sequential values in an indexed field: 500 per second
I understand this limit is due to 'hotspotting' when creating the sequential indexes.
My question is: if I disable indexing by all sequential fields in a collection (e.g. timestamp) and only use compound indexes (e.g. [user_id, timestamp]) would the rate limit still apply to the timestamp field across the entire collection or only within a specific user_id?