-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[improve](routine load) introduce routine load abnormal job monitor metrics #48171
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. Please clearly describe your PR:
|
|
run buildall |
d640074 to
983a4cc
Compare
|
run buildall |
TPC-H: Total hot run time: 31586 ms |
TPC-DS: Total hot run time: 183367 ms |
ClickBench: Total hot run time: 30.83 s |
983a4cc to
96abe50
Compare
|
run buildall |
TPC-H: Total hot run time: 31192 ms |
TPC-DS: Total hot run time: 191826 ms |
ClickBench: Total hot run time: 30.52 s |
|
run buildall |
TPC-H: Total hot run time: 31668 ms |
TPC-DS: Total hot run time: 183377 ms |
ClickBench: Total hot run time: 30.84 s |
|
run buildall |
TPC-H: Total hot run time: 31727 ms |
TPC-DS: Total hot run time: 190321 ms |
ClickBench: Total hot run time: 31.24 s |
b14ccec to
0ab9771
Compare
|
run buildall |
0ab9771 to
0b1ccf5
Compare
|
run buildall |
0b1ccf5 to
5156681
Compare
|
run buildall |
TPC-H: Total hot run time: 31608 ms |
|
run buildall |
1 similar comment
|
run buildall |
TPC-H: Total hot run time: 32415 ms |
TPC-DS: Total hot run time: 191982 ms |
ClickBench: Total hot run time: 30.76 s |
60f4a49 to
8d8907e
Compare
|
run buildall |
68015ea to
b95ba3c
Compare
|
run buildall |
TPC-H: Total hot run time: 32443 ms |
TPC-DS: Total hot run time: 191807 ms |
ClickBench: Total hot run time: 30.7 s |
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
|
PR approved by at least one committer and no changes requested. |
|
PR approved by anyone and no changes requested. |
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
…etrics (#48171) ### What problem does this PR solve? related #48511 Introduce some metrics so that abnormal routine load jobs can be monitored. **metrics:** 1. On the basis of job state, add two states `USER_PAUSED` and `ABNORMA_PAUSED` ``` { "tags": { "metric":"doris_fe_job", "job":"load", "type":"ROUTINE_LOAD", "state":"ABNORMAL_PAUSED" }, "unit":"nounit", "value":1 }, { "tags": { "metric":"doris_fe_job", "job":"load", "type":"ROUTINE_LOAD", "state":"USER_PAUSED" }, "unit":"nounit", "value":1 }, ``` 2. Sum of all progress of the routine load job ``` doris_fe_routine_load_progress ``` 3. Sum of all lags for the routine load job ``` doris_fe_routine_load_lag ``` 4. Sum of all abort tasks num for the routine load job ``` doris_fe_routine_load_abort_task_num ```
…etrics (apache#48171) ### What problem does this PR solve? related apache#48511 Introduce some metrics so that abnormal routine load jobs can be monitored. **metrics:** 1. On the basis of job state, add two states `USER_PAUSED` and `ABNORMA_PAUSED` ``` { "tags": { "metric":"doris_fe_job", "job":"load", "type":"ROUTINE_LOAD", "state":"ABNORMAL_PAUSED" }, "unit":"nounit", "value":1 }, { "tags": { "metric":"doris_fe_job", "job":"load", "type":"ROUTINE_LOAD", "state":"USER_PAUSED" }, "unit":"nounit", "value":1 }, ``` 2. Sum of all progress of the routine load job ``` doris_fe_routine_load_progress ``` 3. Sum of all lags for the routine load job ``` doris_fe_routine_load_lag ``` 4. Sum of all abort tasks num for the routine load job ``` doris_fe_routine_load_abort_task_num ```
What problem does this PR solve?
related #48511
Introduce some metrics so that abnormal routine load jobs can be monitored.
metrics:
USER_PAUSEDandABNORMA_PAUSEDRelease note
None
Check List (For Author)
Test
Behavior changed:
Does this need documentation?
Check List (For Reviewer who merge this PR)