mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-05 20:42:54 +00:00
Increase limit for worker processes for isolation test (#11504)
## Problem See https://github.com/neondatabase/neon/issues/10652 Neon extension launches 2 BGW which reduce limit for parallel workers and so affecting parallel_deadlock isolation test. ## Summary of changes Increase `max_worker_processes` from default 8 to 16 for isolation test. --------- Co-authored-by: Konstantin Knizhnik <knizhnik@neon.tech>
This commit is contained in:
committed by
GitHub
parent
946e971df8
commit
8936a7abd8
@@ -239,6 +239,8 @@ def test_isolation(
|
||||
"neon.regress_test_mode = true",
|
||||
# Stack size should be increased for tests to pass with asan.
|
||||
"max_stack_depth = 4MB",
|
||||
# Neon extensiosn starts 2 BGW so decreasing number of parallel workers which can affect deadlock-parallel test if it hits max_worker_processes.
|
||||
"max_worker_processes = 16",
|
||||
],
|
||||
)
|
||||
endpoint.safe_psql(f"CREATE DATABASE {DBNAME}")
|
||||
|
||||
Reference in New Issue
Block a user