I have a use case where our ETL, built on Redshift, is effectively the "brains" of the operation. The production database, which will be built on top of Postgres, is meant to solely ingest data from what has been normalized/calculated in Redshift.
What is the best way to go about doing this? I have thought of:
- SNS > SQS > API
- Airflow (COPY) > API
Thanks in advance.