-
Notifications
You must be signed in to change notification settings - Fork 591
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
feat(storage): seperate timeout between process and heartbeat #14366
Merged
Merged
Changes from 35 commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
635f777
feat(storage): seperate timeout between process and heartbeat
Li0k 974fa53
fix(dashboard): minor style tweaks (#14356)
BugenZhao 191ba77
fix: ignore dependent table_fragment not exist (#14308)
fuyufjh 1aff233
fix(stream/materialize): incorrect implementation in ignore-conflict …
TennyZhuang 0217506
refactor(frontend): simplify bind_columns_from_source (#14335)
xxchan f3eafad
fix: pubsub auth (#14360)
tabVersion 5bf6c46
feat(sink): support es sink struct and refactor es sink (#14231)
xxhZs 63103d4
feat(catalog): add pg_get_viewdef (#14336)
yuhao-su e038eb1
chore(storage): update config
Li0k fcc827b
fix(storage):fix ut
Li0k 8bc1996
chore(storage): rename
Li0k c0409ca
fix(stream/materialize): enforce update_cache when modify fixed_chang…
TennyZhuang be1c706
test: reorganize the sink to table e2e test (#14158)
st1page d44270e
test: fix flaky sink_into_table test (#14372)
xxchan abee759
test: bump sqllogictest & fix backwards-compat-test/e2e-tests (#14354)
xxchan 7a784cc
fix: Do not recover background streaming jobs whose table fragments h…
yezizp2012 ca74b3c
chore(storage): ctl support cancel specific task (#14325)
Li0k 1795e6c
feat(connector): support local fs source (#14312)
KeXiangWang 9671c76
chore(storage): typo
Li0k 58b3bb3
chore(storage): revert num io
Li0k 1c4bd73
feat(storage): skip_watermark support task progress
Li0k eb7824f
Merge branch 'main' of https://github.com/risingwavelabs/risingwave i…
Li0k 51f8e6a
chore(storage): typo
Li0k c43cdd1
Merge branch 'main' of https://github.com/risingwavelabs/risingwave i…
Li0k f8fde47
fix(storage): fix compile
Li0k c7ae224
Merge branch 'main' of https://github.com/risingwavelabs/risingwave i…
Li0k 99e6e7c
fix(storage): fix compile
Li0k a8277a5
fix(storage): fix compile
Li0k b274193
fix(storage): move task_progress from skip_iter to merge_iter
Li0k 35d1bad
Merge branch 'main' of https://github.com/risingwavelabs/risingwave i…
Li0k 71c12c7
Merge branch 'main' of https://github.com/risingwavelabs/risingwave i…
Li0k ad6f99a
refactor(storage): introduced MonitoredCompactorIterator
Li0k 074d9b1
refactor(storage): introduced MonitoredCompactorIterator
Li0k 4819ddd
Merge branch 'main' of https://github.com/risingwavelabs/risingwave i…
Li0k 7ac4049
chore(storage): typo
Li0k 4eb64eb
fix(storage): address comments
Li0k 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
Oops, something went wrong.
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.
In original implement, we update "expire_at" to "expire_at + 60 secs". And we check it with "now - 30secs". It means that the task will be cancled after "90s" not changed.
But now, we will cancel task if it did not receive heartbeat during "30s". Is it too short ?