-
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) #42265
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
…transaction failed (#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" } ```
|
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
|
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: |
|
run buildall |
|
TeamCity be ut coverage result: |
|
clang-tidy review says "All clean, LGTM! 👍" |
pick (#41946)
Set NumberLoadedRows to zero when stream load failed.
before:
now: