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
6 changes: 3 additions & 3 deletions benchmarks/src/bin/tpch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ struct BallistaBenchmarkOpt {
// #[structopt(short = "m", long = "mem-table")]
// mem_table: bool,
/// Number of partitions to process in parallel
#[structopt(short = "p", long = "partitions", default_value = "2")]
#[structopt(short = "n", long = "partitions", default_value = "2")]
partitions: usize,

/// Ballista executor host
Expand All @@ -117,7 +117,7 @@ struct DataFusionBenchmarkOpt {
iterations: usize,

/// Number of partitions to process in parallel
#[structopt(short = "p", long = "partitions", default_value = "2")]
#[structopt(short = "n", long = "partitions", default_value = "2")]
partitions: usize,

/// Batch size when reading CSV or Parquet files
Expand Down Expand Up @@ -156,7 +156,7 @@ struct ConvertOpt {
compression: String,

/// Number of partitions to produce
#[structopt(short = "p", long = "partitions", default_value = "1")]
#[structopt(short = "n", long = "partitions", default_value = "1")]
partitions: usize,

/// Batch size when reading CSV or Parquet files
Expand Down