forked from apache/kafka
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
KAFKA-10847: improve throughput of stream-stream join with spurious l…
…eft/outer join fix (apache#10917) The fix to avoid spurious left/outer stream-stream join results, showed very low throughput for RocksDB, due to excessive creation of iterators. Instead of trying to emit left/outer stream-stream join result for every input record, this PR adds tracking of the lower timestamp bound of left/outer join candidates, and only tries to emit them (and create an iterator) if they are potentially old enough. Reviewers: Luke Chen <[email protected]>, Guozhang Wang <[email protected]>, Sergio Peña <[email protected]>
- Loading branch information
Showing
5 changed files
with
94 additions
and
32 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
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
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