Project

General

Profile

1 1585 aaronmk
# -----------------------------
2
# PostgreSQL configuration file
3
# -----------------------------
4
#
5
# This file consists of lines of the form:
6
#
7
#   name = value
8
#
9
# (The "=" is optional.)  Whitespace may be used.  Comments are introduced with
10
# "#" anywhere on a line.  The complete list of parameter names and allowed
11
# values can be found in the PostgreSQL documentation.
12
#
13
# The commented-out settings shown in this file represent the default values.
14
# Re-commenting a setting is NOT sufficient to revert it to the default value;
15
# you need to reload the server.
16
#
17
# This file is read on server startup and when the server receives a SIGHUP
18
# signal.  If you edit the file on a running system, you have to SIGHUP the
19
# server for the changes to take effect, or use "pg_ctl reload".  Some
20
# parameters, which are marked below, require a server shutdown and restart to
21
# take effect.
22
#
23
# Any parameter can also be given as a command-line option to the server, e.g.,
24
# "postgres -c log_connections=on".  Some paramters can be changed at run time
25
# with the "SET" SQL command.
26
#
27
# Memory units:  kB = kilobytes MB = megabytes GB = gigabytes
28
# Time units:    ms = milliseconds s = seconds min = minutes h = hours d = days
29
30
31
#------------------------------------------------------------------------------
32
# FILE LOCATIONS
33
#------------------------------------------------------------------------------
34
35
# The default values of these variables are driven from the -D command-line
36
# option or PGDATA environment variable, represented here as ConfigDir.
37
38
data_directory = '/var/lib/postgresql/8.3/main'		# use data in another directory
39
					# (change requires restart)
40
hba_file = '/etc/postgresql/8.3/main/pg_hba.conf'	# host-based authentication file
41
					# (change requires restart)
42
ident_file = '/etc/postgresql/8.3/main/pg_ident.conf'	# ident configuration file
43
					# (change requires restart)
44
45
# If external_pid_file is not explicitly set, no extra PID file is written.
46
external_pid_file = '/var/run/postgresql/8.3-main.pid'		# write an extra PID file
47
					# (change requires restart)
48
49
50
#------------------------------------------------------------------------------
51
# CONNECTIONS AND AUTHENTICATION
52
#------------------------------------------------------------------------------
53
54
# - Connection Settings -
55
56
listen_addresses = '*'		# what IP address(es) to listen on;
57
					# comma-separated list of addresses;
58
					# defaults to 'localhost', '*' = all
59
					# (change requires restart)
60
port = 5432				# (change requires restart)
61
max_connections = 100			# (change requires restart)
62
# Note:  Increasing max_connections costs ~400 bytes of shared memory per
63
# connection slot, plus lock space (see max_locks_per_transaction).  You might
64
# also need to raise shared_buffers to support more connections.
65
#superuser_reserved_connections = 3	# (change requires restart)
66
unix_socket_directory = '/var/run/postgresql'		# (change requires restart)
67
#unix_socket_group = ''			# (change requires restart)
68
#unix_socket_permissions = 0777		# begin with 0 to use octal notation
69
					# (change requires restart)
70
#bonjour_name = ''			# defaults to the computer name
71
					# (change requires restart)
72
73
# - Security and Authentication -
74
75
#authentication_timeout = 1min		# 1s-600s
76
ssl = true				# (change requires restart)
77
#ssl_ciphers = 'ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH'	# allowed SSL ciphers
78
					# (change requires restart)
79
#ssl_renegotiation_limit = 512MB	# amount of data between renegotiations
80
#password_encryption = on
81
#db_user_namespace = off
82
83
# Kerberos and GSSAPI
84
#krb_server_keyfile = ''		# (change requires restart)
85
#krb_srvname = 'postgres'		# (change requires restart, Kerberos only)
86
#krb_server_hostname = ''		# empty string matches any keytab entry
87
					# (change requires restart, Kerberos only)
88
#krb_caseins_users = off		# (change requires restart)
89
#krb_realm = ''           		# (change requires restart)
90
91
# - TCP Keepalives -
92
# see "man 7 tcp" for details
93
94
#tcp_keepalives_idle = 0		# TCP_KEEPIDLE, in seconds;
95
					# 0 selects the system default
96
#tcp_keepalives_interval = 0		# TCP_KEEPINTVL, in seconds;
97
					# 0 selects the system default
98
#tcp_keepalives_count = 0		# TCP_KEEPCNT;
99
					# 0 selects the system default
100
101
102
#------------------------------------------------------------------------------
103
# RESOURCE USAGE (except WAL)
104
#------------------------------------------------------------------------------
105
106
# - Memory -
107
108 1587 aaronmk
# Set to SHMMAX
109 1588 aaronmk
shared_buffers = 24MB			# min 128kB or max_connections*16kB
110 1585 aaronmk
					# (change requires restart)
111
#temp_buffers = 8MB			# min 800kB
112
#max_prepared_transactions = 5		# can be 0 or more
113
					# (change requires restart)
114
# Note:  Increasing max_prepared_transactions costs ~600 bytes of shared memory
115
# per transaction slot, plus lock space (see max_locks_per_transaction).
116
#work_mem = 1MB				# min 64kB
117
#maintenance_work_mem = 16MB		# min 1MB
118
#max_stack_depth = 2MB			# min 100kB
119
120
# - Free Space Map -
121
122
max_fsm_pages = 153600			# min max_fsm_relations*16, 6 bytes each
123
					# (change requires restart)
124
#max_fsm_relations = 1000		# min 100, ~70 bytes each
125
					# (change requires restart)
126
127
# - Kernel Resource Usage -
128
129
#max_files_per_process = 1000		# min 25
130
					# (change requires restart)
131
#shared_preload_libraries = ''		# (change requires restart)
132
133
# - Cost-Based Vacuum Delay -
134
135
#vacuum_cost_delay = 0			# 0-1000 milliseconds
136
#vacuum_cost_page_hit = 1		# 0-10000 credits
137
#vacuum_cost_page_miss = 10		# 0-10000 credits
138
#vacuum_cost_page_dirty = 20		# 0-10000 credits
139
#vacuum_cost_limit = 200		# 1-10000 credits
140
141
# - Background Writer -
142
143
#bgwriter_delay = 200ms			# 10-10000ms between rounds
144
#bgwriter_lru_maxpages = 100		# 0-1000 max buffers written/round
145
#bgwriter_lru_multiplier = 2.0		# 0-10.0 multipler on buffers scanned/round
146
147
148
#------------------------------------------------------------------------------
149
# WRITE AHEAD LOG
150
#------------------------------------------------------------------------------
151
152
# - Settings -
153
154
#fsync = on				# turns forced synchronization on or off
155 1586 aaronmk
##### WARNING: Switching this off may cause data loss.
156
# It is used to improve performance with frequent commits. Each datasource makes
157
# ~10 commits/sec (which will hopefully increase after optimization), and there
158
# can be 10+ datasources running simultaneously, so the 100 commit/sec limit may
159
# be exceeded. See synchronous_commit at
160
# <http://wiki.postgresql.org/wiki/Tuning_Your_PostgreSQL_Server#synchronous_commit>
161
#####
162
synchronous_commit = off		# immediate fsync at commit
163 1585 aaronmk
#wal_sync_method = fsync		# the default is the first option
164
					# supported by the operating system:
165
					#   open_datasync
166
					#   fdatasync
167
					#   fsync
168
					#   fsync_writethrough
169
					#   open_sync
170
#full_page_writes = on			# recover from partial page writes
171
#wal_buffers = 64kB			# min 32kB
172
					# (change requires restart)
173
#wal_writer_delay = 200ms		# 1-10000 milliseconds
174
175
#commit_delay = 0			# range 0-100000, in microseconds
176
#commit_siblings = 5			# range 1-1000
177
178
# - Checkpoints -
179
180
#checkpoint_segments = 3		# in logfile segments, min 1, 16MB each
181
#checkpoint_timeout = 5min		# range 30s-1h
182
#checkpoint_completion_target = 0.5	# checkpoint target duration, 0.0 - 1.0
183
#checkpoint_warning = 30s		# 0 is off
184
185
# - Archiving -
186
187
#archive_mode = off		# allows archiving to be done
188
				# (change requires restart)
189
#archive_command = ''		# command to use to archive a logfile segment
190
#archive_timeout = 0		# force a logfile segment switch after this
191
				# time; 0 is off
192
193
194
#------------------------------------------------------------------------------
195
# QUERY TUNING
196
#------------------------------------------------------------------------------
197
198
# - Planner Method Configuration -
199
200
#enable_bitmapscan = on
201
#enable_hashagg = on
202
#enable_hashjoin = on
203
#enable_indexscan = on
204
#enable_mergejoin = on
205
#enable_nestloop = on
206
#enable_seqscan = on
207
#enable_sort = on
208
#enable_tidscan = on
209
210
# - Planner Cost Constants -
211
212
#seq_page_cost = 1.0			# measured on an arbitrary scale
213
#random_page_cost = 4.0			# same scale as above
214
#cpu_tuple_cost = 0.01			# same scale as above
215
#cpu_index_tuple_cost = 0.005		# same scale as above
216
#cpu_operator_cost = 0.0025		# same scale as above
217 1586 aaronmk
effective_cache_size = 6GB
218 1585 aaronmk
219
# - Genetic Query Optimizer -
220
221
#geqo = on
222
#geqo_threshold = 12
223
#geqo_effort = 5			# range 1-10
224
#geqo_pool_size = 0			# selects default based on effort
225
#geqo_generations = 0			# selects default based on effort
226
#geqo_selection_bias = 2.0		# range 1.5-2.0
227
228
# - Other Planner Options -
229
230
#default_statistics_target = 10		# range 1-1000
231
#constraint_exclusion = off
232
#from_collapse_limit = 8
233
#join_collapse_limit = 8		# 1 disables collapsing of explicit
234
					# JOIN clauses
235
236
237
#------------------------------------------------------------------------------
238
# ERROR REPORTING AND LOGGING
239
#------------------------------------------------------------------------------
240
241
# - Where to Log -
242
243
#log_destination = 'stderr'		# Valid values are combinations of
244
					# stderr, csvlog, syslog and eventlog,
245
					# depending on platform.  csvlog
246
					# requires logging_collector to be on.
247
248
# This is used when logging to stderr:
249
#logging_collector = off		# Enable capturing of stderr and csvlog
250
					# into log files. Required to be on for
251
					# csvlogs.
252
					# (change requires restart)
253
254
# These are only used if logging_collector is on:
255
#log_directory = 'pg_log'		# directory where log files are written,
256
					# can be absolute or relative to PGDATA
257
#log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log'	# log file name pattern,
258
					# can include strftime() escapes
259
#log_truncate_on_rotation = off		# If on, an existing log file of the
260
					# same name as the new log file will be
261
					# truncated rather than appended to.
262
					# But such truncation only occurs on
263
					# time-driven rotation, not on restarts
264
					# or size-driven rotation.  Default is
265
					# off, meaning append to existing files
266
					# in all cases.
267
#log_rotation_age = 1d			# Automatic rotation of logfiles will
268
					# happen after that time.  0 to disable.
269
#log_rotation_size = 10MB		# Automatic rotation of logfiles will
270
					# happen after that much log output.
271
					# 0 to disable.
272
273
# These are relevant when logging to syslog:
274
#syslog_facility = 'LOCAL0'
275
#syslog_ident = 'postgres'
276
277
278
# - When to Log -
279
280
#client_min_messages = notice		# values in order of decreasing detail:
281
					#   debug5
282
					#   debug4
283
					#   debug3
284
					#   debug2
285
					#   debug1
286
					#   log
287
					#   notice
288
					#   warning
289
					#   error
290
291
#log_min_messages = notice		# values in order of decreasing detail:
292
					#   debug5
293
					#   debug4
294
					#   debug3
295
					#   debug2
296
					#   debug1
297
					#   info
298
					#   notice
299
					#   warning
300
					#   error
301
					#   log
302
					#   fatal
303
					#   panic
304
305
#log_error_verbosity = default		# terse, default, or verbose messages
306
307
#log_min_error_statement = error	# values in order of decreasing detail:
308
				 	#   debug5
309
					#   debug4
310
					#   debug3
311
					#   debug2
312
					#   debug1
313
				 	#   info
314
					#   notice
315
					#   warning
316
					#   error
317
					#   log
318
					#   fatal
319
					#   panic (effectively off)
320
321
#log_min_duration_statement = -1	# -1 is disabled, 0 logs all statements
322
					# and their durations, > 0 logs only
323
					# statements running at least this time.
324
325
#silent_mode = off			# DO NOT USE without syslog or
326
					# logging_collector
327
					# (change requires restart)
328
329
# - What to Log -
330
331
#debug_print_parse = off
332
#debug_print_rewritten = off
333
#debug_print_plan = off
334
#debug_pretty_print = off
335
#log_checkpoints = off
336
#log_connections = off
337
#log_disconnections = off
338
#log_duration = off
339
#log_hostname = off
340
log_line_prefix = '%t '			# special values:
341
					#   %u = user name
342
					#   %d = database name
343
					#   %r = remote host and port
344
					#   %h = remote host
345
					#   %p = process ID
346
					#   %t = timestamp without milliseconds
347
					#   %m = timestamp with milliseconds
348
					#   %i = command tag
349
					#   %c = session ID
350
					#   %l = session line number
351
					#   %s = session start timestamp
352
					#   %v = virtual transaction ID
353
					#   %x = transaction ID (0 if none)
354
					#   %q = stop here in non-session
355
					#        processes
356
					#   %% = '%'
357
					# e.g. '<%u%%%d> '
358
#log_lock_waits = off			# log lock waits >= deadlock_timeout
359
#log_statement = 'none'			# none, ddl, mod, all
360
#log_temp_files = -1			# log temporary files equal or larger
361
					# than specified size;
362
					# -1 disables, 0 logs all temp files
363
#log_timezone = unknown			# actually, defaults to TZ environment
364
					# setting
365
366
367
#------------------------------------------------------------------------------
368
# RUNTIME STATISTICS
369
#------------------------------------------------------------------------------
370
371
# - Query/Index Statistics Collector -
372
373
#track_activities = on
374
#track_counts = on
375
#update_process_title = on
376
377
378
# - Statistics Monitoring -
379
380
#log_parser_stats = off
381
#log_planner_stats = off
382
#log_executor_stats = off
383
#log_statement_stats = off
384
385
386
#------------------------------------------------------------------------------
387
# AUTOVACUUM PARAMETERS
388
#------------------------------------------------------------------------------
389
390
#autovacuum = on			# Enable autovacuum subprocess?  'on'
391
					# requires track_counts to also be on.
392
#log_autovacuum_min_duration = -1	# -1 disables, 0 logs all actions and
393
					# their durations, > 0 logs only
394
					# actions running at least that time.
395
#autovacuum_max_workers = 3		# max number of autovacuum subprocesses
396
#autovacuum_naptime = 1min		# time between autovacuum runs
397
#autovacuum_vacuum_threshold = 50	# min number of row updates before
398
					# vacuum
399
#autovacuum_analyze_threshold = 50	# min number of row updates before
400
					# analyze
401
#autovacuum_vacuum_scale_factor = 0.2	# fraction of table size before vacuum
402
#autovacuum_analyze_scale_factor = 0.1	# fraction of table size before analyze
403
#autovacuum_freeze_max_age = 200000000	# maximum XID age before forced vacuum
404
					# (change requires restart)
405
#autovacuum_vacuum_cost_delay = 20	# default vacuum cost delay for
406
					# autovacuum, -1 means use
407
					# vacuum_cost_delay
408
#autovacuum_vacuum_cost_limit = -1	# default vacuum cost limit for
409
					# autovacuum, -1 means use
410
					# vacuum_cost_limit
411
412
413
#------------------------------------------------------------------------------
414
# CLIENT CONNECTION DEFAULTS
415
#------------------------------------------------------------------------------
416
417
# - Statement Behavior -
418
419
#search_path = '"$user",public'		# schema names
420
#default_tablespace = ''		# a tablespace name, '' uses the default
421
#temp_tablespaces = ''			# a list of tablespace names, '' uses
422
					# only default tablespace
423
#check_function_bodies = on
424
#default_transaction_isolation = 'read committed'
425
#default_transaction_read_only = off
426
#session_replication_role = 'origin'
427
#statement_timeout = 0			# 0 is disabled
428
#vacuum_freeze_min_age = 100000000
429
#xmlbinary = 'base64'
430
#xmloption = 'content'
431
432
# - Locale and Formatting -
433
434
datestyle = 'iso, mdy'
435
#timezone = unknown			# actually, defaults to TZ environment
436
					# setting
437
#timezone_abbreviations = 'Default'     # Select the set of available time zone
438
					# abbreviations.  Currently, there are
439
					#   Default
440
					#   Australia
441
					#   India
442
					# You can create your own file in
443
					# share/timezonesets/.
444
#extra_float_digits = 0			# min -15, max 2
445
#client_encoding = sql_ascii		# actually, defaults to database
446
					# encoding
447
448
# These settings are initialized by initdb, but they can be changed.
449
lc_messages = 'en_US.UTF-8'			# locale for system error message
450
					# strings
451
lc_monetary = 'en_US.UTF-8'			# locale for monetary formatting
452
lc_numeric = 'en_US.UTF-8'			# locale for number formatting
453
lc_time = 'en_US.UTF-8'				# locale for time formatting
454
455
# default configuration for text search
456
default_text_search_config = 'pg_catalog.english'
457
458
# - Other Defaults -
459
460
#explain_pretty_print = on
461
#dynamic_library_path = '$libdir'
462
#local_preload_libraries = ''
463
464
465
#------------------------------------------------------------------------------
466
# LOCK MANAGEMENT
467
#------------------------------------------------------------------------------
468
469
#deadlock_timeout = 1s
470
#max_locks_per_transaction = 64		# min 10
471
					# (change requires restart)
472
# Note:  Each lock table slot uses ~270 bytes of shared memory, and there are
473
# max_locks_per_transaction * (max_connections + max_prepared_transactions)
474
# lock table slots.
475
476
477
#------------------------------------------------------------------------------
478
# VERSION/PLATFORM COMPATIBILITY
479
#------------------------------------------------------------------------------
480
481
# - Previous PostgreSQL Versions -
482
483
#add_missing_from = off
484
#array_nulls = on
485
#backslash_quote = safe_encoding	# on, off, or safe_encoding
486
#default_with_oids = off
487
#escape_string_warning = on
488
#regex_flavor = advanced		# advanced, extended, or basic
489
#sql_inheritance = on
490
#standard_conforming_strings = off
491
#synchronize_seqscans = on
492
493
# - Other Platforms and Clients -
494
495
#transform_null_equals = off
496
497
498
#------------------------------------------------------------------------------
499
# CUSTOMIZED OPTIONS
500
#------------------------------------------------------------------------------
501
502
#custom_variable_classes = ''		# list of custom variable class names