-
Notifications
You must be signed in to change notification settings - Fork 125
Master failing #215
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
This isn't a credentials issue. It's a bug in the BigQuery API when you have multiple dataset list operations running in parallel with dataset delete operations. Basically, this is what's going on:
I've filed an issue for it internally, but since it can usually be worked around by retrying the job, it hasn't been prioritized. I suspect there are probably a ton of datasets in the pandas-gbq test project that didn't get properly garbage collected, which is probably exasperating the issue on this project. I'll see about running a Travis build today to try and clean those up. |
That other thing we might be able to do to minimize this is to download the full list of datasets before we start deleting them in our clean-up step. Or re-use datasets with a longer-session pytest fixture so that we don't create so many. |
Ah - that makes sense - it's not happening on my test suite because the project doesn't have enough datasets to require paging. |
@tswast, do you recognize whether this an issue of the creds on the pandas-gbq travis being expired?
https://travis-ci.org/pydata/pandas-gbq/jobs/428221719
Running with my creds works great: https://travis-ci.org/max-sixty/pandas-gbq
The text was updated successfully, but these errors were encountered: