Skip to content
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

Error in pb_tick(self, private, len, tokens) : !self$finished is not TRUE #269

Closed
jberninger opened this issue Sep 27, 2018 · 2 comments
Closed
Labels
reprex needs a minimal reproducible example

Comments

@jberninger
Copy link

Hey, when trying to pull larger datasets from my GBQ account, I hit this error message:
"Error in pb_tick(self, private, len, tokens) : !self$finished is not TRUE "

The table I am querying is ~105GB and the same SQL query works fine in the GBQ console. It's not a very complex query, just asking for 200MB of data. Query below. I can't find anything related to this error message, hoping y'all can help out

R code:
library(bigrquery) project_id <- "xxx-xxx-xxx" # put your project ID here sql <- "SELECT * FROM xxx-xxx-xxx.Conversion_Records.Conversion_records_2018_9_to_10`
WHERE event_time >= '2018-09-16 00:00:01'
AND lower(campaign_name) like 'camp_a%'
AND lower(vendor_name) = 'vendor_a';"

gbq <- query_exec(sql, project = project_id, use_legacy_sql = FALSE, max_pages = Inf)
`

@hadley
Copy link
Member

hadley commented Jan 22, 2019

Can you please provide a minimal reprex (reproducible example)? The goal of a reprex is to make it as easy as possible for me to recreate your problem so that I can fix it: please help me help you!

If you've never heard of a reprex before, start by reading "What is a reprex", and follow the advice further down the page. Please make sure your reprex is created with the reprex package as it gives nicely formatted output and avoids a number of common pitfalls.

@hadley hadley added the reprex needs a minimal reproducible example label Jan 22, 2019
@bokov
Copy link

bokov commented Jan 10, 2025

Possible workaround:

r-lib/progress#137

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
reprex needs a minimal reproducible example
Projects
None yet
Development

No branches or pull requests

3 participants