Reputation: 569
Is there a way to take incremental backups for firestore? We need to take regular backups and taking full backup everyday will only get more expensive over time. Also is there any plan of supporting point in time restore for firestore?
Upvotes: 2
Views: 589
Reputation: 317487
Firestore does not have a backup mechanism. It has an import/export mechanism, which is not really the same thing. If you need backups, especially incremental backups, you will need to implement that yourself or find another solution.
Upvotes: 1