Introduction: ETL job using Glue notebook Hello Coders! In this blog we shall discuss the steps to create ETL job using Glue notebook. The primary focus will be to read(extract) a csv file, transform the data and again load it in the S3 bucket. Therefore the flow goes like this: The table is in Athena, Crawler created the table. Notebook will access the table. We shall write the ETL program inside the notebook. In the last stage, the modified table a.k.a transformed data is updated. But here is the special part of this blog, we shall automaticaly re-run the Crawler.
Read More