Using the bq_table_download() function to download a table that has only 408,000 rows. Seems way to small to be getting a page size error, but this is the error message I get.
Downloading first chunk of data.
Received 57,851 rows in the first chunk.
Downloading the remaining 349,733 rows in 9 chunks of (up to) 43,388 rows.
Error: 407584 rows were requested, but only 392485 rows were received.
Leave page_size
unspecified or use an even smaller value.
Below is the code I tried:
<code>#this gave the page_size error originally
table_name <- bq_table_download(tb)
#so I gave this one a try
table_name <- bq_table_download(tb, page_size=NULL, start_index = 0L, max_connections = 6L, n_max = Inf)
</code>
<code>#this gave the page_size error originally
table_name <- bq_table_download(tb)
#so I gave this one a try
table_name <- bq_table_download(tb, page_size=NULL, start_index = 0L, max_connections = 6L, n_max = Inf)
</code>
#this gave the page_size error originally
table_name <- bq_table_download(tb)
#so I gave this one a try
table_name <- bq_table_download(tb, page_size=NULL, start_index = 0L, max_connections = 6L, n_max = Inf)
1