-
Notifications
You must be signed in to change notification settings - Fork 306
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
Retry did not occurred #707
Comments
@tseaver Please could you take a look? |
@nitishxp Although |
@nitishxp By default, Does the error occur often, or was it just a one-time event_ Is your code perhaps using a custom Retry object? (a sample would be great) And which package versions do you have installed? Is there anything else in the logs that might lead to the eventual error posted here? Any additional info would be useful, thanks! |
@plamut It was a one time exception that occurred in Cloud Function. Yes I am also using tenacity retry module. Below are installed packages google-cloud-bigquery==2.15.0 |
From your stacktrace "500 Job failed because streaming data from one of the tables referenced in the query is temporarily unavailable. Retrying the job may solve the problem" Retrying the API request won't help. You actually have to re-issue the query. Closing as a duplicate of #539 |
@tswast will the sdk take care of it in the future releases? |
@nitishxp It's a really hard problem to solve. I don't expect the "query" method to handle this anytime soon. It may be a bit easier to implement in wrapper libraries with a simpler interface like the DB-API, SQLAlchemy, and/or pandas-gbq. |
Hi,
I got the following error in one of my Cloud function
The text was updated successfully, but these errors were encountered: