-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
[fix](routine-load) fix routine load pause when Kafka data deleted after TTL #37288
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! 👍" |
TPC-H: Total hot run time: 39569 ms
|
TPC-DS: Total hot run time: 170548 ms
|
ClickBench: Total hot run time: 30.76 s
|
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. |
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
…ter TTL (#37288) (#37983) pick (#37288) When using routine load, After the data load is completed, the lag is still a positive number: ``` Lag: {"0":16,"1":15,"2":16,"3":16,"4":16,"5":16,"6":15,"7":16,"8":16,"9":16,"10":15,"11":16,"12":15,"13":15,"14":16,"15":16,"16":17,"17":15,"18":16,"19":15,"20":16,"21":16,"22":16,"23":16,"24":15,"25":17,"26":17,"27":16,"28":16,"29":16,"30":16,"31":17,"32":14,"33":16,"34":17,"35":16,"36":15,"37":15,"38":15,"39":16,"40":16,"41":16,"42":15,"43":15,"44":17,"45":16,"46":15,"47":15,"48":16,"49":17,"50":16,"51":15,"52":16,"53":15,"54":15,"55":17,"56":16,"57":17,"58":16,"59":16,"60":15,"61":15,"62":16,"63":16,"64":17,"65":16,"66":15,"67":16,"68":17,"69":16,"70":15,"71":17} ``` and the routing load is paused when the Kafka data reaches TTL and is deleted, the error is `out of range`. The reason why this happened is EOF has it offset which needed statistics. **note(important):** After the bug is fixed, if you set ``` "property.enable.partition.eof" = "false" ``` in your routine load job, it will meet the problem. For EOF has offset, and the config is true in Doris default.
…ter TTL (#37288) When using routine load, After the data load is completed, the lag is still a positive number: ``` Lag: {"0":16,"1":15,"2":16,"3":16,"4":16,"5":16,"6":15,"7":16,"8":16,"9":16,"10":15,"11":16,"12":15,"13":15,"14":16,"15":16,"16":17,"17":15,"18":16,"19":15,"20":16,"21":16,"22":16,"23":16,"24":15,"25":17,"26":17,"27":16,"28":16,"29":16,"30":16,"31":17,"32":14,"33":16,"34":17,"35":16,"36":15,"37":15,"38":15,"39":16,"40":16,"41":16,"42":15,"43":15,"44":17,"45":16,"46":15,"47":15,"48":16,"49":17,"50":16,"51":15,"52":16,"53":15,"54":15,"55":17,"56":16,"57":17,"58":16,"59":16,"60":15,"61":15,"62":16,"63":16,"64":17,"65":16,"66":15,"67":16,"68":17,"69":16,"70":15,"71":17} ``` and the routing load is paused when the Kafka data reaches TTL and is deleted, the error is `out of range`. The reason why this happened is EOF has it offset which needed statistics. **note(important):** After the bug is fixed, if you set ``` "property.enable.partition.eof" = "false" ``` in your routine load job, it will meet the problem. For EOF has offset, and the config is true in Doris default.
…ter TTL(#37288) (#39183) pick (#37288) When using routine load, After the data load is completed, the lag is still a positive number: ``` Lag: {"0":16,"1":15,"2":16,"3":16,"4":16,"5":16,"6":15,"7":16,"8":16,"9":16,"10":15,"11":16,"12":15,"13":15,"14":16,"15":16,"16":17,"17":15,"18":16,"19":15,"20":16,"21":16,"22":16,"23":16,"24":15,"25":17,"26":17,"27":16,"28":16,"29":16,"30":16,"31":17,"32":14,"33":16,"34":17,"35":16,"36":15,"37":15,"38":15,"39":16,"40":16,"41":16,"42":15,"43":15,"44":17,"45":16,"46":15,"47":15,"48":16,"49":17,"50":16,"51":15,"52":16,"53":15,"54":15,"55":17,"56":16,"57":17,"58":16,"59":16,"60":15,"61":15,"62":16,"63":16,"64":17,"65":16,"66":15,"67":16,"68":17,"69":16,"70":15,"71":17} ``` and the routing load is paused when the Kafka data reaches TTL and is deleted, the error is `out of range`. The reason why this happened is EOF has it offset which needed statistics. **note(important):** After the bug is fixed, if you set ``` "property.enable.partition.eof" = "false" ``` in your routine load job, it will meet the problem. For EOF has offset, and the config is true in Doris default.
…ter TTL(apache#37288) (apache#39183) pick (apache#37288) When using routine load, After the data load is completed, the lag is still a positive number: ``` Lag: {"0":16,"1":15,"2":16,"3":16,"4":16,"5":16,"6":15,"7":16,"8":16,"9":16,"10":15,"11":16,"12":15,"13":15,"14":16,"15":16,"16":17,"17":15,"18":16,"19":15,"20":16,"21":16,"22":16,"23":16,"24":15,"25":17,"26":17,"27":16,"28":16,"29":16,"30":16,"31":17,"32":14,"33":16,"34":17,"35":16,"36":15,"37":15,"38":15,"39":16,"40":16,"41":16,"42":15,"43":15,"44":17,"45":16,"46":15,"47":15,"48":16,"49":17,"50":16,"51":15,"52":16,"53":15,"54":15,"55":17,"56":16,"57":17,"58":16,"59":16,"60":15,"61":15,"62":16,"63":16,"64":17,"65":16,"66":15,"67":16,"68":17,"69":16,"70":15,"71":17} ``` and the routing load is paused when the Kafka data reaches TTL and is deleted, the error is `out of range`. The reason why this happened is EOF has it offset which needed statistics. **note(important):** After the bug is fixed, if you set ``` "property.enable.partition.eof" = "false" ``` in your routine load job, it will meet the problem. For EOF has offset, and the config is true in Doris default.
Proposed changes
When using routine load, After the data load is completed, the lag is still a positive number:
and the routing load is paused when the Kafka data reaches TTL and is deleted, the error is
out of range
.The reason why this happened is EOF has it offset which needed statistics.
note(important):
After the bug is fixed, if you set
in your routine load job, it will meet the problem. For EOF has offset, and the config is true in Doris default.