We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BigQuery allows to have custom quotas: https://cloud.google.com/bigquery/docs/custom-quotas For instance, it allows to control the amount of TB that can be queried per user.
The default appears to be quota project_id from the credentials such as in JSON credentials:
quota project_id
{ "account": "", "client_id": "xyz.apps.googleusercontent.com", "client_secret": "xyz", "quota_project_id": "my_quota_project", "refresh_token": "xyz", "type": "authorized_user", "universe_domain": "googleapis.com" }
The BigQuery client from Python SDK has a property that allows to override the quota_project through client_options. The option is used in https://github.com/googleapis/python-cloud-core/blob/e5fb3ea79ea70d538a97c758a33d0b3ab7d1182c/google/cloud/client/__init__.py#L184-L187
quota_project
client_options
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
What's a quota project?
BigQuery allows to have custom quotas: https://cloud.google.com/bigquery/docs/custom-quotas
For instance, it allows to control the amount of TB that can be queried per user.
What's the default?
The default appears to be
quota project_id
from the credentials such as in JSON credentials:How it is used?
The BigQuery client from Python SDK has a property that allows to override the
quota_project
throughclient_options
.The option is used in https://github.com/googleapis/python-cloud-core/blob/e5fb3ea79ea70d538a97c758a33d0b3ab7d1182c/google/cloud/client/__init__.py#L184-L187
The text was updated successfully, but these errors were encountered: