-
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-17558: Remove parameterization from streams integration tests #17315
Conversation
streams/src/test/java/org/apache/kafka/streams/integration/EosIntegrationTest.java
Outdated
Show resolved
Hide resolved
...test/java/org/apache/kafka/streams/integration/JoinGracePeriodDurabilityIntegrationTest.java
Outdated
Show resolved
Hide resolved
...ms/src/test/java/org/apache/kafka/streams/integration/ResetPartitionTimeIntegrationTest.java
Outdated
Show resolved
Hide resolved
streams/src/test/java/org/apache/kafka/streams/integration/RocksDBMetricsIntegrationTest.java
Outdated
Show resolved
Hide resolved
...src/test/java/org/apache/kafka/streams/integration/SuppressionDurabilityIntegrationTest.java
Outdated
Show resolved
Hide resolved
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.
Thank for the PR. Made a pass.
exactly-once
in stream integration testsThere 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 for the update. -- One more comment.
streams/src/test/java/org/apache/kafka/streams/integration/EosIntegrationTest.java
Outdated
Show resolved
Hide resolved
I am not sure why the Smoke Test failed. |
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.
Overall LGTM. I think you missed on config...
final StreamsBuilder builder = new StreamsBuilder(); | ||
builder.stream(SINGLE_PARTITION_INPUT_TOPIC).to(SINGLE_PARTITION_OUTPUT_TOPIC); | ||
|
||
final Properties properties = new Properties(); | ||
properties.put(StreamsConfig.PROCESSING_GUARANTEE_CONFIG, eosConfig); |
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.
Given that this is EosIntegerationTest
we should run with EXACTLY_ONCE_V2
, right?
Thank you for the reminder; it's improved. |
Thanks for the PR! Merged to |
fullow up #17110
exactly-once
value included in parameterizedResetPartitionTimeIntegrationTest
RocksDBMetricsIntegrationTest.java
Committer Checklist (excluded from commit message)