-
Notifications
You must be signed in to change notification settings - Fork 4.4k
feat(lambda-event-sources): starting position timestamp for kafka #31439
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-event-sources): starting position timestamp for kafka #31439
Conversation
|
could you please add a new GH issue as a Feature request, and link it to this issue. |
moelasmar
left a comment
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.
IMO, this is a feature and not a chore, and it needs update in Readme, and new integration test case
sumupitchayan
left a comment
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.
Agreed with @moelasmar, this seems like a feat to me - @nikovirtala can you please add an integ test and README documentation on this?
|
This PR has been in the CHANGES REQUESTED state for 3 weeks, and looks abandoned. To keep this PR from being closed, please continue work on it. If not, it will automatically be closed in a week. |
aws-cdk-automation
left a comment
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.
The pull request linter has failed. See the aws-cdk-automation comment below for failure reasons. If you believe this pull request should receive an exemption, please comment and provide a justification.
A comment requesting an exemption should contain the text Exemption Request. Additionally, if clarification is needed add Clarification Request to a comment.
e521983 to
ab944c3
Compare
README is clear, but creating the integration test for this is a lot of work:
|
|
Ok, the MSK module is in alpha state, and even that doesn't have an integration test that would create a topic and messages to the topic — which would be required to test this feature 😞 I doubt that creating all that is too much for me. |
811d9b7 to
81e290b
Compare
81e290b to
19100c2
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #31439 +/- ##
=======================================
Coverage 82.38% 82.38%
=======================================
Files 120 120
Lines 6955 6955
Branches 1173 1173
=======================================
Hits 5730 5730
Misses 1120 1120
Partials 105 105
Flags with carried forward coverage won't be shown. Click here to find out more.
🚀 New features to boost your workflow:
|
|
|
77978e6 to
2114f64
Compare
✅ Updated pull request passes all PRLinter validations. Dismissing previous PRLinter review.
packages/aws-cdk-lib/aws-lambda-event-sources/test/kafka.test.ts
Outdated
Show resolved
Hide resolved
packages/aws-cdk-lib/aws-lambda-event-sources/test/kafka.test.ts
Outdated
Show resolved
Hide resolved
|
Thank you @nikovirtala for contributing this PR, please let us know if you're still interested continue with this feature implementation, to prevent auto closure. |
Co-authored-by: Shikha Aggarwal <shikhaaggarwal1995@gmail.com>
Pull request has been modified.
Co-authored-by: Shikha Aggarwal <shikhaaggarwal1995@gmail.com>
Co-authored-by: Shikha Aggarwal <shikhaaggarwal1995@gmail.com>
Co-authored-by: Shikha Aggarwal <shikhaaggarwal1995@gmail.com>
Co-authored-by: Shikha Aggarwal <shikhaaggarwal1995@gmail.com>
Co-authored-by: Shikha Aggarwal <shikhaaggarwal1995@gmail.com>
I have a lot of interest in getting this feature available but I don't know if I have time to deal with the constantly changing "requirements" from changing reviewers — it should be enough to get things merged if currently used conventions are followed. |
|
Thank you @nikovirtala for your contribution, all comments are addressed now, will work on getting this merged in. |
|
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). |
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). |
|
Comments on closed issues and PRs are hard for our team to see. |
Issue # (if applicable)
Closes #31808
Reason for this change
It was impossible to start consuming a Kafka topic from a specific point in time.
Description of changes
The user may now set
startingPositionTimestamptoManagedKafkaEventSourceandSelfManagedKafkaEventSourceto start consuming a Kafka topic from a specific point in time.Lambda and CloudFormation have supported the functionality for a while, and other stream event sources like
KinesisEventSourcealready had a CDK implementation for it. So, technically, this change is doing nothing new; it is only repeating the pattern that has already been proven to work on other sources.Description of how you validated changes
The change is tested by adding similar unit tests to other event sources supporting this functionality.
Checklist
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license