mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
dd36b5c381
* Use dockerfile build cache * Improve entrypoint to speed up test setup * Fix asset helper * Disable angular cache until webpack fixes dangling caches. Also experiment with max-old-space-size * No need for maintaining test schema under CI. Saves ~30s of db:test:prepare stuff * DOCKER_BUILDKIT: 1 for AWS * turbo_tests verbose * PostgreSQL conf for CI * Add comment on how to switch back to AWS self-hosted runners
33 lines
737 B
Plaintext
33 lines
737 B
Plaintext
# DB Version: 13
|
|
# OS Type: linux
|
|
# DB Type: web
|
|
# Total Memory (RAM): 32 GB
|
|
# CPUs num: 16
|
|
# Connections num: 200
|
|
# Data Storage: ssd
|
|
|
|
fsync = off
|
|
full_page_writes = off
|
|
deadlock_timeout = 20s
|
|
autovacuum = off
|
|
track_activities = off
|
|
track_counts = off
|
|
listen_addresses = '127.0.0.1'
|
|
unix_socket_directories = '/tmp'
|
|
|
|
max_connections = 200
|
|
shared_buffers = 8GB
|
|
effective_cache_size = 24GB
|
|
maintenance_work_mem = 2GB
|
|
checkpoint_completion_target = 0.9
|
|
wal_buffers = 16MB
|
|
default_statistics_target = 100
|
|
random_page_cost = 1.1
|
|
effective_io_concurrency = 200
|
|
work_mem = 10485kB
|
|
min_wal_size = 1GB
|
|
max_wal_size = 4GB
|
|
max_worker_processes = 16
|
|
max_parallel_workers_per_gather = 4
|
|
max_parallel_workers = 16
|
|
max_parallel_maintenance_workers = 4 |