You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 14, 2023. It is now read-only.
I'm seeing this error, not sure why, but it should just keep retrying, at least a few times, instead of ending the process.
Error: Error 4: The datastore operation timed out, or the data was temporarily unavailable.
at QueryWatch.onData (elasticstore\node_modules\@google-cloud\firestore\build\src\watch.js:350:34)
at PassThrough.<anonymous> (elasticstore\node_modules\@google-cloud\firestore\build\src\watch.js:297:26)
at PassThrough.emit (events.js:315:20)
at addChunk (_stream_readable.js:302:12)
at readableAddChunk (_stream_readable.js:278:9)
at PassThrough.Readable.push (_stream_readable.js:217:10)
at PassThrough.Transform.push (_stream_transform.js:152:32)
at PassThrough.afterTransform (_stream_transform.js:96:10)
at PassThrough._transform (_stream_passthrough.js:46:3)
at PassThrough.Transform._read (_stream_transform.js:191:10)
I'm not too familiar with firestore, but it seems to me that you are downloading instead of streaming the collection. And if its too big, it will time out?
I'm seeing this error, not sure why, but it should just keep retrying, at least a few times, instead of ending the process.
I'm not too familiar with firestore, but it seems to me that you are downloading instead of streaming the collection. And if its too big, it will time out?
Is this the solution? https://cloud.google.com/nodejs/docs/reference/firestore/1.3.x/Query#stream
Here is the issue that they claim fixed this:
googleapis/nodejs-firestore#1040