-
Notifications
You must be signed in to change notification settings - Fork 925
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New serverless pattern - kinesis-lambda-dynamodb-pipeline-dotnet-cdk #2471
base: main
Are you sure you want to change the base?
New serverless pattern - kinesis-lambda-dynamodb-pipeline-dotnet-cdk #2471
Conversation
Hi @tejasavora , thanks for your contribution. Our serverless patterns are designed to be primarily Infrastructure as Code (IaC) implementations that showcase 2-4 AWS services working together, with minimal custom code. The goal is to demonstrate commonly used combinations that help developers quickly get started with serverless architectures. This submission presents more of a complete application as such it would not align with our focus. I would suggest to simplify the code. Thank you |
Hi @bfreiberg I have updated PR with relevant changes - Removed DataIngestionFunction, Removed DynamoDB table for errors, removed DLQ and have made proper changes to ReadMe, example-pattern and architecture diagram. |
kinesis-lambda-dynamodb-pipeline-dotnet-cdk/example-pattern.json
Outdated
Show resolved
Hide resolved
kinesis-lambda-dynamodb-pipeline-dotnet-cdk/example-pattern.json
Outdated
Show resolved
Hide resolved
Co-authored-by: Ben <[email protected]>
Co-authored-by: Ben <[email protected]>
Co-authored-by: Ben <[email protected]>
Issue #, if available:
N/A
Description of changes:
This pull request implements a new serverless pattern demonstrating a real-time data pipeline using Amazon Kinesis, AWS Lambda, Amazon DynamoDB, and Amazon SQS. The key changes include:
Created a new CDK stack (KinesisLambdaDynamoDbCdkStack) that sets up:
Implemented a Lambda function (DataProcessFunction) that:
Configured robust error handling:
Added comprehensive testing instructions, including:
Updated README.md with detailed information about the pattern, its architecture, deployment instructions, and testing procedures.
This pattern showcases best practices for building scalable, resilient serverless data processing pipelines using AWS services and the AWS CDK with .NET.
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.