You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 6, 2026. It is now read-only.
I am using python google.cloud.bigquery.client library.
Scenario:
I have a query which is supposed to return 2M records. Due to another issue I am facing - #112 (comment)
I thought of using of start_index and max_results on table.list_rows method on temp table of query results.
Rererence -
https://cloud.google.com/bigquery/docs/paging-results#paging_through_query_results
I create a list of start_index and started multiple thread to read 1000000 records from the start_index.
What I notice is that it is fetching same records more than once.