-
Notifications
You must be signed in to change notification settings - Fork 647
Tests for wide combiner with spilling #6880
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
Tests for wide combiner with spilling #6880
Conversation
return false; | ||
// TODO: YQL-18033 | ||
// return !HasMemoryForProcessing(); | ||
return !HasMemoryForProcessing(); |
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.
Please note that the hardcoded value is removed here
🔴 |
⚪
🔴
*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 |
⚪
🟢
*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 |
⚪
🟢
*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 |
} | ||
logmsg << (used/1_MB) << "MB/" << (limit/1_MB) << "MB"; | ||
|
||
YQL_LOG(INFO) << logmsg; |
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.
Maybe we want to print it on Debug level?
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.
Discussed that this log would be written once per task, so we decided to leave the INFO level.
@@ -688,10 +696,12 @@ class TSpillingSupportState : public TComputationValue<TSpillingSupportState> { | |||
void SwitchMode(EOperatingMode mode) { | |||
switch(mode) { | |||
case EOperatingMode::InMemory: { | |||
YQL_LOG(INFO) << "switching Memory mode to InMemory"; |
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.
And here also in Debug?
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.
Discussed that this log would be written once per task, so we decided to leave the INFO level.
Changelog entry
Added tests for wide combiner with spilling
...
Changelog category
Additional information
...