From b1e03c50915f371796a6faadd9af8b35eb078541 Mon Sep 17 00:00:00 2001 From: Dull Bananas Date: Mon, 9 Jun 2025 20:52:17 -0700 Subject: [PATCH] fsync=off --- scripts/start_dev_db.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/start_dev_db.sh b/scripts/start_dev_db.sh index 1cbe9e16a..93e6bc406 100644 --- a/scripts/start_dev_db.sh +++ b/scripts/start_dev_db.sh @@ -41,6 +41,9 @@ config_args=( # Don't log parameter values -c auto_explain.log_parameter_max_length=0 + + # Disable fsync, a feature that prevents corruption on crash (doesn't matter on a temporary test database) and slows things down, especially migration tests + -c fsync=off ) # Create cluster