Scheduled database sync
Recipe — a nightly job that streams rows from an operational store into a reporting store with SQL Copy, retry on failure and Slack notification on success.
Hourly API pull
Recipe — pull from a third-party REST API every hour, transform the JSON payload in a Python step, write rows into a SQL target with retry and idempotent upsert.
Conditional cleanup
Recipe — a daily cleanup job that runs a destructive purge only when a threshold is crossed, using a SQL Query step for the count and a guarded Python step for the delete.