-
Notifications
You must be signed in to change notification settings - Fork 925
Integrate Schema Registry with ducktape load tests #2027
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
base: master
Are you sure you want to change the base?
Conversation
🎉 All Contributor License Agreements have been signed. Ready to merge. |
This comment has been minimized.
This comment has been minimized.
self.logger.info("Verifying connection to external Kafka at localhost:9092") | ||
|
||
if not self.kafka.verify_connection(): | ||
raise Exception("Cannot connect to Kafka at localhost:9092. " |
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.
As SonarQube suggests never throw an Exception
or BaseException
. I'd maybe raise a ConnectionError
here.
This comment has been minimized.
This comment has been minimized.
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.
Copilot encountered an error and was unable to review this pull request. You can try again by re-requesting a review.
What
Add basic ducktape test cases for producer w/ schema registry integrated, covering 3 supported serialization formats.
As a follow-up item, we can explore testing producing with with different sizes of messages to be serialized.
Checklist
References
JIRA: https://confluentinc.atlassian.net/browse/DGS-21924
Test & Review
Open questions / Follow-ups