Skip to content

Commit bf5fd5f

Browse files
Update dag bundles docs; add s3, fix git classpath (#53473)
1 parent fc5410c commit bf5fd5f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

airflow-core/docs/administration-and-deployment/dag-bundles.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,9 @@ Airflow supports multiple types of dag Bundles, each catering to specific use ca
5050
**airflow.providers.git.bundles.git.GitDagBundle**
5151
These bundles integrate with Git repositories, allowing Airflow to fetch dags directly from a repository.
5252

53+
**airflow.providers.amazon.aws.bundles.s3.S3DagBundle**
54+
These bundles reference an S3 bucket containing DAG files. They do not support versioning of the bundle, meaning tasks always run using the latest code.
55+
5356
Configuring dag bundles
5457
-----------------------
5558

@@ -65,7 +68,7 @@ For example, adding multiple dag bundles to your ``airflow.cfg`` file:
6568
dag_bundle_config_list = [
6669
{
6770
"name": "my_git_repo",
68-
"classpath": "airflow.dag_processing.bundles.git.GitDagBundle",
71+
"classpath": "airflow.providers.git.bundles.git.GitDagBundle",
6972
"kwargs": {"tracking_ref": "main", "git_conn_id": "my_git_conn"}
7073
},
7174
{

0 commit comments

Comments
 (0)