Created
July 23, 2018 14:43
-
-
Save antico5/da459ab5689979c28658c40daa526722 to your computer and use it in GitHub Desktop.
postgres tweak for faster tests
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
``` | |
# Turn off fsync; there is no need to flush data to disk. | |
fsync = 'off' | |
# Turn off full_page_writes; | |
# there is no need to guard against partial page writes. | |
full_page_writes = 'off' | |
# Increase checkpoint_segments and checkpoint_timeout ; | |
# this reduces the frequency of checkpoints, | |
# but increases the storage requirements of /pg_xlog. | |
checkpoint_segments = '100' | |
checkpoint_timeout = '45min' | |
# Turn off synchronous_commit; | |
# there might be no need to write the WAL to disk on every commit. | |
# This setting does risk transaction loss (though not data corruption) | |
# in case of a crash of the database alone. | |
synchronous_commit = 'off' | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment