-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add custom postgres config and set max_locks_per_transaction/max_pred…
…_locks_per_transaction
- Loading branch information
1 parent
5b17a14
commit 476fb70
Showing
2 changed files
with
44 additions
and
16 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# ----------------------------- | ||
# PostgreSQL configuration file | ||
# ----------------------------- | ||
# | ||
# How to get an example pgsql config file: | ||
# docker run -i --rm postgres cat /usr/share/postgresql/postgresql.conf.sample > my-postgres.conf | ||
# | ||
# Memory units: kB = kilobytes Time units: ms = milliseconds | ||
# MB = megabytes s = seconds | ||
# GB = gigabytes min = minutes | ||
# TB = terabytes h = hours | ||
# d = days | ||
|
||
listen_addresses = '*' | ||
max_locks_per_transaction = 1024 | ||
max_pred_locks_per_transaction = 1024 |