Handling a Kinesis Data Stream Poison Pill with a Lambda Consumer

Handling failure when consuming a Kinesis Data Stream can keep your iterator healthy and allow your consumer to retry attempts that are likely to recover or abandon messages that are inherentl bad

KinesisLambda
import { Construct } from "constructs";
import * as cdk from "aws-cdk-lib";
import { OneLambda } from "./one-lambda";
import { StackProps } from "aws-cdk-lib";

export class MainStack extends cdk.Stack {
    constructor(scope: Construct, id: string, props: StackProps) {
        super(scope, id, props);

        // creates the Lambda that will be exercised to demonstrate the failure
        new OneLambda(this, "OneLambdaConstruct");
    }
}

Download

git clone https://github.com/aws-samples/serverless-patterns
cd serverless-patterns/cdk-kinesis-poison-pill

Pattern repository

View on GitHub

Last updated on 26 Dec 2024

Edit this page