Q. What does ETL API data to S3 mean?

 A:
ETL stands for Extract, Transform, Load. Here:

  • Extract: fetch data from a remote HTTP API (e.g. REST)

  • Transform: possibly parse, filter, clean, aggregate or reformat the data

  • Load: store the transformed data as files (e.g. JSON, CSV, Parquet) in an AWS S3 bucket

Using Airflow automates and schedules this pipeline.

Back To Top