Skip to content

Contact sales

By filling out this form and clicking submit, you acknowledge our privacy policy.

#CloudGuruChallenge - Event-Driven Python on AWS

To accept this challenge, you’ll need to install Python3 and have access to an AWS environment. Let's begin.

Jun 08, 2023 • 6 Minute Read

Please set an alt value for this image...
  • Cloud
  • python
  • AWS
  • Data

Challenge TopicEvent-Driven Python on AWS
Challenge CreatorForrest Brazeal
Challenge GoalAutomate an ETL processing pipeline for COVID-19 data using Python and cloud services.
Challenge OutcomeBuild real Python and AWS skills that translate well to portfolios/job interviews.
Challenge DeadlineOctober 15, 2020

Read background about the #CloudGuruChallenge here. For a video intro to this challenge, check out the tweet embedded below:

Challenge Steps

You'll need to install Python3 and have access to an AWS environment. Check out this post from AWS Hero Ben Kehoe for instructions on how to set up a hygienic Python development environment.

Flowchart of an example ETL job
  1. ETL JOB. Create a Python compute job that runs on a daily schedule. You could do this by creating a Python Lambda function, and then triggering it from a once-daily CloudWatch rule. Alternatively, you could create a scheduled Fargate task, or look into scheduling a job using AWS Glue. The only requirement is that the underlying compute must be triggered once daily, not on a continuously polling server.
  2. EXTRACTION. In your Python code, download this CSV file from Github. (This is a daily dump of US COVID-19 data from a repository maintained by the New York Times. Every day, the file updates with an additional row of data.) Load the data into an object in memory.
  3. TRANSFORMATION. Perform data manipulations in Python code.
    • Cleaning - The date field should be converted to a date object, not a string.
    • Joining - We want to show recovered cases as well as confirmed cases and deaths. The NYT data does not track recoveries, so you will need to pull US recovery data from this Johns Hopkins dataset and merge it into your record for each day. Note: the case and death counts for the Johns Hopkins dataset disagree with the NYT data. We will treat the NYT data as authoritative and only copy the recovery data from Johns Hopkins.)
    • Filtering - Remove non-US data from the Johns Hopkins dataset. Remove any days that do not exist in both datasets. (There is an off-by-one issue.)
  4. CODE CLEANUP. Abstract your data manipulation work into a Python module. This module should only perform transformations. It should not care where the CSV files are stored and it should not know anything about the database in the next step.
  5. LOAD. Now, write code to load your transformed data into a database. For the purposes of this exercise, you can use any database you choose. I suggest using DynamoDB with boto3 or RDS Postgres with pyscopg. Either way, you'll want each record in the table to have the date, US case count, deaths, and recoveries for a day of the pandemic.
  6. NOTIFICATION. When the database has been updated, your code should trigger an SNS message to notify any interested consumers that the ETL job has completed. The message should include the number of rows updated in the database.
  7. ERROR HANDLING. Your code should be able to handle these common control flow situations:
    1. Initial load vs update -- you should be able to load the entire historical data set into your database the first time the job is run, and then update with only the most recent day’s data thereafter.
    2. If the data contains unexpected or malformed input, your code should fail gracefully and report an error message via SNS. Next time your job runs, it should remember that it did not succeed in processing the previous data, and try again before moving on to more recent data.
  8. TESTS. To ensure that your code can handle unexpected situations, include unit tests for your code that substitute invalid data for the COVID-19 CSV files, and confirm that your code responds correctly.
  9. IaC. Make sure your infrastructure (Lambda function, CloudWatch rule, SNS trigger, database, etc) is defined in code (CloudFormation, Terraform, or similar)
  10. SOURCE CONTROL. Store your code and config in source control (GitHub, or similar)
  11. DASHBOARD. What would an ETL process be without a report? See if you can hook your database up to AWS Quicksight or another BI service like Tableau to generate a visualization of US case counts, fatality, and recoveries over time.
  12. BLOG POST. (very important) Write a short blog post explaining your learnings and your approach to the challenge. Link to your data visualization so we can try it out! If you do not have your own blog, Hashnode or dev.to is a great place to start.

Interested in upscaling or beginning your journey with Cloud Development? A Cloud Guru's AWS Developer Learning Paths offers custom courses fit for beginners and advanced gurus!


When You're Done

You can complete the project requirements by yourself or in collaboration with others. Feel free to ask questions in the discussion forum or on social media using the #CloudGuruChallenge hashtag!

When you finish all the steps of the project, post a link to your blog post in the designated forum thread. I will then be able to endorse you on LinkedIn for the skills you demonstrated in this project: Python, Event-Driven Programming, and AWS. (You'll also be entered to win some cool swag!)

Most importantly, the #CloudGuruChallenge is FREE and available to everyone; all you need is an ACG free-tier membership to make your forum posts.

Resources

Be prepared to do some Googling, but if you are an ACG member, here are some resources that can help you get more comfortable with Python and event-driven programming:

Extra-Challenging Steps

You do not need to perform these additional steps to "declare victory" on the challenge, but they will help your project stand out and provide awesome additional learning.

  1. Create a CI/CD pipeline for your ETL pipeline using GitHub Actions, AWS CodePipeline, or a similar service. Your goal should be to have your Python code and infrastructure update in AWS whenever you push a change to your source control repository.
  2. Add a "smoke test" to your CI/CD pipeline that downloads a sample CSV file, runs transformations on it, and stores it in the database, then verifies that the correct message is posted to SNS. Find a way to do this without affecting the "production" data from the normal daily job runs.
  3. Figure out a way to create a dashboard that updates in real time!

Note that you are welcome to adjust the specific data transformations and data fields suggested if you have an idea for a more interesting visualization. Feel free to be creative!

Final Takeaways

This challenge might seem a bit less than flashy at first glance. After all, it's literally just taking some data from somewhere, combining it with some other data, and then storing it somewhere else. But data manipulation like this is a really common, practical problem that cloud professionals work on! And all the squishy edge cases -- what happens if the external data format suddenly changes? -- lead to some powerful complexities.

Get through this, and you'll have a great story to bring up in your next job interview. And I guarantee your hiring manager will start thinking of a story or two of their own.

Good luck!