Postgres CI: disable crash-safety features for speed

This commit is contained in:
Olivier 'reivilibre
2026-06-29 18:54:39 +01:00
parent 2bb3aac839
commit 65e6e80100
2 changed files with 16 additions and 2 deletions
+10 -2
View File
@@ -383,13 +383,21 @@ jobs:
if: ${{ matrix.job.postgres-version }}
# 1. Mount postgres data files onto a tmpfs in-memory filesystem to reduce overhead of docker's overlayfs layer.
# 2. Expose the unix socket for postgres. This removes latency of using docker-proxy for connections.
# 3. We disable crash-safety features for speed: fsync, synchronous commits, full-page writes.
# Note: synchronous commits are enabled/disabled at runtime by Synapse, so there is also
# code in `tests/server.py` to configure this as off.
run: |
docker run -d -p 5432:5432 \
--tmpfs /var/lib/postgres:rw,size=6144m \
--tmpfs /var/lib/postgresql:rw,size=6144m \
--mount 'type=bind,src=/var/run/postgresql,dst=/var/run/postgresql' \
-e POSTGRES_PASSWORD=postgres \
-e POSTGRES_INITDB_ARGS="--lc-collate C --lc-ctype C --encoding UTF8" \
postgres:${{ matrix.job.postgres-version }}
postgres:${{ matrix.job.postgres-version }} \
-c fsync=off \
-c synchronous_commit=off \
-c full_page_writes=off \
-c wal_level=minimal \
-c max_wal_senders=0
- name: Install Rust
uses: dtolnay/rust-toolchain@e97e2d8cc328f1b50210efc529dca0028893a2d9 # master
@@ -1,5 +1,11 @@
[program:postgres]
# Disable crash-safety features for speed: fsync, synchronous commit, full page writes
command=/usr/local/bin/prefix-log gosu postgres postgres
-c fsync=off
-c synchronous_commit=off
-c full_page_writes=off
-c wal_level=minimal
-c max_wal_senders=0
# Only start if START_POSTGRES=true
autostart=%(ENV_START_POSTGRES)s