From ed11fc0ec8adb228c146ec48a822712c080a28e3 Mon Sep 17 00:00:00 2001 From: John Spray Date: Fri, 22 Dec 2023 13:39:48 +0000 Subject: [PATCH] DNM: hack small buffer size into compute --- compute_tools/src/config.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/compute_tools/src/config.rs b/compute_tools/src/config.rs index 73927b8462..360b588443 100644 --- a/compute_tools/src/config.rs +++ b/compute_tools/src/config.rs @@ -69,6 +69,8 @@ pub fn write_postgres_conf( )?; } + writeln!(file, "shared_buffers=8MB")?; + if let Some(stripe_size) = &spec.shard_stripe_size { writeln!(file, "neon.stripe_size={}", stripe_size)?; }