DEV Community

architec
architec

Posted on • Updated on

AWS Cloud Quest: Parallel Data Processing Study Note

This is the DIY challenge of the Parallel Data Processing in AWS Cloud Quest.

Image description

DIY Steps:

  1. Create a new Lambda promotion_service
  2. Create a new Subscription under rideshare_topic with Endpoint from promotion_service Lambda

Subscription filter policy

{
  "distance": [
    {
      "numeric": [
        ">",
        10
      ]
    }
  ]
}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)