Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ballista/executor/src/execution_engine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ use datafusion::physical_plan::display::DisplayableExecutionPlan;
use datafusion::physical_plan::metrics::MetricsSet;
use datafusion::prelude::SessionConfig;
use futures::stream::TryStreamExt;
use log::info;
use log::debug;
use std::fmt::{Debug, Display};
use std::sync::Arc;

Expand Down Expand Up @@ -260,7 +260,7 @@ impl QueryStageExecutor for DefaultQueryStageExec {
ShuffleWriterVariant::Hash(writer) => (Arc::new(writer.clone()), false),
ShuffleWriterVariant::Sort(writer) => (Arc::new(writer.clone()), true),
};
info!(
debug!(
"executor plan pre-run (task_id={task_id}):\n{}",
DisplayableExecutionPlan::new(plan_arc.as_ref()).indent(true)
);
Expand All @@ -272,7 +272,7 @@ impl QueryStageExecutor for DefaultQueryStageExec {
let result =
drive_shuffle_writer_stage(plan_arc.clone(), context, is_sort_shuffle).await;

info!(
debug!(
"executor plan post-run (task_id={task_id}, ok={}):\n{}",
result.is_ok(),
DisplayableExecutionPlan::with_metrics(plan_arc.as_ref()).indent(true)
Expand Down
10 changes: 5 additions & 5 deletions ballista/scheduler/src/cluster/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ use ballista_core::{ConfigProducer, JobId, JobStatusSubscriber};
use datafusion::physical_plan::ExecutionPlan;
use datafusion::prelude::{SessionConfig, SessionContext};
use futures::Stream;
use log::{debug, info};
use log::debug;
use std::collections::{HashMap, HashSet};
use std::pin::Pin;
use std::sync::Arc;
Expand Down Expand Up @@ -392,8 +392,8 @@ fn stage_has_input_collapse(plan_root: &Arc<dyn ExecutionPlan>) -> bool {
[child] => walk(child),
_ => false,
};
info!(
"DIAG stage_has_input_collapse: root={} root_partitions={} → {result}",
debug!(
"stage_has_input_collapse: root={} root_partitions={} → {result}",
plan_root.name(),
plan_root
.properties()
Expand Down Expand Up @@ -461,8 +461,8 @@ fn bind_one(
} else {
input_partition_ids.len() as u32
};
info!(
"DIAG bind_one: job={} stage={} exec={} vcores={} max={} slice_len={} consumed={} partitions={:?} collapse={}",
debug!(
"bind_one: job={} stage={} exec={} vcores={} max={} slice_len={} consumed={} partitions={:?} collapse={}",
job_id,
running_stage.stage_id,
budget.executor_id,
Expand Down