Reputation: 689
We are using Realtime DB for syncing data in realtime to client devices, and that is resulting in a large bill from Firebase.
Since Firestore charges less for storage and read/writes are expensive, can I reduce my costs by moving data to Firestore, making my realtime DB lighter and hence reducing the storage costs there?
The app has low number of writes, it is mostly a read-intensive application.
Help appreciated, Thanks!
Upvotes: 0
Views: 270
Reputation: 598797
It depends what you still want to do on the historical data. If you want to only keep it around for historical reference, I'd actually recommend keeping in in BigQuery, which has much better query capabilities.
Upvotes: 1