Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion bigquery/google/cloud/bigquery/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,14 @@ def fetch_data(self, max_results=None, page_token=None, start_index=None,

:type timeout_ms: int
:param timeout_ms:
(Optional) timeout, in milliseconds, to wait for query to complete
(Optional) How long to wait for the query to complete, in
milliseconds, before the request times out and returns. Note that
this is only a timeout for the request, not the query. If the query
takes longer to run than the timeout value, the call returns
without any results and with the 'jobComplete' flag set to false.
You can call GetQueryResults() to wait for the query to complete
and read the results. The default value is 10000 milliseconds (10
seconds).

:type client: :class:`~google.cloud.bigquery.client.Client` or
``NoneType``
Expand Down