
Security News
Rust RFC Proposes a Security Tab on crates.io for RustSec Advisories
Rustâs crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.
rudderstack-airflow-provider
Advanced tools
Apache airflow provider for managing Reverse ETL syncs and Profiles runs in RudderStack.
The Customer Data Platform for Developers
The RudderStack Airflow Provider lets you programmatically schedule and trigger your Reverse ETL syncs and Profiles runs outside RudderStack and integrate them with your existing Airflow workflows. Refer to orchestration docs.
pip install rudderstack-airflow-provider
[!NOTE]
Use RudderstackRETLOperator for reverse ETL connections
A simple DAG for triggering syncs for a RudderStack Reverse ETL source:
with DAG(
"rudderstack-retl-sample",
default_args=default_args,
description="A simple tutorial DAG for reverse etl",
schedule_interval=timedelta(days=1),
start_date=datetime(2021, 1, 1),
catchup=False,
tags=["rs-retl"],
) as dag:
# retl_connection_id, sync_type are template fields
rs_operator = RudderstackRETLOperator(
retl_connection_id="connection_id",
task_id="<a unique, meaningful id for the airflow task>",
connection_id="<rudderstack api airflow connection id>"
)
For the complete code, refer to this example.
Mandatatory parameters for RudderstackRETLOperator:
rudderstack_default.RudderstackRETLOperator exposes other configurable parameters as well. Mostly default values for them would be recommended.
incremental or full. Default is None as RudderStack will be deteriming sync type.RudderstackProfilesOperator can be used to trigger profiles run. A simple DAG for triggering profile runs for a profiles project.
with DAG(
"rudderstack-profiles-sample",
default_args=default_args,
description="A simple tutorial DAG for profiles run.",
schedule_interval=timedelta(days=1),
start_date=datetime(2021, 1, 1),
catchup=False,
tags=["rs-profiles"],
) as dag:
# profile_id is template field
rs_operator = RudderstackProfilesOperator(
profile_id="<profile_id>",
task_id="<a unique, meaningful id for the airflow task",
connection_id="<rudderstack api connection id>",
)
Mandatatory parameters for RudderstackProfilesOperator:
rudderstack_default.RudderstackProfilesOperator exposes other configurable parameters as well. Mostly default values for them would be recommended.
None.RudderstackETLOperator can be used to trigger ETL sync runs. A simple DAG for triggering ETL sync.
with DAG(
"rudderstack-etl-sample",
default_args=default_args,
description="A simple tutorial DAG for etl sync.",
schedule_interval=timedelta(days=1),
start_date=datetime(2021, 1, 1),
catchup=False,
tags=["rs-etl"],
) as dag:
# etl_source_id is template field
rs_operator = RudderstackProfilesOperator(
etl_source_id="<etl_source_id>",
task_id="<a unique, meaningful id for the airflow task",
connection_id="<rudderstack api connection id>",
)
Mandatatory parameters for RudderstackETLOperator:
rudderstack_default.RudderstackETLOperator exposes other configurable parameters as well. Mostly default values for them would be recommended.
We would love to see you contribute to this project. Get more information on how to contribute here.
The RudderStack Airflow Provider is released under the MIT License.
For more information or queries on this feature, you can contact us or start a conversation in our Slack community.
FAQs
Apache airflow provider for managing Reverse ETL syncs and Profiles runs in RudderStack.
We found that rudderstack-airflow-provider demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Rustâs crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.

Security News
/Research
Socket found a Rust typosquat (finch-rust) that loads sha-rust to steal credentials, using impersonation and an unpinned dependency to auto-deliver updates.

Research
/Security Fundamentals
A pair of typosquatted Go packages posing as Googleâs UUID library quietly turn helper functions into encrypted exfiltration channels to a paste site, putting developer and CI data at risk.