-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Cannot set billingTier in synchronous query #3929
Copy link
Copy link
Closed
Labels
api: bigqueryIssues related to the BigQuery API.Issues related to the BigQuery API.type: feature request‘Nice-to-have’ improvement, new feature or different behavior or design.‘Nice-to-have’ improvement, new feature or different behavior or design.
Description
This is not bug reporting, but enhancement request.
When user tries to change billing tier, it can be done when they call query with async:
job = client.run_async_query('<random_jobID>', QUERY)
job.maximum_billing_tier = 3but in case of client.run_sync_query. it returns query instead of job. It cannot change biling tier.
Can we add biling tier parameter in Query class?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
api: bigqueryIssues related to the BigQuery API.Issues related to the BigQuery API.type: feature request‘Nice-to-have’ improvement, new feature or different behavior or design.‘Nice-to-have’ improvement, new feature or different behavior or design.