How to completely block your DynamoDB stream processing
How an simple mistake blocked my stream processing and had me debugging something that I was sure was working for the past week. Simple bug breaks down my whole article processing pipeline When I created my DynamoDB stream, I knew that I will be only adding articles, I was not considering removing records from the table at all. As such, I created a python lambda function, that always checks the NewImage field in the incomming records and processes it....