-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpostgresql.conf
More file actions
48 lines (36 loc) · 921 Bytes
/
postgresql.conf
File metadata and controls
48 lines (36 loc) · 921 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# /var/lib/postgresql/9.3/testing - ramdysk, ssd - jakiś szybki storage
hba_file = 'pg_hba.conf'
ident_file = 'pg_ident.conf'
external_pid_file = '/tmp/postgresql-testing-5499.pid'
unix_socket_directories = '/tmp'
listen_addresses = '*'
port = 5499
max_connections = 10
superuser_reserved_connections = 3
ssl = false
shared_buffers = 1024MB # ~ 1/4 RAM
work_mem = 16MB
bgwriter_delay = 10000ms
bgwriter_lru_maxpages = 100
bgwriter_lru_multiplier = 10.0
effective_io_concurrency = 1
wal_level = minimal
fsync = off
synchronous_commit = off
full_page_writes = off
wal_buffers = -1
wal_writer_delay = 10000ms
commit_delay = 5000
commit_siblings = 50
checkpoint_segments = 10
checkpoint_timeout = 30min
checkpoint_completion_target = 0.90
checkpoint_warning = 30s
archive_mode = off
autovacuum = off
datestyle = 'iso, dmy'
timezone = 'Poland'
lc_messages = 'C'
lc_monetary = 'C'
lc_numeric = 'C'
lc_time = 'C'