From 81ab3a6b4a4b6c477a211cf1e5d8270da124d1d9 Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Tue, 26 Oct 2021 18:04:56 +0200 Subject: [PATCH] disable parallel workers on nominatim --- roles/nominatim.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/roles/nominatim.rb b/roles/nominatim.rb index e9c6040c9..8981e500a 100644 --- a/roles/nominatim.rb +++ b/roles/nominatim.rb @@ -26,7 +26,8 @@ default_attributes( :checkpoint_completion_target => "0.9", :jit => "off", :shared_buffers => "2GB", - :autovacuum_max_workers => "1" + :autovacuum_max_workers => "1", + :max_parallel_workers_per_gather => "0" } } }, -- 2.39.5