Megh Vora
Megh Vora

Reputation: 35

Firestore backup without paying high prices

Import and Export helps make it easier to run backups in Firestore as described here

Backing up a Firestore database means a read for every document. That seems incredibly expensive. Similarly, it would seemingly cost highly when trying to restore a backup.

Is there any way to run these backups without having to incur such high costs?

Upvotes: 1

Views: 284

Answers (1)

Frank van Puffelen
Frank van Puffelen

Reputation: 599031

Creating a backup of your documents requires reading those documents. There is currently no way to create a backup without (charged) reading of each document.

Upvotes: 1

Related Questions