The page you navigated to () does not exist, so we brought you to the closest page to it.
You have switched from the to the variant of this site. There is no equivalent of . We have taken you to the closest page in the variant.
2.1.9
BigQueryConfig
Package: flyteplugins.bigquery
Configuration for a BigQuery task.
Parameters
class BigQueryConfig(
ProjectID: str,
Location: typing.Optional[str],
QueryJobConfig: typing.Optional[google.cloud.bigquery.job.query.QueryJobConfig],
)| Parameter | Type | Description |
|---|---|---|
ProjectID |
str |
The Google Cloud project ID that owns the BigQuery dataset. |
Location |
typing.Optional[str] |
The geographic location of the dataset, e.g. "US" or "EU". Defaults to the project’s default location if not specified. |
QueryJobConfig |
typing.Optional[google.cloud.bigquery.job.query.QueryJobConfig] |
Optional advanced job configuration passed directly to the BigQuery client. Use this to set query parameters, destination tables, time partitioning, etc. |