Project

General

Profile

1
# -----------------------------
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
# Set to SHMMAX
109
shared_buffers = 1500MB			# min 128kB or max_connections*16kB
110
					# (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 = 256MB				# min 64kB
117
#work_mem = 1MB				# min 64kB
118
maintenance_work_mem = 256MB		# min 1MB
119
#maintenance_work_mem = 16MB		# min 1MB
120
#max_stack_depth = 2MB			# min 100kB
121

    
122
# - Free Space Map -
123

    
124
max_fsm_pages = 153600			# min max_fsm_relations*16, 6 bytes each
125
					# (change requires restart)
126
#max_fsm_relations = 1000		# min 100, ~70 bytes each
127
					# (change requires restart)
128

    
129
# - Kernel Resource Usage -
130

    
131
#max_files_per_process = 1000		# min 25
132
					# (change requires restart)
133
#shared_preload_libraries = ''		# (change requires restart)
134

    
135
# - Cost-Based Vacuum Delay -
136

    
137
#vacuum_cost_delay = 0			# 0-1000 milliseconds
138
#vacuum_cost_page_hit = 1		# 0-10000 credits
139
#vacuum_cost_page_miss = 10		# 0-10000 credits
140
#vacuum_cost_page_dirty = 20		# 0-10000 credits
141
#vacuum_cost_limit = 200		# 1-10000 credits
142

    
143
# - Background Writer -
144

    
145
#bgwriter_delay = 200ms			# 10-10000ms between rounds
146
#bgwriter_lru_maxpages = 100		# 0-1000 max buffers written/round
147
#bgwriter_lru_multiplier = 2.0		# 0-10.0 multipler on buffers scanned/round
148

    
149

    
150
#------------------------------------------------------------------------------
151
# WRITE AHEAD LOG
152
#------------------------------------------------------------------------------
153

    
154
# - Settings -
155

    
156
#fsync = on				# turns forced synchronization on or off
157
##### WARNING: Switching this off may cause data loss.
158
# It is used to improve performance with frequent commits. Each datasource makes
159
# ~10 commits/sec (which will hopefully increase after optimization), and there
160
# can be 10+ datasources running simultaneously, so the 100 commit/sec limit may
161
# be exceeded. See synchronous_commit at
162
# <http://wiki.postgresql.org/wiki/Tuning_Your_PostgreSQL_Server#synchronous_commit>
163
#####
164
synchronous_commit = off		# immediate fsync at commit
165
#wal_sync_method = fsync		# the default is the first option 
166
					# supported by the operating system:
167
					#   open_datasync
168
					#   fdatasync
169
					#   fsync
170
					#   fsync_writethrough
171
					#   open_sync
172
#full_page_writes = on			# recover from partial page writes
173
#wal_buffers = 64kB			# min 32kB
174
					# (change requires restart)
175
#wal_writer_delay = 200ms		# 1-10000 milliseconds
176

    
177
#commit_delay = 0			# range 0-100000, in microseconds
178
#commit_siblings = 5			# range 1-1000
179

    
180
# - Checkpoints -
181

    
182
checkpoint_segments = 32		# in logfile segments, min 1, 16MB each
183
#checkpoint_segments = 3		# in logfile segments, min 1, 16MB each
184
#checkpoint_timeout = 5min		# range 30s-1h
185
checkpoint_completion_target = 0.9	# checkpoint target duration, 0.0 - 1.0
186
#checkpoint_completion_target = 0.5	# checkpoint target duration, 0.0 - 1.0
187
#checkpoint_warning = 30s		# 0 is off
188

    
189
# - Archiving -
190

    
191
#archive_mode = off		# allows archiving to be done
192
				# (change requires restart)
193
#archive_command = ''		# command to use to archive a logfile segment
194
#archive_timeout = 0		# force a logfile segment switch after this
195
				# time; 0 is off
196

    
197

    
198
#------------------------------------------------------------------------------
199
# QUERY TUNING
200
#------------------------------------------------------------------------------
201

    
202
# - Planner Method Configuration -
203

    
204
#enable_bitmapscan = on
205
#enable_hashagg = on
206
#enable_hashjoin = on
207
#enable_indexscan = on
208
#enable_mergejoin = on
209
#enable_nestloop = on
210
#enable_seqscan = on
211
#enable_sort = on
212
#enable_tidscan = on
213

    
214
# - Planner Cost Constants -
215

    
216
#seq_page_cost = 1.0			# measured on an arbitrary scale
217
#random_page_cost = 4.0			# same scale as above
218
#cpu_tuple_cost = 0.01			# same scale as above
219
#cpu_index_tuple_cost = 0.005		# same scale as above
220
#cpu_operator_cost = 0.0025		# same scale as above
221
effective_cache_size = 6GB
222

    
223
# - Genetic Query Optimizer -
224

    
225
#geqo = on
226
#geqo_threshold = 12
227
#geqo_effort = 5			# range 1-10
228
#geqo_pool_size = 0			# selects default based on effort
229
#geqo_generations = 0			# selects default based on effort
230
#geqo_selection_bias = 2.0		# range 1.5-2.0
231

    
232
# - Other Planner Options -
233

    
234
# Improve execution query plans
235
default_statistics_target = 100		# range 1-1000
236
#default_statistics_target = 10		# range 1-1000
237
#constraint_exclusion = off
238
#from_collapse_limit = 8
239
#join_collapse_limit = 8		# 1 disables collapsing of explicit 
240
					# JOIN clauses
241

    
242

    
243
#------------------------------------------------------------------------------
244
# ERROR REPORTING AND LOGGING
245
#------------------------------------------------------------------------------
246

    
247
# - Where to Log -
248

    
249
#log_destination = 'stderr'		# Valid values are combinations of
250
					# stderr, csvlog, syslog and eventlog,
251
					# depending on platform.  csvlog
252
					# requires logging_collector to be on.
253

    
254
# This is used when logging to stderr:
255
#logging_collector = off		# Enable capturing of stderr and csvlog
256
					# into log files. Required to be on for
257
					# csvlogs.
258
					# (change requires restart)
259

    
260
# These are only used if logging_collector is on:
261
#log_directory = 'pg_log'		# directory where log files are written,
262
					# can be absolute or relative to PGDATA
263
#log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log'	# log file name pattern,
264
					# can include strftime() escapes
265
#log_truncate_on_rotation = off		# If on, an existing log file of the
266
					# same name as the new log file will be
267
					# truncated rather than appended to.
268
					# But such truncation only occurs on
269
					# time-driven rotation, not on restarts
270
					# or size-driven rotation.  Default is
271
					# off, meaning append to existing files
272
					# in all cases.
273
#log_rotation_age = 1d			# Automatic rotation of logfiles will
274
					# happen after that time.  0 to disable.
275
#log_rotation_size = 10MB		# Automatic rotation of logfiles will 
276
					# happen after that much log output.
277
					# 0 to disable.
278

    
279
# These are relevant when logging to syslog:
280
#syslog_facility = 'LOCAL0'
281
#syslog_ident = 'postgres'
282

    
283

    
284
# - When to Log -
285

    
286
#client_min_messages = notice		# values in order of decreasing detail:
287
					#   debug5
288
					#   debug4
289
					#   debug3
290
					#   debug2
291
					#   debug1
292
					#   log
293
					#   notice
294
					#   warning
295
					#   error
296

    
297
#log_min_messages = notice		# values in order of decreasing detail:
298
					#   debug5
299
					#   debug4
300
					#   debug3
301
					#   debug2
302
					#   debug1
303
					#   info
304
					#   notice
305
					#   warning
306
					#   error
307
					#   log
308
					#   fatal
309
					#   panic
310

    
311
#log_error_verbosity = default		# terse, default, or verbose messages
312

    
313
#log_min_error_statement = error	# values in order of decreasing detail:
314
				 	#   debug5
315
					#   debug4
316
					#   debug3
317
					#   debug2
318
					#   debug1
319
				 	#   info
320
					#   notice
321
					#   warning
322
					#   error
323
					#   log
324
					#   fatal
325
					#   panic (effectively off)
326

    
327
#log_min_duration_statement = -1	# -1 is disabled, 0 logs all statements
328
					# and their durations, > 0 logs only
329
					# statements running at least this time.
330

    
331
#silent_mode = off			# DO NOT USE without syslog or
332
					# logging_collector
333
					# (change requires restart)
334

    
335
# - What to Log -
336

    
337
#debug_print_parse = off
338
#debug_print_rewritten = off
339
#debug_print_plan = off
340
#debug_pretty_print = off
341
#log_checkpoints = off
342
#log_connections = off
343
#log_disconnections = off
344
#log_duration = off
345
#log_hostname = off
346
log_line_prefix = '%t '			# special values:
347
					#   %u = user name
348
					#   %d = database name
349
					#   %r = remote host and port
350
					#   %h = remote host
351
					#   %p = process ID
352
					#   %t = timestamp without milliseconds
353
					#   %m = timestamp with milliseconds
354
					#   %i = command tag
355
					#   %c = session ID
356
					#   %l = session line number
357
					#   %s = session start timestamp
358
					#   %v = virtual transaction ID
359
					#   %x = transaction ID (0 if none)
360
					#   %q = stop here in non-session
361
					#        processes
362
					#   %% = '%'
363
					# e.g. '<%u%%%d> '
364
#log_lock_waits = off			# log lock waits >= deadlock_timeout
365
#log_statement = 'none'			# none, ddl, mod, all
366
#log_temp_files = -1			# log temporary files equal or larger
367
					# than specified size;
368
					# -1 disables, 0 logs all temp files
369
#log_timezone = unknown			# actually, defaults to TZ environment
370
					# setting
371

    
372

    
373
#------------------------------------------------------------------------------
374
# RUNTIME STATISTICS
375
#------------------------------------------------------------------------------
376

    
377
# - Query/Index Statistics Collector -
378

    
379
#track_activities = on
380
#track_counts = on
381
#update_process_title = on
382

    
383

    
384
# - Statistics Monitoring -
385

    
386
#log_parser_stats = off
387
#log_planner_stats = off
388
#log_executor_stats = off
389
#log_statement_stats = off
390

    
391

    
392
#------------------------------------------------------------------------------
393
# AUTOVACUUM PARAMETERS
394
#------------------------------------------------------------------------------
395

    
396
#autovacuum = on			# Enable autovacuum subprocess?  'on' 
397
					# requires track_counts to also be on.
398
#log_autovacuum_min_duration = -1	# -1 disables, 0 logs all actions and
399
					# their durations, > 0 logs only
400
					# actions running at least that time.
401
#autovacuum_max_workers = 3		# max number of autovacuum subprocesses
402
#autovacuum_naptime = 1min		# time between autovacuum runs
403
#autovacuum_vacuum_threshold = 50	# min number of row updates before
404
					# vacuum
405
#autovacuum_analyze_threshold = 50	# min number of row updates before 
406
					# analyze
407
#autovacuum_vacuum_scale_factor = 0.2	# fraction of table size before vacuum
408
#autovacuum_analyze_scale_factor = 0.1	# fraction of table size before analyze
409
#autovacuum_freeze_max_age = 200000000	# maximum XID age before forced vacuum
410
					# (change requires restart)
411
#autovacuum_vacuum_cost_delay = 20	# default vacuum cost delay for
412
					# autovacuum, -1 means use
413
					# vacuum_cost_delay
414
#autovacuum_vacuum_cost_limit = -1	# default vacuum cost limit for
415
					# autovacuum, -1 means use
416
					# vacuum_cost_limit
417

    
418

    
419
#------------------------------------------------------------------------------
420
# CLIENT CONNECTION DEFAULTS
421
#------------------------------------------------------------------------------
422

    
423
# - Statement Behavior -
424

    
425
#search_path = '"$user",public'		# schema names
426
#default_tablespace = ''		# a tablespace name, '' uses the default
427
#temp_tablespaces = ''			# a list of tablespace names, '' uses
428
					# only default tablespace
429
#check_function_bodies = on
430
#default_transaction_isolation = 'read committed'
431
#default_transaction_read_only = off
432
#session_replication_role = 'origin'
433
#statement_timeout = 0			# 0 is disabled
434
#vacuum_freeze_min_age = 100000000
435
#xmlbinary = 'base64'
436
#xmloption = 'content'
437

    
438
# - Locale and Formatting -
439

    
440
datestyle = 'iso, mdy'
441
#timezone = unknown			# actually, defaults to TZ environment
442
					# setting
443
#timezone_abbreviations = 'Default'     # Select the set of available time zone
444
					# abbreviations.  Currently, there are
445
					#   Default
446
					#   Australia
447
					#   India
448
					# You can create your own file in
449
					# share/timezonesets/.
450
#extra_float_digits = 0			# min -15, max 2
451
#client_encoding = sql_ascii		# actually, defaults to database
452
					# encoding
453

    
454
# These settings are initialized by initdb, but they can be changed.
455
lc_messages = 'en_US.UTF-8'			# locale for system error message
456
					# strings
457
lc_monetary = 'en_US.UTF-8'			# locale for monetary formatting
458
lc_numeric = 'en_US.UTF-8'			# locale for number formatting
459
lc_time = 'en_US.UTF-8'				# locale for time formatting
460

    
461
# default configuration for text search
462
default_text_search_config = 'pg_catalog.english'
463

    
464
# - Other Defaults -
465

    
466
#explain_pretty_print = on
467
#dynamic_library_path = '$libdir'
468
#local_preload_libraries = ''
469

    
470

    
471
#------------------------------------------------------------------------------
472
# LOCK MANAGEMENT
473
#------------------------------------------------------------------------------
474

    
475
#deadlock_timeout = 1s
476
#max_locks_per_transaction = 64		# min 10
477
					# (change requires restart)
478
# Note:  Each lock table slot uses ~270 bytes of shared memory, and there are
479
# max_locks_per_transaction * (max_connections + max_prepared_transactions)
480
# lock table slots.
481

    
482

    
483
#------------------------------------------------------------------------------
484
# VERSION/PLATFORM COMPATIBILITY
485
#------------------------------------------------------------------------------
486

    
487
# - Previous PostgreSQL Versions -
488

    
489
#add_missing_from = off
490
#array_nulls = on
491
#backslash_quote = safe_encoding	# on, off, or safe_encoding
492
#default_with_oids = off
493
#escape_string_warning = on
494
#regex_flavor = advanced		# advanced, extended, or basic
495
#sql_inheritance = on
496
#standard_conforming_strings = off
497
#synchronize_seqscans = on
498

    
499
# - Other Platforms and Clients -
500

    
501
#transform_null_equals = off
502

    
503

    
504
#------------------------------------------------------------------------------
505
# CUSTOMIZED OPTIONS
506
#------------------------------------------------------------------------------
507

    
508
#custom_variable_classes = ''		# list of custom variable class names
(16-16/31)