I'm using Direbase Realtime Database to store a large set of public transport informations for my mobile apps.
Last week I've tried to move everything to Firestore, that's a lot better for my database structure, thanks to his query system.
Unlike Realtime Database I cannot import data from JSON files, this has force me to use batch write operations to save the initial large block of data.
In this way I've exceeded the quota limit in a few seconds, is there a way to avoid the quota limit to import the initial data for the project?
For example in Realtime Database I was able to import a large set of data directly from the Firebase panel uploading a json file from my pc.