Apache airflow provider for managing Reverse ETL syncs and Profiles runs in RudderStack.
Project description
The Customer Data Platform for Developers
RudderStack Airflow Provider
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.
Installation
pip install rudderstack-airflow-provider
Usage
RudderstackRETLOperator
[!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="<replace task id>",
connection_id="<rudderstack api airflow connection id>"
)
For the complete code, refer to this example.
Mandatatory parameters for RudderstackRETLOperator:
- retl_connection_id: This is the connection id for the sync job.
- connection_id: The Airflow connection to use for connecting to the Rudderstack API. Default value is
rudderstack_default
.
RudderstackRETLOperator exposes other configurable parameters as well. Mostly default values for them would be recommended.
- request_max_retries: The maximum number of times requests to the RudderStack API should be retried before failng.
- request_retry_delay: Time (in seconds) to wait between each request retry.
- request_timeout: Time (in seconds) after which the requests to RudderStack are declared timed out.
- poll_interval: Time (in seconds) for polling status of triggered job.
- poll_timeout: Time (in seconds) after which the polling for a triggered job is declared timed out.
- wait_for_completion: Boolean if execution run should poll and wait till completion of sync. Default value is True.
- sync_type: Type of sync to trigger
incremental
orfull
. Default is None as RudderStack will be deteriming sync type.
RudderstackProfilesOperator
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="<replace task id>",
connection_id="<rudderstack api connection id>",
)
Mandatatory parameters for RudderstackProfilesOperator:
- profile_id: This is the profiles id for the profiles project to run.
- connection_id: The Airflow connection to use for connecting to the Rudderstack API. Default value is
rudderstack_default
.
RudderstackRETLOperator exposes other configurable parameters as well. Mostly default values for them would be recommended.
- request_max_retries: The maximum number of times requests to the RudderStack API should be retried before failng.
- request_retry_delay: Time (in seconds) to wait between each request retry.
- request_timeout: Time (in seconds) after which the requests to RudderStack are declared timed out.
- poll_interval: Time (in seconds) for polling status of triggered job.
- poll_timeout: Time (in seconds) after which the polling for a triggered job is declared timed out.
- wait_for_completion: Boolean if execution run should poll and wait till completion of sync. Default value is True.
Contribute
We would love to see you contribute to this project. Get more information on how to contribute here.
License
The RudderStack Airflow Provider is released under the MIT License.
Contact Us
For more information or queries on this feature, you can contact us or start a conversation in our Slack community.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for rudderstack_airflow_provider-2.0.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2a365cbb3a8246f07aaddea940fbd215896c0d1ce017bc1e5846db57e64a25b9 |
|
MD5 | 37625a71cca3eaab66260cc2e16bf999 |
|
BLAKE2b-256 | 40486b8f5aa6df92b8870af0a2451637c97e8877375ca0be899ad1f5b6fe45a3 |
Hashes for rudderstack_airflow_provider-2.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 11b0033ef35d6e979fa4d045552dbf21d6e0aee46750fc45b5fc2ac8da99aca1 |
|
MD5 | bacd3c4b6a29fe0413bf258818a6a993 |
|
BLAKE2b-256 | 3e7e45082ce8e19f0512f0a84e1eebda7cf5a0791f4cebc6edd26ce193f53c1e |