From 7b1f2e7e30eed60e19d9928310b4d5bef7cc7434 Mon Sep 17 00:00:00 2001 From: Richard Date: Thu, 4 Jun 2026 11:43:33 -0400 Subject: [PATCH] bump max throughput before blocking --- arrow-flight/benches/common/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arrow-flight/benches/common/mod.rs b/arrow-flight/benches/common/mod.rs index eb8bea8dc591..a55e1dd2f7f9 100644 --- a/arrow-flight/benches/common/mod.rs +++ b/arrow-flight/benches/common/mod.rs @@ -134,7 +134,7 @@ pub async fn start_server() -> (Channel, BenchServer) { let bench_server = BenchServer::default(); - let (client, server) = tokio::io::duplex(1024 * 1024); + let (client, server) = tokio::io::duplex(64 * 1024 * 1024); // 64MB let mut client = Some(client); let channel = Endpoint::try_from(DUMMY_URL)