-
Notifications
You must be signed in to change notification settings - Fork 252
by default enable skip agg #12558
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
by default enable skip agg #12558
Conversation
Signed-off-by: Hongbin Ma (Mahone) <[email protected]>
build |
Signed-off-by: Hongbin Ma (Mahone) <[email protected]>
build |
I believe we should mark the config Side comment, this log at INFO level seems a little odd. Shouldn't this be at DEBUG level? https://github.com/NVIDIA/spark-rapids/blob/branch-25.06/sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuAggregateExec.scala#L995 and the INFO level one should be the case where we do skip? https://github.com/NVIDIA/spark-rapids/blob/branch-25.06/sql-plugin/src/main/scala/com/nvidia/spark/rapids/GpuAggregateExec.scala#L986 |
will do
These two logs are both helpful when troubleshooting the skip agg case. How about I changing both to INFO level? I don't know what role DEBUG level logging are supposed to play for us. To me, it would be nice if a log in user production is informative enough for most troubleshootings. Asking user to run it again with DEBUG logging settings would be impractical sometimes because it might be very costly. |
will do
These two logs are both helpful when troubleshooting the skip agg case. How about I changing both to INFO level? I don't know what role DEBUG level logging are supposed to play for us. To me, it would be nice if a log in user production is informative enough for most troubleshootings (unless it's very verbose). Asking user to run it again with DEBUG logging settings would be impractical sometimes because it might be very costly. |
That's fine with me. It's once per task for the first batch only, so it should be fine for now to make them both INFO |
Signed-off-by: Hongbin Ma (Mahone) <[email protected]>
build |
Signed-off-by: Hongbin Ma (Mahone) <[email protected]>
build |
build |
this PR closes #12557, pls check out the descriptions there