-
Notifications
You must be signed in to change notification settings - Fork 28.5k
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
[SPARK-22789] Map-only continuous processing execution #19984
Closed
Closed
Changes from all commits
Commits
Show all changes
50 commits
Select commit
Hold shift + click to select a range
b1ad771
Refactor StreamExecution into a parent class so continuous processing…
jose-torres 4058c65
address fmt
jose-torres 2af3920
slight changes
jose-torres cd3d28a
rm spurious space
jose-torres fdc404d
fix compile
jose-torres 7d97c22
harness
jose-torres bd20abd
awaitEpoch impl
jose-torres b930c2a
move local[10] to only continuous suite
jose-torres 5c2d1b2
repeatedly restart
jose-torres 38e989b
fix some simple TODOs
jose-torres 9e031f5
use runId instead of queryId for endpoint name
jose-torres 690eadc
more simple todos
jose-torres 4df4f04
remove old state
jose-torres 6701310
remove clean shutdown workaround in StreamTest
jose-torres 1cab58f
update ContinuousExecution docs
jose-torres 1c11b7c
add comments to EpochCoordinator
jose-torres c6a580c
change offset semantic to end of previous epoch
jose-torres a76987a
document EpochCoordinator
jose-torres 1d87302
simplify epoch handling
jose-torres 89b9ee6
stress tests
jose-torres bdafb15
add minBatchesToRetain
jose-torres 5ad34a1
add confs
jose-torres 1da0559
latency suite not meaningful here
jose-torres 7c5b438
more stress::q
jose-torres bedd7b3
use temp dir
jose-torres e5bf024
fix against rebase
jose-torres d16410f
fix ser/deser
jose-torres 6eaba32
fix rebase compile
jose-torres b48c8b0
stop using ProcessingTime in executor
jose-torres 2536290
add tests for supported ops
jose-torres 2eb048d
unsupported operation check for unsupported continuous mode ops
jose-torres d175cc9
current timestamp test
jose-torres 2abfd0e
address trigger comments
jose-torres 2d3fb96
update mima excludes for private[sql] method change
jose-torres 24fed79
remove check microbatch is in registry
jose-torres c651206
fix computeStats test
jose-torres 6c5870b
fail task if subthreads fail
jose-torres 12f2955
fix race conditions
jose-torres c00b099
make sure each op can advance epoch in test
jose-torres 3330ae4
handle data reader failure when queue is empty
jose-torres 2f902f2
set failure reason before flag
jose-torres 047d48b
don't throw in data reader thread
jose-torres a04978e
set thread name
jose-torres b672370
only check InterruptedException
jose-torres e4d6e9d
move import
jose-torres 35a72c7
case object instead of case class
jose-torres 004f865
fulfil contract for iterator
jose-torres 825d437
fix compile after rebase
jose-torres 07a9e06
address review comments
jose-torres b4f7976
remove unnecessary queryId
jose-torres File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
longConf
?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.
Should it be? I can't imagine anything close to MAX_INT being a reasonable value here. Will it be hard to migrate to a long if we later discover it's needed?