We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is your feature request related to a problem? Please describe.
Pipeline users want to send events to AWS Lambda.
Describe the solution you'd like Create a new sink in Data Prepper which outputs data to lambda using codec. It should support
Without Batching:
lambda-pipeline: ... sink: - lambda: aws: region: us-east-1 sts_role_arn: <arn> sts_overrides: function_name: "uploadToS3Lambda" max_retries: 3 sync: False dlq: s3: bucket: test-bucket key_path_prefix: dlq/
With Batching:
lambda-pipeline: ... sink: - lambda: aws: region: us-east-1 sts_role_arn: <arn> sts_overrides: function_name: "uploadToS3Lambda" max_retries: 3 batch: batch_key: "user_key" threshold: event_count: 3 maximum_size: 6mb event_collect_timeout: 15s sync: False dlq: s3: bucket: test-bucket key_path_prefix: dlq/
Additional context Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered:
srikanthjg
Successfully merging a pull request may close this issue.
Is your feature request related to a problem? Please describe.
Pipeline users want to send events to AWS Lambda.
Describe the solution you'd like
Create a new sink in Data Prepper which outputs data to lambda using codec. It should support
Without Batching:
With Batching:
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: