-
Notifications
You must be signed in to change notification settings - Fork 647
add stats for queries with errors #7753
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
061aaa3
to
425cf0a
Compare
425cf0a
to
203b76e
Compare
⚪ ⚪ ⚪
🟢
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
⚪
🟢
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
203b76e
to
4ac253e
Compare
⚪ ⚪
🟢
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
⚪
🟢
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
return true; | ||
} | ||
|
||
return false; |
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.
Unreachable?
void TKqpPlanner::CompletedCA(ui64 taskId, TActorId computeActor) { | ||
auto& task = TasksGraph.GetTask(taskId); | ||
if (task.Meta.Completed) { | ||
return; |
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.
Предлагаю проверить здесь инвариант YQL_ENSURE(!PendingComputeActors.contains(computeActor))
@@ -352,8 +352,9 @@ class TKqpSessionActor : public TActorBootstrapped<TKqpSessionActor> { | |||
auto abortEv = TEvKqp::TEvAbortExecution::Aborted("Client lost"); // any status code can be here | |||
|
|||
Send(ExecuterId, abortEv.Release()); | |||
} else { | |||
Cleanup(); |
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.
В случае bool(ExecuterId) == true
когда теперь будет Cleanup()
?
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.
когда executer ответит.
4ac253e
to
0790396
Compare
⚪ ⚪
🟢
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
⚪
🟢
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
(cherry picked from commit 93998b8)
Changelog entry
add stats for queries with errors
Changelog category
Additional information
...