-
Notifications
You must be signed in to change notification settings - Fork 46
Add ChunkedEncodingError to the list of resumable stream errors #242
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
Comments
@nitishxp I reformatted the posted traceback for better clarity. It appears that the connection got broken part-way through downloading the results with Did this happen after executing a query, i.e. is related to the other issue you opened recently? The nature of some errors is that the client cannot recover from them, it seems that the way to handle this in your app would be to re-issue the query? Edit: If you have a reference to the |
Hi @plamut While using gbq.list_rows(result.destination) i got the error |
@nitishxp I see, there's no job object you could leverage then. Seems like there's no other option but to call |
Update: I asked around and got feedback that retrying The |
Will that resolve the above issue? |
@nitishxp It should, as the request to fetch table data that resulted in |
But in traceback i am not finding any storage components being used is it being used internally? |
From what I was told, that makes sense if downloading results, and retrying such download request should work. But I'll re-check, as I had the same question. |
@plamut any update did u find anything related to google-storage in traceback? |
@nitishxp Didn't have a chance to have a deeper look at it yet, but generally speaking the retries are controlled by the I'll need to see what kind of retry is used for |
I checked the code and |
@tswast Hm, BigQuery storage does not depend on The issue the user observed seems specific to the |
We can close this one out, since it doesn't seem to affect the gRPC code path. |
Hi I faced this error in production.
Lib version:
google-cloud-bigquery==2.15.0
The text was updated successfully, but these errors were encountered: