feat(server): enable data page checksums (#9384)

This commit is contained in:
Matthew Momjian
2024-05-11 11:11:14 -04:00
committed by GitHub
parent 6f82f220b8
commit 55a7e54011
3 changed files with 7 additions and 1 deletions
+2
View File
@@ -68,9 +68,11 @@ services:
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_USER: ${DB_USERNAME}
POSTGRES_DB: ${DB_DATABASE_NAME}
POSTGRES_INITDB_ARGS: '--data-checksums'
volumes:
- ${DB_DATA_LOCATION}:/var/lib/postgresql/data
restart: always
command: ["postgres", "-c" ,"shared_preload_libraries=vectors.so", "-c", 'search_path="$$user", public, vectors', "-c", "logging_collector=on", "-c", "max_wal_size=2GB", "-c", "shared_buffers=512MB", "-c", "wal_compression=on"]
volumes:
model-cache: