mlauter opened a new pull request, #64505:
URL: https://github.com/apache/airflow/pull/64505
<!-- SPDX-License-Identifier: Apache-2.0
https://www.apache.org/licenses/LICENSE-2.0 -->
## Description
Adds an ``extra_config`` parameter that is merged into the BigQuery load job
configuration (when ``external_table=False``) or the external table
configuration (when ``external_table=True``), allowing callers to set any API
field not exposed as a top-level operator param without subclassing.
Deprecates ``src_fmt_configs`` in favor of ``extra_config``.
### Rationale
GCSToBigQueryOperator explicitly validates every parameter it accepts
against a known list of valid BigQuery configuration fields. This makes it
impossible to use any API option that isn't already exposed as a top-level
operator param without subclassing or monkey-patching. In order to support all
possible configuration options, we'd need to add a lot of complexity to the
operator, and we'd need to change it any time google added a parameter.
Rather than continuing to add individual params for every possible API
option, this PR adds a single extra_config dict that is merged directly into
the underlying BigQuery configuration at execution time — into
`JobConfigurationLoad` when loading into an existing table, or into
`ExternalDataConfiguration` when creating an external table. Keys in
`extra_config` take precedence over the operator's own top-level params (just
as keys in `src_format_configs` took precedence over the top level params.
This follows a similar pattern to the `configuration` passthrough in
`BigQueryInsertJobOperator`.
---
##### Was generative AI tooling used to co-author this PR?
<!--
If generative AI tooling has been used in the process of authoring this PR,
please
change below checkbox to `[X]` followed by the name of the tool, uncomment
the "Generated-by".
-->
- [x] Yes (please specify the tool below)
Generated-by: Claude Sonnet 4.6 following [the
guidelines](https://github.com/apache/airflow/blob/main/contributing-docs/05_pull_requests.rst#gen-ai-assisted-contributions)
---
* Read the **[Pull Request
Guidelines](https://github.com/apache/airflow/blob/main/contributing-docs/05_pull_requests.rst#pull-request-guidelines)**
for more information. Note: commit author/co-author name and email in commits
become permanently public when merged.
* For fundamental code changes, an Airflow Improvement Proposal
([AIP](https://cwiki.apache.org/confluence/display/AIRFLOW/Airflow+Improvement+Proposals))
is needed.
* When adding dependency, check compliance with the [ASF 3rd Party License
Policy](https://www.apache.org/legal/resolved.html#category-x).
* For significant user-facing changes create newsfragment:
`{pr_number}.significant.rst`, in
[airflow-core/newsfragments](https://github.com/apache/airflow/tree/main/airflow-core/newsfragments).
You can add this file in a follow-up commit after the PR is created so you
know the PR number.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]