KAFKA-6748: double check before scheduling a new task after the punctuate call#4827
KAFKA-6748: double check before scheduling a new task after the punctuate call#4827guozhangwang merged 3 commits intoapache:trunkfrom
Conversation
|
I can't add any watchers to the JIRA issue, so here we go. @guozhangwang this is something I already noticed and we discussed earlier in the ML. I got bitten by this again and investigated further. @mjsax Could you review please? |
guozhangwang
left a comment
There was a problem hiding this comment.
LGTM! Thanks for the catch.
Just a minor question about the test function.
| queue.mayPunctuate(now + 200L, PunctuationType.STREAM_TIME, processorNodePunctuator); | ||
| assertEquals(1, processor.punctuatedAt.size()); | ||
|
|
||
| queue.mayPunctuate(now + 1001L, PunctuationType.STREAM_TIME, processorNodePunctuator); |
There was a problem hiding this comment.
Why we want to test mayPunctuate(now + 1001L ..) again here?
There was a problem hiding this comment.
You are right, I just wanted to be 100% sure when writing the test, forgot to remove...
…uate call (#4827) After the punctuate() call, we would like to double check on the scheduled flag since the call itself may cancel it. Reviewers: Guozhang Wang <wangguoz@gmail.com>, John Roesler <john@confluent.io>
|
Also cherry-picking to 1.1. |
|
@guozhangwang Thanks! What about 1.0? |
|
I have cherry-picked to 1.0 as well, but we do not have another bugfix release plan for 1.x atm, just FYI. If there is a 1.0.2 bug fix release coming up later, it will include this fix. |
…uate call (#4827) After the punctuate() call, we would like to double check on the scheduled flag since the call itself may cancel it. Reviewers: Guozhang Wang <wangguoz@gmail.com>, John Roesler <john@confluent.io>
* confluent/1.1: (60 commits) MINOR: Fix kafka-run-class for Java 10 (apache#4895) KAFKA-6772: Load credentials from ZK before accepting connections (apache#4867) KAFKA-6742: TopologyTestDriver error when dealing with stores from GlobalKTable MINOR: Mention that -1 disables retention by time (apache#4881) KAFKA-6790: Fix Streams processor node broken link (apache#4874) MINOR: Java 10 fixes so that the build passes (apache#4839) MINOR: Update Jackson to 2.9.5 (apache#4776) MINOR: Downgrade to Gradle 4.5.1 (apache#4791) MINOR: Java 9/10 fixes, gradle and minor deps update (apache#4725) KAFKA-6752: Enable unclean leader election metric (apache#4838) KAFKA-6054: Fix upgrade path from Kafka Streams v0.10.0 (apache#4773) KAFKA-6747 Check whether there is in-flight transaction before aborting transaction (apache#4826) KAFKA-6748: double check before scheduling a new task after the punctuate call (apache#4827) KAFKA-6739; Ignore headers when down-converting from V2 to V0/V1 (apache#4813) KAFKA-6728: Corrected the worker’s instantiation of the HeaderConverter KAFKA-6731: waitOnState should check the state to be the target start. (apache#4808) HOTFIX: Enforce a rebalance upon task migration (apache#4802) MINOR: Remove 1.2.0 changes from streams doc (apache#4784) MINOR: Update version numbers to 1.1.1-SNAPSHOT MINOR: Fix ReassignPartitionsClusterTest.testHwAfterPartitionReassignment test (apache#4781) ...
…uate call (apache#4827) After the punctuate() call, we would like to double check on the scheduled flag since the call itself may cancel it. Reviewers: Guozhang Wang <wangguoz@gmail.com>, John Roesler <john@confluent.io>
…:1.1-nflx to 1.1-nflx * commit '84eeea7fe4b3a64b84b87d231969acfee4fb7544': Fix a bug where the ReqeustPerSec API version hash map is not updated. KAFKA-6772: Load credentials from ZK before accepting connections (apache#4867) KAFKA-6742: TopologyTestDriver error when dealing with stores from GlobalKTable MINOR: Mention that -1 disables retention by time (apache#4881) KAFKA-6790: Fix Streams processor node broken link (apache#4874) MINOR: Java 10 fixes so that the build passes (apache#4839) MINOR: Update Jackson to 2.9.5 (apache#4776) MINOR: Downgrade to Gradle 4.5.1 (apache#4791) MINOR: Java 9/10 fixes, gradle and minor deps update (apache#4725) KAFKA-6752: Enable unclean leader election metric (apache#4838) KAFKA-6054: Fix upgrade path from Kafka Streams v0.10.0 (apache#4773) KAFKA-6747 Check whether there is in-flight transaction before aborting transaction (apache#4826) KAFKA-6748: double check before scheduling a new task after the punctuate call (apache#4827)
The first commit is a new test, illustrating the problem. The second commit fixes the problem.
Committer Checklist (excluded from commit message)