-
Notifications
You must be signed in to change notification settings - Fork 14k
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
KAFKA-13930: Add 3.2.0 Streams upgrade system tests #12209
KAFKA-13930: Add 3.2.0 Streams upgrade system tests #12209
Conversation
Should we add such PRs as part of our release activity checklist? (Ignore if it is already present there). |
@divijvaidya This is the penultimate task in the release process (https://cwiki.apache.org/confluence/display/KAFKA/Release Process). |
64aa852
to
cb93d4f
Compare
Apache Kafka 3.2.0 was recently released. Now we need to test upgrades from 3.2 to trunk in our system tests.
64c9263
to
a609868
Compare
@Rule | ||
public Timeout globalTimeout = Timeout.seconds(600); |
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.
Had to remove this since system tests do not have a dependency to junit that containsTimeout
which led to ClassNotFoundException
during system test executions. AFAICS, the timeout rule makes no sense here since this class and all child-classes except RelationalSmokeTestTest
do not contain tests. I added the timeout rule to RelationalSmokeTestTest
.
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.
Thanks @cadonna LGTM.
As a side note do want to consider trimming off some of the oldest versions from the compatibility tests?
What would be a good cut-off point in your opinion? |
Build failures are unrelated:
|
* KAFKA-13930: Add 3.2.0 Streams upgrade system tests Apache Kafka 3.2.0 was recently released. Now we need to test upgrades from 3.2 to trunk in our system tests. Reviewer: Bill Bejeck <[email protected]>
Apache Kafka 3.2.0 was recently released. Now we need
to test upgrades from 3.2 to trunk in our system tests.
Committer Checklist (excluded from commit message)