chore(scheduler,executor): downgrade #2038 per-task traces to debug - #2104
Merged
Merged
Conversation
…ebug Follow-up to apache#2038 (multi-partition tasks). Four log sites introduced by that PR fire on every scheduling/execution decision and flood scheduler + executor logs at INFO: * `ballista/scheduler/src/cluster/mod.rs`: `stage_has_input_collapse` + `bind_one` — per-bind decision traces (previously prefixed with an ad-hoc `DIAG ` tag, dropped here). * `ballista/executor/src/execution_engine.rs`: `executor plan pre-run` + `executor plan post-run` — per-task DisplayableExecutionPlan dumps. Pre-apache#2038 this function had no logging; both dumps are noise for anyone not actively debugging. All four move to `debug!`. Turn them back on with `RUST_LOG=ballista_scheduler=debug,ballista_executor=debug`. Closes apache#2103. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
milenkovicm
approved these changes
Jul 20, 2026
milenkovicm
left a comment
Contributor
There was a problem hiding this comment.
thanks @avantgardnerio
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Follow-up to #2038 (multi-partition tasks). Four log sites introduced by that PR fire on every scheduling/execution decision and flood scheduler + executor logs at INFO. This PR moves all four to
debug!and drops the ad-hocDIAGprefix.ballista/scheduler/src/cluster/mod.rs:stage_has_input_collapse+bind_one— per-bind decision traces.ballista/executor/src/execution_engine.rs:executor plan pre-run+executor plan post-run— per-taskDisplayableExecutionPlandumps. Pre-Multi-partition tasks: partition_slice plumbing + SortShuffleWriter refactor #2038 this function had no logging; both dumps are noise for anyone not actively debugging.Turn them back on locally with:
Closes #2103.
Test plan
cargo clippy --all-targets -p ballista-scheduler -p ballista-executor— cleancargo fmt --all— clean🤖 Generated with Claude Code