-
Notifications
You must be signed in to change notification settings - Fork 110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature request: batched writes #65
Comments
We'll need to add support for the following API Endpoints: |
Update Tests to sync with Shields and Github caching. Fix Tests that couldn't fail. Update README and packages.
This is a very useful feature. Without this feature , its a useless library for a production application. Batch Writes , Batch Updates are critical in production mode. Hope this feature will be implemented soon. |
First of all, kudos to the entire team for developing this library. it's pretty simple and very useful. Batch operations are must to have feature for this library. Google has restricted usage of read and write operations - and due to this limitation in a very short span of time the limit gets exhausted. Due to sequential processing ulrfetch which is used internally is eating up the cap. Request you to please add the capability at your earliest. |
Batch writes is a must for me, I would definitely used this for production if it was available. |
For my use case, I have a huge number of writes but due to the update document mask exceeding the limit, I have to read and merge the data manually. A batched write or a transaction would allow the mask to be included in the body of the request rather than in the url query. |
Also would be interested in using this library but no way I can use without batch write function, which appears to have been open for a year without clear progress. |
I looks like, at the moment, if I want to write many records at once, I have to either do a series of individual document writes. Or I have to write all the records to a single doc. It would be great to be able to create and write out to many docs simultaneously and atomically.
The text was updated successfully, but these errors were encountered: