-
Notifications
You must be signed in to change notification settings - Fork 467
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix a race condition between ShardConsumer shutdown and initialization (
#1319) * Fix a race condition between ShardConsumer shutdown and initialization When Kinesis shards have no data, there can be a race condition where the shard-end record processing from RecordProcessorThread interleaves with Scheduler performing initialization. This leads to ShardConsumer making incorrect state transition during initialization (moves from PROCESSING -> SHUTTING_DOWN) state and during shutdown handling it moves from SHUTTING_DOWN -> SHUTDOWN_COMPLETE without running the ShutdownTask. This can cause the ShardConsumer to not perform proper shutdown processing that is required for a child shard processing to be unblocked. So the child shard could be blocked forever unless the lease for the parent shard moves to a new worker and that worker does not run into the race condition. This patch fixes the race condition as follows: The intializationComplete invocation is not needed after needsInitialization has been set to false. Because initializationComplete is mean to perform initialization in an async manner, but once its done, the async task is a no-op in happy-path, but it can perform incorrect state transition during a race condition.
- Loading branch information
1 parent
69cf599
commit 16e8404
Showing
2 changed files
with
129 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters