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
Thank you for contributing to this project!
For the BigQuery config in the cron we rely on the bigquery defined in a JSON file referenced in the environment.
GOOGLE_APPLICATION_CREDENTIALS=/secrets/bq_cred.json
However in the latest versions of the library, we can also pull the settings from the main config instead:
self.bigquery_client = bigquery.Client.from_service_account_json(settings.BIGQUERY_SERVICE_ACCOUNT_JSON)
This might simply the setup a little bit. The old method should still work.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Thank you for contributing to this project!
Describe your problem or feature you'd like added
For the BigQuery config in the cron we rely on the bigquery defined in a JSON file referenced in the environment.
GOOGLE_APPLICATION_CREDENTIALS=/secrets/bq_cred.json
However in the latest versions of the library, we can also pull the settings from the main config instead:
self.bigquery_client = bigquery.Client.from_service_account_json(settings.BIGQUERY_SERVICE_ACCOUNT_JSON)
This might simply the setup a little bit. The old method should still work.
The text was updated successfully, but these errors were encountered: