Compare commits

...

1 Commits

Author SHA1 Message Date
Joonas Koivunen
b6a2c39a26 bench: lower attach concurrency
it has been observed that we get transaction serialization issues
otherwise.

evidence: https://neon-github-public-dev.s3.amazonaws.com/reports/main/10402057346/index.html#suites/c62b105f3a4f00dd6be4ad88810e0e02/7c03011d9dbd5ec4/
2024-08-15 12:24:38 +00:00

View File

@@ -65,7 +65,7 @@ def single_timeline(
override_storage_controller_generation=True,
)
with concurrent.futures.ThreadPoolExecutor(max_workers=22) as executor:
with concurrent.futures.ThreadPoolExecutor(max_workers=1) as executor:
executor.map(attach, tenants)
# Benchmarks will start the pageserver explicitly themselves