Advertisement
Guest User

Untitled

a guest
Feb 28th, 2020
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 31.50 KB | None | 0 0
  1. allow_system_table_mods | off | Allows modifications of the structure of system tables.
  2. application_name | psql | Sets the application name to be reported in statistics and logs.
  3. archive_command | (disabled) | Sets the shell command that will be called to archive a WAL file.
  4. archive_mode | off | Allows archiving of WAL files using archive_command.
  5. archive_timeout | 0 | Forces a switch to the next xlog file if a new file has not been started within N seconds.
  6. array_nulls | on | Enable input of NULL elements in arrays.
  7. authentication_timeout | 1min | Sets the maximum allowed time to complete client authentication.
  8. autovacuum | on | Starts the autovacuum subprocess.
  9. autovacuum_analyze_scale_factor | 0.1 | Number of tuple inserts, updates, or deletes prior to analyze as a fraction of reltuples.
  10. autovacuum_analyze_threshold | 50 | Minimum number of tuple inserts, updates, or deletes prior to analyze.
  11. autovacuum_freeze_max_age | 200000000 | Age at which to autovacuum a table to prevent transaction ID wraparound.
  12. autovacuum_max_workers | 4 | Sets the maximum number of simultaneously running autovacuum worker processes.
  13. autovacuum_multixact_freeze_max_age | 400000000 | Multixact age at which to autovacuum a table to prevent multixact wraparound.
  14. autovacuum_naptime | 20s | Time to sleep between autovacuum runs.
  15. autovacuum_vacuum_cost_delay | 20ms | Vacuum cost delay in milliseconds, for autovacuum.
  16. autovacuum_vacuum_cost_limit | -1 | Vacuum cost amount available before napping, for autovacuum.
  17. autovacuum_vacuum_scale_factor | 0.2 | Number of tuple updates or deletes prior to vacuum as a fraction of reltuples.
  18. autovacuum_vacuum_threshold | 50 | Minimum number of tuple updates or deletes prior to vacuum.
  19. autovacuum_work_mem | -1 | Sets the maximum memory to be used by each autovacuum worker process.
  20. backend_flush_after | 0 | Number of pages after which previously performed writes are flushed to disk.
  21. backslash_quote | safe_encoding | Sets whether "\'" is allowed in string literals.
  22. bgwriter_delay | 20ms | Background writer sleep time between rounds.
  23. bgwriter_flush_after | 512kB | Number of pages after which previously performed writes are flushed to disk.
  24. bgwriter_lru_maxpages | 600 | Background writer maximum number of LRU pages to flush per round.
  25. bgwriter_lru_multiplier | 6 | Multiple of the average buffer usage to free per round.
  26. block_size | 8192 | Shows the size of a disk block.
  27. bonjour | off | Enables advertising the server via Bonjour.
  28. bonjour_name | | Sets the Bonjour service name.
  29. bytea_output | hex | Sets the output format for bytea.
  30. check_function_bodies | on | Check function bodies during CREATE FUNCTION.
  31. checkpoint_completion_target | 0.5 | Time spent flushing dirty buffers during checkpoint, as fraction of checkpoint interval.
  32. checkpoint_flush_after | 256kB | Number of pages after which previously performed writes are flushed to disk.
  33. checkpoint_timeout | 5min | Sets the maximum time between automatic WAL checkpoints.
  34. checkpoint_warning | 30s | Enables warnings if checkpoint segments are filled more frequently than this.
  35. client_encoding | UTF8 | Sets the client's character set encoding.
  36. client_min_messages | notice | Sets the message levels that are sent to the client.
  37. cluster_name | | Sets the name of the cluster, which is included in the process title.
  38. commit_delay | 0 | Sets the delay in microseconds between transaction commit and flushing WAL to disk.
  39. commit_siblings | 5 | Sets the minimum concurrent open transactions before performing commit_delay.
  40. config_file | /var/lib/pgsql/9.6/data/postgresql.conf | Sets the server's main configuration file.
  41. constraint_exclusion | partition | Enables the planner to use constraints to optimize queries.
  42. cpu_index_tuple_cost | 0.005 | Sets the planner's estimate of the cost of processing each index entry during an index scan.
  43. cpu_operator_cost | 0.0025 | Sets the planner's estimate of the cost of processing each operator or function call.
  44. cpu_tuple_cost | 0.01 | Sets the planner's estimate of the cost of processing each tuple (row).
  45. cursor_tuple_fraction | 0.1 | Sets the planner's estimate of the fraction of a cursor's rows that will be retrieved.
  46. data_checksums | off | Shows whether data checksums are turned on for this cluster.
  47. data_directory | /var/lib/pgsql/9.6/data | Sets the server's data directory.
  48. data_sync_retry | off | Whether to continue running after a failure to sync data files.
  49. DateStyle | ISO, DMY | Sets the display format for date and time values.
  50. db_user_namespace | off | Enables per-database user names.
  51. deadlock_timeout | 1s | Sets the time to wait on a lock before checking for deadlock.
  52. debug_assertions | off | Shows whether the running server has assertion checks enabled.
  53. debug_pretty_print | on | Indents parse and plan tree displays.
  54. debug_print_parse | off | Logs each query's parse tree.
  55. debug_print_plan | off | Logs each query's execution plan.
  56. debug_print_rewritten | off | Logs each query's rewritten parse tree.
  57. default_statistics_target | 1000 | Sets the default statistics target.
  58. default_tablespace | | Sets the default tablespace to create tables and indexes in.
  59. default_text_search_config | pg_catalog.simple | Sets default text search configuration.
  60. default_transaction_deferrable | off | Sets the default deferrable status of new transactions.
  61. default_transaction_isolation | read committed | Sets the transaction isolation level of each new transaction.
  62. default_transaction_read_only | off | Sets the default read-only status of new transactions.
  63. default_with_oids | off | Create new tables with OIDs by default.
  64. dynamic_library_path | $libdir | Sets the path for dynamically loadable modules.
  65. dynamic_shared_memory_type | posix | Selects the dynamic shared memory implementation used.
  66. effective_cache_size | 12GB | Sets the planner's assumption about the total size of the data caches.
  67. effective_io_concurrency | 5 | Number of simultaneous requests that can be handled efficiently by the disk subsystem.
  68. enable_bitmapscan | on | Enables the planner's use of bitmap-scan plans.
  69. enable_hashagg | on | Enables the planner's use of hashed aggregation plans.
  70. enable_hashjoin | on | Enables the planner's use of hash join plans.
  71. enable_indexonlyscan | on | Enables the planner's use of index-only-scan plans.
  72. enable_indexscan | on | Enables the planner's use of index-scan plans.
  73. enable_material | on | Enables the planner's use of materialization.
  74. enable_mergejoin | on | Enables the planner's use of merge join plans.
  75. enable_nestloop | on | Enables the planner's use of nested-loop join plans.
  76. enable_seqscan | on | Enables the planner's use of sequential-scan plans.
  77. enable_sort | on | Enables the planner's use of explicit sort steps.
  78. enable_tidscan | on | Enables the planner's use of TID scan plans.
  79. escape_string_warning | off | Warn about backslash escapes in ordinary string literals.
  80. event_source | PostgreSQL | Sets the application name used to identify PostgreSQL messages in the event log.
  81. exit_on_error | off | Terminate session on any error.
  82. external_pid_file | | Writes the postmaster PID to the specified file.
  83. extra_float_digits | 0 | Sets the number of digits displayed for floating-point values.
  84. force_parallel_mode | off | Forces use of parallel query facilities.
  85. from_collapse_limit | 8 | Sets the FROM-list size beyond which subqueries are not collapsed.
  86. fsync | on | Forces synchronization of updates to disk.
  87. full_page_writes | on | Writes full pages to WAL when first modified after a checkpoint.
  88. geqo | on | Enables genetic query optimization.
  89. geqo_effort | 5 | GEQO: effort is used to set the default for other GEQO parameters.
  90. geqo_generations | 0 | GEQO: number of iterations of the algorithm.
  91. geqo_pool_size | 0 | GEQO: number of individuals in the population.
  92. geqo_seed | 0 | GEQO: seed for random path selection.
  93. geqo_selection_bias | 2 | GEQO: selective pressure within the population.
  94. geqo_threshold | 12 | Sets the threshold of FROM items beyond which GEQO is used.
  95. gin_fuzzy_search_limit | 0 | Sets the maximum allowed result for exact search by GIN.
  96. gin_pending_list_limit | 4MB | Sets the maximum size of the pending list for GIN index.
  97. hba_file | /var/lib/pgsql/9.6/data/pg_hba.conf | Sets the server's "hba" configuration file.
  98. hot_standby | off | Allows connections and queries during recovery.
  99. hot_standby_feedback | off | Allows feedback from a hot standby to the primary that will avoid query conflicts.
  100. huge_pages | try | Use of huge pages on Linux.
  101. ident_file | /var/lib/pgsql/9.6/data/pg_ident.conf | Sets the server's "ident" configuration file.
  102. idle_in_transaction_session_timeout | 0 | Sets the maximum allowed duration of any idling transaction.
  103. ignore_checksum_failure | off | Continues processing after a checksum failure.
  104. ignore_system_indexes | off | Disables reading from system indexes.
  105. integer_datetimes | on | Datetimes are integer based.
  106. IntervalStyle | postgres | Sets the display format for interval values.
  107. join_collapse_limit | 8 | Sets the FROM-list size beyond which JOIN constructs are not flattened.
  108. krb_caseins_users | off | Sets whether Kerberos and GSSAPI user names should be treated as case-insensitive.
  109. krb_server_keyfile | FILE:/etc/sysconfig/pgsql/krb5.keytab | Sets the location of the Kerberos server key file.
  110. lc_collate | uk_UA.UTF-8 | Shows the collation order locale.
  111. lc_ctype | uk_UA.UTF-8 | Shows the character classification and case conversion locale.
  112. lc_messages | uk_UA.UTF-8 | Sets the language in which messages are displayed.
  113. lc_monetary | uk_UA.UTF-8 | Sets the locale for formatting monetary amounts.
  114. lc_numeric | uk_UA.UTF-8 | Sets the locale for formatting numbers.
  115. lc_time | uk_UA.UTF-8 | Sets the locale for formatting date and time values.
  116. listen_addresses | * | Sets the host name or IP address(es) to listen to.
  117. lo_compat_privileges | off | Enables backward compatibility mode for privilege checks on large objects.
  118. local_preload_libraries | | Lists unprivileged shared libraries to preload into each backend.
  119. lock_timeout | 0 | Sets the maximum allowed duration of any wait for a lock.
  120. log_autovacuum_min_duration | -1 | Sets the minimum execution time above which autovacuum actions will be logged.
  121. log_checkpoints | off | Logs each checkpoint.
  122. log_connections | off | Logs each successful connection.
  123. log_destination | stderr | Sets the destination for server log output.
  124. log_directory | pg_log | Sets the destination directory for log files.
  125. log_disconnections | off | Logs end of a session, including duration.
  126. log_duration | off | Logs the duration of each completed SQL statement.
  127. log_error_verbosity | default | Sets the verbosity of logged messages.
  128. log_executor_stats | off | Writes executor performance statistics to the server log.
  129. log_file_mode | 0600 | Sets the file permissions for log files.
  130. log_filename | postgresql-%a.log | Sets the file name pattern for log files.
  131. log_hostname | off | Logs the host name in the connection logs.
  132. log_line_prefix | < %m > | Controls information prefixed to each log line.
  133. log_lock_waits | off | Logs long lock waits.
  134. log_min_duration_statement | -1 | Sets the minimum execution time above which statements will be logged.
  135. log_min_error_statement | error | Causes all statements generating error at or above this level to be logged.
  136. log_min_messages | warning | Sets the message levels that are logged.
  137. log_parser_stats | off | Writes parser performance statistics to the server log.
  138. log_planner_stats | off | Writes planner performance statistics to the server log.
  139. log_replication_commands | off | Logs each replication command.
  140. log_rotation_age | 1d | Automatic log file rotation will occur after N minutes.
  141. log_rotation_size | 0 | Automatic log file rotation will occur after N kilobytes.
  142. log_statement | none | Sets the type of statements logged.
  143. log_statement_stats | off | Writes cumulative performance statistics to the server log.
  144. log_temp_files | -1 | Log the use of temporary files larger than this number of kilobytes.
  145. log_timezone | Europe/Kiev | Sets the time zone to use in log messages.
  146. log_truncate_on_rotation | on | Truncate existing log files of same name during log rotation.
  147. logging_collector | on | Start a subprocess to capture stderr output and/or csvlogs into log files.
  148. maintenance_work_mem | 1GB | Sets the maximum memory to be used for maintenance operations.
  149. max_connections | 100 | Sets the maximum number of concurrent connections.
  150. max_files_per_process | 1000 | Sets the maximum number of simultaneously open files for each server process.
  151. max_function_args | 100 | Shows the maximum number of function arguments.
  152. max_identifier_length | 63 | Shows the maximum identifier length.
  153. max_index_keys | 32 | Shows the maximum number of index keys.
  154. max_locks_per_transaction | 256 | Sets the maximum number of locks per transaction.
  155. max_parallel_workers_per_gather | 0 | Sets the maximum number of parallel processes per executor node.
  156. max_pred_locks_per_transaction | 64 | Sets the maximum number of predicate locks per transaction.
  157. max_prepared_transactions | 0 | Sets the maximum number of simultaneously prepared transactions.
  158. max_replication_slots | 0 | Sets the maximum number of simultaneously defined replication slots.
  159. max_stack_depth | 2MB | Sets the maximum stack depth, in kilobytes.
  160. max_standby_archive_delay | 30s | Sets the maximum delay before canceling queries when a hot standby server is processing archived WAL data.
  161. max_standby_streaming_delay | 30s | Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.
  162. max_wal_senders | 0 | Sets the maximum number of simultaneously running WAL sender processes.
  163. max_wal_size | 2GB | Sets the WAL size that triggers a checkpoint.
  164. max_worker_processes | 8 | Maximum number of concurrent worker processes.
  165. min_parallel_relation_size | 8MB | Sets the minimum size of relations to be considered for parallel scan.
  166. min_wal_size | 1GB | Sets the minimum size to shrink the WAL to.
  167. old_snapshot_threshold | -1 | Time before a snapshot is too old to read pages changed after the snapshot was taken.
  168. online_analyze.capacity_threshold | 100000 | Max local cache table capacity
  169. online_analyze.enable | on | Enable on-line analyze
  170. online_analyze.exclude_tables | | List of tables which will not online analyze
  171. online_analyze.include_tables | | List of tables which will online analyze
  172. online_analyze.local_tracking | off | Per backend tracking
  173. online_analyze.lower_limit | 0 | min number of rows in table to analyze
  174. online_analyze.min_interval | 10000 | minimum time interval between analyze call (in milliseconds)
  175. online_analyze.scale_factor | 0.1 | fraction of table size to start on-line analyze
  176. online_analyze.table_type | temporary | Type(s) of table for online analyze: all(default), persistent, temporary, none
  177. online_analyze.threshold | 50 | min number of row updates before on-line analyze
  178. online_analyze.verbose | off | Verbosity of on-line analyze
  179. operator_precedence_warning | off | Emit a warning for constructs that changed meaning since PostgreSQL 9.4.
  180. parallel_setup_cost | 1000 | Sets the planner's estimate of the cost of starting up worker processes for parallel query.
  181. parallel_tuple_cost | 0.1 | Sets the planner's estimate of the cost of passing each tuple (row) from worker to master backend.
  182. password_encryption | on | Encrypt passwords.
  183. plantuner.disable_index | | List of disabled indexes
  184. plantuner.enable_index | | List of enabled indexes (overload plantuner.disable_index)
  185. plantuner.fix_empty_table | off | Sets to zero estimations for empty tables
  186. plantuner.forbid_index | | List of forbidden indexes (deprecated)
  187. port | 5432 | Sets the TCP port the server listens on.
  188. post_auth_delay | 0 | Waits N seconds on connection startup after authentication.
  189. pre_auth_delay | 0 | Waits N seconds on connection startup before authentication.
  190. quote_all_identifiers | off | When generating SQL fragments, quote all identifiers.
  191. random_page_cost | 1.3 | Sets the planner's estimate of the cost of a nonsequentially fetched disk page.
  192. replacement_sort_tuples | 150000 | Sets the maximum number of tuples to be sorted using replacement selection.
  193. restart_after_crash | on | Reinitialize server after backend crash.
  194. row_security | on | Enable row security.
  195. search_path | "$user", public | Sets the schema search order for names that are not schema-qualified.
  196. segment_size | 1GB | Shows the number of pages per disk file.
  197. seq_page_cost | 1 | Sets the planner's estimate of the cost of a sequentially fetched disk page.
  198. server_encoding | UTF8 | Sets the server (database) character set encoding.
  199. server_version | 9.6.15 | Shows the server version.
  200. server_version_num | 90615 | Shows the server version as an integer.
  201. session_preload_libraries | | Lists shared libraries to preload into each backend.
  202. session_replication_role | origin | Sets the session's behavior for triggers and rewrite rules.
  203. shared_buffers | 6GB | Sets the number of shared memory buffers used by the server.
  204. shared_preload_libraries | online_analyze, plantuner | Lists shared libraries to preload into server.
  205. sql_inheritance | on | Causes subtables to be included by default in various commands.
  206. ssl | off | Enables SSL connections.
  207. ssl_ca_file | | Location of the SSL certificate authority file.
  208. ssl_cert_file | server.crt | Location of the SSL server certificate file.
  209. ssl_ciphers | HIGH:MEDIUM:+3DES:!aNULL | Sets the list of allowed SSL ciphers.
  210. ssl_crl_file | | Location of the SSL certificate revocation list file.
  211. ssl_ecdh_curve | prime256v1 | Sets the curve to use for ECDH.
  212. ssl_key_file | server.key | Location of the SSL server private key file.
  213. ssl_prefer_server_ciphers | on | Give priority to server ciphersuite order.
  214. standard_conforming_strings | off | Causes '...' strings to treat backslashes literally.
  215. statement_timeout | 0 | Sets the maximum allowed duration of any statement.
  216. stats_temp_directory | pg_stat_tmp | Writes temporary statistics files to the specified directory.
  217. superuser_reserved_connections | 3 | Sets the number of connection slots reserved for superusers.
  218. synchronize_seqscans | on | Enable synchronized sequential scans.
  219. synchronous_commit | off | Sets the current transaction's synchronization level.
  220. synchronous_standby_names | | Number of synchronous standbys and list of names of potential synchronous ones.
  221. syslog_facility | local0 | Sets the syslog "facility" to be used when syslog enabled.
  222. syslog_ident | postgres | Sets the program name used to identify PostgreSQL messages in syslog.
  223. syslog_sequence_numbers | on | Add sequence number to syslog messages to avoid duplicate suppression.
  224. syslog_split_messages | on | Split messages sent to syslog by lines and to fit into 1024 bytes.
  225. tcp_keepalives_count | 0 | Maximum number of TCP keepalive retransmits.
  226. tcp_keepalives_idle | 0 | Time between issuing TCP keepalives.
  227. tcp_keepalives_interval | 0 | Time between TCP keepalive retransmits.
  228. temp_buffers | 256MB | Sets the maximum number of temporary buffers used by each session.
  229. temp_file_limit | -1 | Limits the total size of all temporary files used by each process.
  230. temp_tablespaces | | Sets the tablespace(s) to use for temporary tables and sort files.
  231. TimeZone | Europe/Kiev | Sets the time zone for displaying and interpreting time stamps.
  232. timezone_abbreviations | Default | Selects a file of time zone abbreviations.
  233. trace_notify | off | Generates debugging output for LISTEN and NOTIFY.
  234. trace_recovery_messages | log | Enables logging of recovery-related debugging information.
  235. trace_sort | off | Emit information about resource usage in sorting.
  236. track_activities | on | Collects information about executing commands.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement