i have around 700k records and want to upload them to firestore. is there any way to create multiple documents in a collection with custom id for each document?
Asked
Active
Viewed 1,048 times
1
-
Does this documentation on "batched writes" help? Also see the section marked ★ on bulk data entry https://cloud.google.com/firestore/docs/manage-data/transactions#batched-writes – ultraGentle Mar 16 '20 at 15:47
-
There's also this SO post: https://stackoverflow.com/questions/58897274/what-is-the-fastest-way-to-write-a-lot-of-documents-to-firestore – ultraGentle Mar 16 '20 at 15:50
-
thanks db.batch() worked for me – Quick Fixes Mar 16 '20 at 16:54