Skip to content

Instantly share code, notes, and snippets.

@antico5
Created July 23, 2018 14:43
Show Gist options
  • Save antico5/da459ab5689979c28658c40daa526722 to your computer and use it in GitHub Desktop.
Save antico5/da459ab5689979c28658c40daa526722 to your computer and use it in GitHub Desktop.
postgres tweak for faster tests
```
# 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