Uh oh!
There was an error while loading. Please reload this page.
[fix](iceberg) fix the iceberg eq-delete filter resize-fill bug. - #51253
Merged
Conversation
Thearas
commented
May 26, 2025
Contributor
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
ghkang98
commented
May 26, 2025
ContributorAuthor
run buildall |
| /// reset the array capacity | ||
| /// fill the new additional elements using the value | ||
| void resize_fill(size_t n, const T& value) { |
Contributor
There was a problem hiding this comment.
please add some ut for resize fill, we should make sure it only reset the additional new element's value
| /// reset the array capacity | ||
| /// fill all elements using the value | ||
| void reinit(size_t n, const T& value) { |
Contributor
There was a problem hiding this comment.
Do not add this method. Implement this logic at invoking place.
| _filter = std::make_unique<IColumn::Filter>(rows, 0); | ||
| } else { | ||
| _filter->resize_fill(rows, 0); | ||
| _filter->reinit(rows, 0); |
ContributorAuthor
There was a problem hiding this comment.
ok, Use assign function instead
doris-robot
commented
May 26, 2025
TPC-H: Total hot run time: 33701 ms |
ghkang98force-pushed
the
iceberg-eqdelete-filter
branch
from
May 26, 2025 11:47
e42dd8f to
b79c533Comparedoris-robot
commented
May 26, 2025
TPC-DS: Total hot run time: 192497 ms |
doris-robot
commented
May 26, 2025
ClickBench: Total hot run time: 29.03 s |
ghkang98
commented
May 27, 2025
ContributorAuthor
run buildall |
Contributor
PR approved by at least one committer and no changes requested. |
Contributor
PR approved by anyone and no changes requested. |
ghkang98force-pushed
the
iceberg-eqdelete-filter
branch
from
May 27, 2025 03:13
b79c533 to
b1e2401Compareghkang98
commented
May 27, 2025
ContributorAuthor
run buildall |
yiguolei
approved these changes
May 27, 2025
Contributor
PR approved by at least one committer and no changes requested. |
doris-robot
commented
May 27, 2025
TPC-H: Total hot run time: 33911 ms |
doris-robot
commented
May 27, 2025
TPC-DS: Total hot run time: 193364 ms |
doris-robot
commented
May 27, 2025
ClickBench: Total hot run time: 29.16 s |
morningman
approved these changes
May 27, 2025
github-actionsBot
pushed a commit
that referenced
this pull request
May 28, 2025
) solve the problem of inconsistent filter data in the doris eq-delete scenario Problem Summary: When Doris reads iceberg's data, if there is eq-deleted data, when filtering the data, the filter will have dirty data due to the incorrect use of the resize-fill function, which will eventually cause Doris's data to be filtered incorrectly. [doris-iceberg-eq-delete-bug.pdf](https://github.com/user-attachments/files/20439214/doris-iceberg-eq-delete-bug.pdf)
github-actionsBot
pushed a commit
that referenced
this pull request
May 28, 2025
) solve the problem of inconsistent filter data in the doris eq-delete scenario Problem Summary: When Doris reads iceberg's data, if there is eq-deleted data, when filtering the data, the filter will have dirty data due to the incorrect use of the resize-fill function, which will eventually cause Doris's data to be filtered incorrectly. [doris-iceberg-eq-delete-bug.pdf](https://github.com/user-attachments/files/20439214/doris-iceberg-eq-delete-bug.pdf)
koarz pushed a commit
to koarz/doris
that referenced
this pull request
Jun 4, 2025
…che#51253) solve the problem of inconsistent filter data in the doris eq-delete scenario Problem Summary: When Doris reads iceberg's data, if there is eq-deleted data, when filtering the data, the filter will have dirty data due to the incorrect use of the resize-fill function, which will eventually cause Doris's data to be filtered incorrectly. [doris-iceberg-eq-delete-bug.pdf](https://github.com/user-attachments/files/20439214/doris-iceberg-eq-delete-bug.pdf)
Closed
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
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
solve the problem of inconsistent filter data in the doris eq-delete scenario
Problem Summary:
When Doris reads iceberg's data, if there is eq-deleted data, when filtering the data, the filter will have dirty data due to the incorrect use of the resize-fill function, which will eventually cause Doris's data to be filtered incorrectly.
doris-iceberg-eq-delete-bug.pdf
yes
added a reinit function to reset the size of a data and fill all the data with the new data area
No.