BigQuery-Python
BigQuery-Python copied to clipboard
get statistics of the job
How can I get the properties like totalBytesBilled, endTime etc that comes under statistics? I use the query method in client.py
You can get job info by job_id.
request = client.bigquery.jobs().get(projectId=project_id, jobId=job_id)
job_resource = request.execute()