-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[improve](stream load) set NumberLoadedRows to zero when stream load transaction failed #41946
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
Conversation
|
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
|
run buildall |
|
clang-tidy review says "All clean, LGTM! 👍" |
|
TeamCity be ut coverage result: |
|
clang-tidy review says "All clean, LGTM! 👍" |
|
run buildall |
|
clang-tidy review says "All clean, LGTM! 👍" |
|
TeamCity be ut coverage result: |
|
clang-tidy review says "All clean, LGTM! 👍" |
|
run buildall |
|
TeamCity be ut coverage result: |
|
run buildall |
|
clang-tidy review says "All clean, LGTM! 👍" |
|
TeamCity be ut coverage result: |
liaoxin01
left a comment
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.
LGTM
|
PR approved by at least one committer and no changes requested. |
|
PR approved by anyone and no changes requested. |
|
run buildall |
|
clang-tidy review says "All clean, LGTM! 👍" |
|
TeamCity be ut coverage result: |
|
PR approved by at least one committer and no changes requested. |
dataroaring
left a comment
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.
LGTM
…transaction failed (#41946) (#42265) pick (#41946) Set NumberLoadedRows to zero when stream load failed. before: ``` stream load result: { "TxnId": 8589, "Label": "c8e7c4fe-56b2-4e3b-b4cc-4f2a94cdd003", "Comment": "", "TwoPhaseCommit": "false", "Status": "Fail", "Message": "[DATA_QUALITY_ERROR]too many filtered rows", "NumberTotalRows": 3, "NumberLoadedRows": 1, "NumberFilteredRows": 2, "NumberUnselectedRows": 0, "LoadBytes": 77, "LoadTimeMs": 78, "BeginTxnTimeMs": 0, "StreamLoadPutTimeMs": 4, "ReadDataTimeMs": 0, "WriteDataTimeMs": 72, "ReceiveDataTimeMs": 7, "CommitAndPublishTimeMs": 0, "ErrorURL": "XXX" } ``` now: ``` stream load result: { "TxnId": 8589, "Label": "c8e7c4fe-56b2-4e3b-b4cc-4f2a94cdd003", "Comment": "", "TwoPhaseCommit": "false", "Status": "Fail", "Message": "[DATA_QUALITY_ERROR]too many filtered rows", "NumberTotalRows": 3, "NumberLoadedRows": 0, "NumberFilteredRows": 2, "NumberUnselectedRows": 0, "LoadBytes": 77, "LoadTimeMs": 78, "BeginTxnTimeMs": 0, "StreamLoadPutTimeMs": 4, "ReadDataTimeMs": 0, "WriteDataTimeMs": 72, "ReceiveDataTimeMs": 7, "CommitAndPublishTimeMs": 0, "ErrorURL": "XXX" } ```
Set NumberLoadedRows to zero when stream load failed.
before:
now: