Skip to content
Merged
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
13 changes: 6 additions & 7 deletions ballista/core/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -359,13 +359,12 @@ static CONFIG_ENTRIES: LazyLock<HashMap<String, ConfigEntry>> = LazyLock::new(||
ConfigEntry::new(
BALLISTA_SCHEDULER_MAX_PARTITIONS_PER_TASK.to_string(),
"Upper bound on the number of input partitions packed into a single \
task's `partition_slice`. `1` (default) is the pre-multi-partition-tasks \
execution model — one task per partition, matching the Spark user \
persona and preserving master's behaviour on merge. Raise to enable \
multi-partition tasks (fewer tasks, parallel-sort / parallel-join wins); \
`0` means unbounded — the scheduler fills each task up to the executor's \
free vcore count. Does not apply to collapse stages, which must pack \
their full pending queue into a single task for correctness."
task's `partition_slice`. `1` (default) means one task per input \
partition. Raise to enable multi-partition tasks (fewer tasks, \
parallel-sort / parallel-join wins); `0` means unbounded — the \
scheduler fills each task up to the executor's free vcore count. \
Does not apply to collapse stages, which must pack their full \
pending queue into a single task for correctness."
.to_string(),
DataType::UInt64,
Some(1.to_string()),
Expand Down