Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Docs] Add limitation about copying target dir files to remote #1305

Merged
merged 2 commits into from
Nov 6, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions docs/configuration/cosmos-conf.rst
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,12 @@ This page lists all available Airflow configurations that affect ``astronomer-co

`remote_target_path`_:
(Introduced since Cosmos 1.7.0) The path to the remote target directory. This is the directory designated to
remotely copy & store in the files generated and stored by dbt in the dbt project's target directory. The value
for the remote target path can be any of the schemes that are supported by the
remotely copy & store in the files generated and stored by dbt in the dbt project's target directory.
While this remote path is intended to copy files from the dbt project’s target directory, Cosmos currently only
supports copying files from the ``compiled`` directory within the ``target`` folder — and only when the execution
mode is set to ``ExecutionMode.AIRFLOW_ASYNC``. Future releases will add support for copying additional files from
the target directory.
The value for the remote target path can be any of the schemes that are supported by the
`Airflow Object Store <https://airflow.apache.org/docs/apache-airflow/stable/core-concepts/objectstorage.html>`_
feature introduced in Airflow 2.8.0 (e.g. ``s3://your_s3_bucket/target_dir/``, ``gs://your_gs_bucket/target_dir/``,
``abfs://your_azure_container/cache_dir``, etc.)
Expand Down
Loading