mccrash
mccrash

Reputation: 29

What is the max write speed to a firebase realtime database shard?

To rephrase the question, does the 64mb/min apply to the entire database or to a single shard? So is it possible to get more write bandwidth by sharding?

Upvotes: 0

Views: 121

Answers (1)

Frank van Puffelen
Frank van Puffelen

Reputation: 598847

firebaser here

Throughput and access limits for the Firebase Realtime Database are per shard. So you can increase the throughput of your project by having multiple shards.

Upvotes: 1

Related Questions