Conversation
|
Congratulations on your first Pull Request and welcome to the Apache Airflow community! If you have any issues or are unsure about any anything please check our Contributors' Guide
|
Saketkr21
force-pushed
the
add-dbt-core-provider
branch
from
September 17, 2026 00:39
98bdf50 to
d305295
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add a new
apache-airflow-providers-dbt-coreprovider package that ships a singleoperator,
DbtKubernetesRunOperator, which runs a dbt Core job inside a singleKubernetes pod — mirroring a dbt Cloud job run without requiring dbt Cloud.
The operator subclasses
KubernetesPodOperatorand orchestrates the full dbtlifecycle in one pod:
A git-repo cache on S3/GCS lets runs recover if git is temporarily unreachable.
dbt deps(optional).steps— ordered shell commands (typically dbt CLI calls) sequentially;the first non-zero exit stops the run and fails the task.
target/to S3 or GCS on both success and failure, sorun_results.jsonand compiled SQL are always available for inspection.Because the operator is a thin subclass, all
KubernetesPodOperatorarguments(
namespace,container_resources,deferrable,secrets,init_containers, …)pass straight through.
Files added / changed
providers/dbt/core/pyproject.tomlproviders/dbt/core/provider.yamlproviders/dbt/core/src/.../operators/dbt.pyDbtKubernetesRunOperatorproviders/dbt/core/src/.../operators/run.shproviders/dbt/core/docs/providers/dbt/core/README.rstproviders/dbt/core/tests/unit/.../test_dbt.pyproviders/dbt/core/tests/system/.../example_dbt_kubernetes.pyDesign choices
run.sh): the Python operator constructs a set ofenvironment variables and delegates to a bundled bash script. This keeps the
operator thin and makes the lifecycle trivially inspectable via pod logs.
stepsnot just dbt commands: the parameter accepts any shell command, sousers can include setup steps (
uv sync,pip install …) without needing aseparate operator or custom image.
artifact_conn_idrequired withartifact_dest: credentials are resolvedon the worker and injected as env vars; the pod never touches Airflow connections
directly. This is documented in
docs/security.rst.updates the cache on every successful clone and falls back to it on clone failure.
amazonandgoogleextras are guarded withAirflowOptionalProviderFeatureException; the base package only requiresapache-airflow-providers-cncf-kubernetes.Was generative AI tooling used to co-author this PR?
Generated-by: Claude Code (claude-sonnet-4.6) following the guidelines
{pr_number}.significant.rst, in airflow-core/newsfragments. You can add this file in a follow-up commit after the PR is created so you know the PR number.