Skip to content
Closed
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
2 changes: 1 addition & 1 deletion rust/benchmarks/src/bin/tpch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ struct BenchmarkOpt {
concurrency: usize,

/// Batch size when reading CSV or Parquet files
#[structopt(short = "s", long = "batch-size", default_value = "4096")]
#[structopt(short = "s", long = "batch-size", default_value = "32768")]
batch_size: usize,

/// Path to data files
Expand Down
2 changes: 1 addition & 1 deletion rust/datafusion/src/execution/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ impl ExecutionConfig {
pub fn new() -> Self {
Self {
concurrency: num_cpus::get(),
batch_size: 4096,
batch_size: 32768,
query_planner: Arc::new(DefaultQueryPlanner {}),
}
}
Expand Down