-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
feat(lambda): support for Provisioned Pollers #32205
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #32205 +/- ##
==========================================
- Coverage 77.18% 77.17% -0.01%
==========================================
Files 105 105
Lines 7161 7169 +8
Branches 1312 1315 +3
==========================================
+ Hits 5527 5533 +6
- Misses 1454 1455 +1
- Partials 180 181 +1
Flags with carried forward coverage won't be shown. Click here to find out more.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit comments
Pull request has been modified.
@mergify update |
❌ Mergify doesn't have permission to updateFor security reasons, Mergify can't update this pull request. Try updating locally. |
Pull request has been modified.
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
Thank you for contributing! Your pull request will be updated from main and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
Pull request has been modified.
Reason for this change
Lambda is introducing a new property in Event Sources named
ProvisionedPollerConfig
to set provisioned pollers that read from the event sources. When specified, it allows control over the minimum and maximum number of pollers that can be provisioned to process events from the source.This feature is currently supported for MSK and Self-managed Kafka event sources.
Description of changes
This new property can be opted in by setting the
ProvisionedPollerConfig
field while creating event sources. The example of settingProvisionedPollerConfig
for is shown below:Description of how you validated changes
Have added unit test and integration test to validate the implementation
Checklist
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license