-
Notifications
You must be signed in to change notification settings - Fork 5k
enh(stream): optimize the logic of history data scan in stream #35196
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
Open
wangmm0220
wants to merge
14
commits into
3.0
Choose a base branch
from
feat/6490635370
base: 3.0
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 5 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
76e4511
feat(stream): add new tsdb history pull request types and isHistory flag
wangmm0220 d496f6a
feat(stream): wire serialization for new tsdb history pull request types
wangmm0220 1a75c0b
feat(stream): add vSetTableListHistory field and 4 *History helper fu…
wangmm0220 0a52193
feat(stream): reader handlers for diff/same range pulls + SetTable is…
wangmm0220 3ab18c0
feat(stream): add uidHashTriggerHistory/uidHashCalcHistory and histor…
wangmm0220 d48f752
docs(stream): add design spec for trigger/calc scan-col optimization
e35489c
docs(stream): add implementation plan for trigger/calc scan-col optimize
e25106e
feat(stream): inject trigger pre_filter as WHERE into %%trows calc query
5bfbfd1
fix(stream): stop appending calc cols to trigger projection on %%trows
f9dd116
refactor(stream): remove dead SPlanStreamContext::triggerScanList
1bf0271
test(stream): pin %%trows + pre_filter scan-col behavior
d18cce6
feat(stream): introduce isOldPlan for version-gated %%trows pre_filte…
b243abe
refactor(stream): replace NEW_CALC/TRANSFORM_DATA_TO_CALC macros with…
wangmm0220 0c3416a
docs(stream): add design doc
wangmm0220 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 hidden or 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 hidden or 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 hidden or 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.
The
nRangesvalue is read directly from the network buffer without validation. A very large value could lead to an excessive memory allocation intaosArrayInit_s, potentially causing an Out-Of-Memory (OOM) condition. Please add a check to enforce a reasonable upper limit on the number of ranges.