From 8aae82cab0beed619130619b5c0f883a75e96311 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20Heres?= Date: Fri, 1 Dec 2023 11:05:54 +0100 Subject: [PATCH] Increase batch size x4 --- benchmarks/src/util/options.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmarks/src/util/options.rs b/benchmarks/src/util/options.rs index b9398e5b522f..dfcc3b17666f 100644 --- a/benchmarks/src/util/options.rs +++ b/benchmarks/src/util/options.rs @@ -31,7 +31,7 @@ pub struct CommonOpt { pub partitions: Option, /// Batch size when reading CSV or Parquet files - #[structopt(short = "s", long = "batch-size", default_value = "8192")] + #[structopt(short = "s", long = "batch-size", default_value = "32768")] pub batch_size: usize, /// Activate debug mode to see more details