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