Flyte 2 is available today for local execution - distributed execution coming to open source soon. Preview Flyte 2 for production, hosted on Union.ai
2.0.9

BigQueryConfig

Package: flyteplugins.bigquery

Configuration for a BigQuery task.

Attributes:
    ProjectID: The Google Cloud project ID that owns the BigQuery dataset.
    Location: The geographic location of the dataset, e.g. `"US"` or `"EU"`.
        Defaults to the project's default location if not specified.
    QueryJobConfig: Optional advanced job configuration passed directly to the
        BigQuery client. Use this to set query parameters, destination tables,
        time partitioning, etc.

Parameters

class BigQueryConfig(
    ProjectID: str,
    Location: typing.Optional[str],
    QueryJobConfig: typing.Optional[google.cloud.bigquery.job.query.QueryJobConfig],
)
Parameter Type Description
ProjectID str
Location typing.Optional[str]
QueryJobConfig typing.Optional[google.cloud.bigquery.job.query.QueryJobConfig]