postgres 常用参数汇总

postgres数据库有很多参数是可配置和优化的,整理如下:

allow_system_table_mods,off,允许修改系统表的结构
application_name,pgAdmin 4 - CONN:5982631,设置要在统计信息和日志中报告的应用程序名称。
archive_command,./archivelog %p,设置将被调用以存档WAL文件的shell命令
archive_mode,on,允许使用“存档”命令存档WAL文件
archive_timeout,10min,如果N秒内没有启动新文件,则强制切换到下一个WAL文件。
array_nulls,on,启用数组中空元素的输入
authentication_timeout,1min,设置完成客户端身份验证所允许的最长时间
autovacuum,on,启动自动真空子流程
autovacuum_analyze_scale_factor,0.1,在分析之前插入、更新或删除元组的次数,作为重新元组的一部分
autovacuum_analyze_threshold,50,分析前插入、更新或删除元组的最小数目
autovacuum_freeze_max_age,200000000,Age at which to autovacuum a table to prevent transaction ID wraparound.
autovacuum_max_workers,3,Sets the maximum number of simultaneously running autovacuum worker processes.
autovacuum_multixact_freeze_max_age,400000000,Multixact age at which to autovacuum a table to prevent multixact wraparound.
autovacuum_naptime,1min,Time to sleep between autovacuum runs.
autovacuum_vacuum_cost_delay,20ms,Vacuum cost delay in milliseconds, for autovacuum.
autovacuum_vacuum_cost_limit,-1,Vacuum cost amount available before napping, for autovacuum.
autovacuum_vacuum_scale_factor,0.2,Number of tuple updates or deletes prior to vacuum as a fraction of reltuples.
autovacuum_vacuum_threshold,50,Minimum number of tuple updates or deletes prior to vacuum.
autovacuum_work_mem,-1,Sets the maximum memory to be used by each autovacuum worker process.
backend_flush_after,0,以前执行的写入操作刷新到磁盘的页数
backslash_quote,safe_encoding,设置字符串文本中是否允许使用--。
bgwriter_delay,200ms,两次后台写入之间的睡眠时间
bgwriter_flush_after,512kB,Number of pages after which previously performed writes are flushed to disk.
bgwriter_lru_maxpages,100,Background writer maximum number of LRU pages to flush per round.
bgwriter_lru_multiplier,2,Multiple of the average buffer usage to free per round.
block_size,8192,Shows the size of a disk block.
bonjour,off,Enables advertising the server via Bonjour.
bonjour_name Sets the Bonjour service name.
bytea_output,hex,Sets the output format for bytea.
check_function_bodies,on,Check function bodies during CREATE FUNCTION.
checkpoint_completion_target,0.5,Time spent flushing dirty buffers during checkpoint, as fraction of checkpoint interval.
checkpoint_flush_after,256kB,Number of pages after which previously performed writes are flushed to disk.
checkpoint_timeout,5min,Sets the maximum time between automatic WAL checkpoints.
checkpoint_warning,30s,Enables warnings if checkpoint segments are filled more frequently than this.
client_encoding,UNICODE,Sets the client's character set encoding.
client_min_messages,notice,Sets the message levels that are sent to the client.
cluster_name Sets the name of the cluster, which is included in the process title.
commit_delay,0,Sets the delay in microseconds between transaction commit and flushing WAL to disk.
commit_siblings,5,Sets the minimum concurrent open transactions before performing commit_delay.
constraint_exclusion,partition,Enables the planner to use constraints to optimize queries.
cpu_index_tuple_cost,0.005,Sets the planner's estimate of the cost of processing each index entry during an index scan.
cpu_operator_cost,0.0025,Sets the planner's estimate of the cost of processing each operator or function call.
cpu_tuple_cost,0.01,Sets the planner's estimate of the cost of processing each tuple (row).
cursor_tuple_fraction,0.1,Sets the planner's estimate of the fraction of a cursor's rows that will be retrieved.
data_checksums,off,Shows whether data checksums are turned on for this cluster.
DateStyle,ISO, MDY,Sets the display format for date and time values.
db_user_namespace,off,Enables per-database user names.
deadlock_timeout,1s,Sets the time to wait on a lock before checking for deadlock.
debug_assertions,off,Shows whether the running server has assertion checks enabled.
debug_pretty_print,on,Indents parse and plan tree displays.
debug_print_parse,off,Logs each query's parse tree.
debug_print_plan,off,Logs each query's execution plan.
debug_print_rewritten,off,Logs each query's rewritten parse tree.
default_statistics_target,100,Sets the default statistics target.
default_tablespace Sets the default tablespace to create tables and indexes in.
default_text_search_config,pg_catalog.english,Sets default text search configuration.
default_transaction_deferrable,off,Sets the default deferrable status of new transactions.
default_transaction_isolation,read committed,Sets the transaction isolation level of each new transaction.
default_transaction_read_only,off,Sets the default read-only status of new transactions.
default_with_oids,off,Create new tables with OIDs by default.
dynamic_shared_memory_type,posix,Selects the dynamic shared memory implementation used.
effective_cache_size,4GB,Sets the planner's assumption about the size of the disk cache.
effective_io_concurrency,1,Number of simultaneous requests that can be handled efficiently by the disk subsystem.
enable_bitmapscan,on,Enables the planner's use of bitmap-scan plans.
enable_gathermerge,on,Enables the planner's use of gather merge plans.
enable_hashagg,on,Enables the planner's use of hashed aggregation plans.
enable_hashjoin,on,Enables the planner's use of hash join plans.
enable_indexonlyscan,on,Enables the planner's use of index-only-scan plans.
enable_indexscan,on,Enables the planner's use of index-scan plans.
enable_material,on,Enables the planner's use of materialization.
enable_mergejoin,on,Enables the planner's use of merge join plans.
enable_nestloop,on,Enables the planner's use of nested-loop join plans.
enable_seqscan,on,Enables the planner's use of sequential-scan plans.
enable_sort,on,Enables the planner's use of explicit sort steps.
enable_tidscan,on,Enables the planner's use of TID scan plans.
escape_string_warning,on,Warn about backslash escapes in ordinary string literals.
event_source,PostgreSQL,Sets the application name used to identify PostgreSQL messages in the event log.
exit_on_error,off,Terminate session on any error.
extra_float_digits,0,Sets the number of digits displayed for floating-point values.
force_parallel_mode,off,Forces use of parallel query facilities.
from_collapse_limit,8,Sets the FROM-list size beyond which subqueries are not collapsed.
fsync,on,Forces synchronization of updates to disk.
full_page_writes,on,Writes full pages to WAL when first modified after a checkpoint.
geqo,on,Enables genetic query optimization.
geqo_effort,5,GEQO: effort is used to set the default for other GEQO parameters.
geqo_generations,0,GEQO: number of iterations of the algorithm.
geqo_pool_size,0,GEQO: number of individuals in the population.
geqo_seed,0,GEQO: seed for random path selection.
geqo_selection_bias,2,GEQO: selective pressure within the population.
geqo_threshold,12,Sets the threshold of FROM items beyond which GEQO is used.
gin_fuzzy_search_limit,0,Sets the maximum allowed result for exact search by GIN.
gin_pending_list_limit,4MB,Sets the maximum size of the pending list for GIN index.
hot_standby,on,Allows connections and queries during recovery.
hot_standby_feedback,off,Allows feedback from a hot standby to the primary that will avoid query conflicts.
huge_pages,try,Use of huge pages on Linux.
idle_in_transaction_session_timeout,0,Sets the maximum allowed duration of any idling transaction.
ignore_checksum_failure,off,Continues processing after a checksum failure.
ignore_system_indexes,off,Disables reading from system indexes.
integer_datetimes,on,Datetimes are integer based.
IntervalStyle,postgres,Sets the display format for interval values.
join_collapse_limit,8,Sets the FROM-list size beyond which JOIN constructs are not flattened.
krb_caseins_users,off,Sets whether Kerberos and GSSAPI user names should be treated as case-insensitive.
lc_collate,zh_CN.utf-8,Shows the collation order locale.
lc_ctype,zh_CN.utf-8,Shows the character classification and case conversion locale.
lc_messages,en_US,Sets the language in which messages are displayed.
lc_monetary,en_US,Sets the locale for formatting monetary amounts.
lc_numeric,en_US,Sets the locale for formatting numbers.
lc_time,en_US,Sets the locale for formatting date and time values.
listen_addresses,*,Sets the host name or IP address(es) to listen to.
lo_compat_privileges,off,Enables backward compatibility mode for privilege checks on large objects.
local_preload_libraries Lists unprivileged shared libraries to preload into each backend.
lock_timeout,0,Sets the maximum allowed duration of any wait for a lock.
log_autovacuum_min_duration,-1,Sets the minimum execution time above which autovacuum actions will be logged.
log_checkpoints,off,Logs each checkpoint.
log_connections,off,Logs each successful connection.
log_destination,csvlog,Sets the destination for server log output.
log_disconnections,off,Logs end of a session, including duration.
log_duration,off,Logs the duration of each completed SQL statement.
log_error_verbosity,default,Sets the verbosity of logged messages.
log_executor_stats,off,Writes executor performance statistics to the server log.
log_file_mode,0600,Sets the file permissions for log files.
log_hostname,off,Logs the host name in the connection logs.
log_line_prefix,%m [%p],Controls information prefixed to each log line.
log_lock_waits,off,Logs long lock waits.
log_min_duration_statement,1s,Sets the minimum execution time above which statements will be logged.
log_min_error_statement,error,Causes all statements generating error at or above this level to be logged.
log_min_messages,notice,Sets the message levels that are logged.
log_parser_stats,off,Writes parser performance statistics to the server log.
log_planner_stats,off,Writes planner performance statistics to the server log.
log_replication_commands,off,Logs each replication command.
log_rotation_age,1d,Automatic log file rotation will occur after N minutes.
log_rotation_size,10MB,Automatic log file rotation will occur after N kilobytes.
log_statement,none,Sets the type of statements logged.
log_statement_stats,off,Writes cumulative performance statistics to the server log.
log_temp_files,-1,Log the use of temporary files larger than this number of kilobytes.
log_timezone,PRC,Sets the time zone to use in log messages.
log_truncate_on_rotation,off,Truncate existing log files of same name during log rotation.
logging_collector,on,Start a subprocess to capture stderr output and/or csvlogs into log files.
maintenance_work_mem,64MB,Sets the maximum memory to be used for maintenance operations.
max_connections,1000,Sets the maximum number of concurrent connections.
max_files_per_process,1000,Sets the maximum number of simultaneously open files for each server process.
max_function_args,100,Shows the maximum number of function arguments.
max_identifier_length,63,Shows the maximum identifier length.
max_index_keys,32,Shows the maximum number of index keys.
max_locks_per_transaction,64,Sets the maximum number of locks per transaction.
max_logical_replication_workers,4,Maximum number of logical replication worker processes.
max_parallel_workers,8,Sets the maximum number of parallel workers that can be active at one time.
max_parallel_workers_per_gather,2,Sets the maximum number of parallel processes per executor node.
max_pred_locks_per_page,2,Sets the maximum number of predicate-locked tuples per page.
max_pred_locks_per_relation,-2,Sets the maximum number of predicate-locked pages and tuples per relation.
max_pred_locks_per_transaction,64,Sets the maximum number of predicate locks per transaction.
max_prepared_transactions,0,Sets the maximum number of simultaneously prepared transactions.
max_replication_slots,10,Sets the maximum number of simultaneously defined replication slots.
max_stack_depth,2MB,Sets the maximum stack depth, in kilobytes.
max_standby_archive_delay,30s,Sets the maximum delay before canceling queries when a hot standby server is processing archived WAL data.
max_standby_streaming_delay,30s,Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.
max_sync_workers_per_subscription,2,Maximum number of table synchronization workers per subscription.
max_wal_senders,4,Sets the maximum number of simultaneously running WAL sender processes.
max_wal_size,768MB,Sets the WAL size that triggers a checkpoint.
max_worker_processes,8,Maximum number of concurrent worker processes.
min_parallel_index_scan_size,512kB,Sets the minimum amount of index data for a parallel scan.
min_parallel_table_scan_size,8MB,Sets the minimum amount of table data for a parallel scan.
min_wal_size,80MB,Sets the minimum size to shrink the WAL to.
old_snapshot_threshold,-1,Time before a snapshot is too old to read pages changed after the snapshot was taken.
operator_precedence_warning,off,Emit a warning for constructs that changed meaning since PostgreSQL 9.4.
parallel_setup_cost,1000,Sets the planner's estimate of the cost of starting up worker processes for parallel query.
parallel_tuple_cost,0.1,Sets the planner's estimate of the cost of passing each tuple (row) from worker to master backend.
password_encryption,md5,Encrypt passwords.
pg_stat_statements.max,1000,Sets the maximum number of statements tracked by pg_stat_statements.
pg_stat_statements.save,on,Save pg_stat_statements statistics across server shutdowns.
pg_stat_statements.track,all,Selects which statements are tracked by pg_stat_statements.
pg_stat_statements.track_utility,on,Selects whether utility commands are tracked by pg_stat_statements.
port,5100,Sets the TCP port the server listens on.
post_auth_delay,0,Waits N seconds on connection startup after authentication.
pre_auth_delay,0,Waits N seconds on connection startup before authentication.
quote_all_identifiers,off,When generating SQL fragments, quote all identifiers.
random_page_cost,4,Sets the planner's estimate of the cost of a nonsequentially fetched disk page.
replacement_sort_tuples,150000,Sets the maximum number of tuples to be sorted using replacement selection.
restart_after_crash,on,Reinitialize server after backend crash.
row_security,on,Enable row security.
search_path,```$user, public`,`Sets the schema search order for names that are not schema-qualified.` `segment_size`,`1GB`,`Shows the number of pages per disk file.` `seq_page_cost`,`1`,`Sets the planner's estimate of the cost of a sequentially fetched disk page.` `server_encoding`,`UTF8`,`Sets the server (database) character set encoding.` `server_version`,`10.4`,`Shows the server version.` `server_version_num`,`100004`,`Shows the server version as an integer.` `session_replication_role`,`origin`,`Sets the session's behavior for triggers and rewrite rules.` `shared_buffers`,`91750MB`,`Sets the number of shared memory buffers used by the server.` `ssl`,`off`,`Enables SSL connections.` `ssl_ca_file` `Location of the SSL certificate authority file.` `ssl_cert_file`,`server.crt`,`Location of the SSL server certificate file.` `ssl_crl_file` `Location of the SSL certificate revocation list file.` `ssl_key_file`,`server.key`,`Location of the SSL server private key file.` `ssl_prefer_server_ciphers`,`on`,`Give priority to server ciphersuite order.` `standard_conforming_strings`,`on`,`Causes '...' strings to treat backslashes literally.` `statement_timeout`,`0`,`Sets the maximum allowed duration of any statement.` `superuser_reserved_connections`,`3`,`Sets the number of connection slots reserved for superusers.` `synchronize_seqscans`,`on`,`Enable synchronized sequential scans.` `synchronous_commit`,`on`,`Sets the current transaction's synchronization level.` `synchronous_standby_names` `Number of synchronous standbys and list of names of potential synchronous ones.` `syslog_facility`,`local0`,`Sets the syslogfacilityto be used when syslog enabled.` `syslog_ident`,`postgres`,`Sets the program name used to identify PostgreSQL messages in syslog.` `syslog_sequence_numbers`,`on`,`Add sequence number to syslog messages to avoid duplicate suppression.` `syslog_split_messages`,`on`,`Split messages sent to syslog by lines and to fit into 1024 bytes.` `tcp_keepalives_count`,`9`,`Maximum number of TCP keepalive retransmits.` `tcp_keepalives_idle`,`7200`,`Time between issuing TCP keepalives.` `tcp_keepalives_interval`,`75`,`Time between TCP keepalive retransmits.` `temp_buffers`,`8MB`,`Sets the maximum number of temporary buffers used by each session.` `temp_file_limit`,`-1`,`Limits the total size of all temporary files used by each process.` `temp_tablespaces` `Sets the tablespace(s) to use for temporary tables and sort files.` `TimeZone`,`PRC`,`Sets the time zone for displaying and interpreting time stamps.` `timezone_abbreviations`,`Default`,`Selects a file of time zone abbreviations.` `trace_notify`,`off`,`Generates debugging output for LISTEN and NOTIFY.` `trace_recovery_messages`,`log`,`Enables logging of recovery-related debugging information.` `trace_sort`,`off`,`Emit information about resource usage in sorting.` `track_activities`,`on`,`Collects information about executing commands.` `track_activity_query_size`,`1024`,`Sets the size reserved for pg_stat_activity.query, in bytes.` `track_commit_timestamp`,`off`,`Collects transaction commit time.` `track_counts`,`on`,`Collects statistics on database activity.` `track_functions`,`none`,`Collects function-level statistics on database activity.` `track_io_timing`,`off`,`Collects timing statistics for database I/O activity.` `transaction_deferrable`,`off`,`Whether to defer a read-only serializable transaction until it can be executed with no possible serialization failures.` `transaction_isolation`,`read committed`,`Sets the current transaction's isolation level.` `transaction_read_only`,`off`,`Sets the current transaction's read-only status.` `transform_null_equals`,`off`,`Treatsexpr=NULLasexpr IS NULL``.unix_socket_groupSets the owning group of the Unix-domain socket.unix_socket_permissions,0777,Sets the access permissions of the Unix-domain socket.update_process_title,on,Updates the process title to show the active SQL command.vacuum_cost_delay,0,Vacuum cost delay in milliseconds.vacuum_cost_limit,200,Vacuum cost amount available before napping.vacuum_cost_page_dirty,20,Vacuum cost for a page dirtied by vacuum.vacuum_cost_page_hit,1,Vacuum cost for a page found in the buffer cache.vacuum_cost_page_miss,10,Vacuum cost for a page not found in the buffer cache.vacuum_defer_cleanup_age,0,Number of transactions by which VACUUM and HOT cleanup should be deferred, if any.vacuum_freeze_min_age,50000000,Minimum age at which VACUUM should freeze a table row.vacuum_freeze_table_age,150000000,Age at which VACUUM should scan whole table to freeze tuples.vacuum_multixact_freeze_min_age,5000000,Minimum age at which VACUUM should freeze a MultiXactId in a table row.vacuum_multixact_freeze_table_age,150000000,Multixact age at which VACUUM should scan whole table to freeze tuples.wal_block_size,8192,Shows the block size in the write ahead log.wal_buffers,16MB,Sets the number of disk-page buffers in shared memory for WAL.wal_compression,off,Compresses full-page writes written in WAL file.wal_consistency_checkingSets the WAL resource managers for which WAL consistency checks are done.wal_keep_segments,100,Sets the number of WAL files held for standby servers.wal_level,replica,Set the level of information written to the WAL.wal_log_hints,off,Writes full pages to WAL when first modified after a checkpoint, even for a non-critical modifications.wal_receiver_status_interval,10s,Sets the maximum interval between WAL receiver status reports to the primary.wal_receiver_timeout,1min,Sets the maximum wait time to receive data from the primary.wal_retrieve_retry_interval,5s,Sets the time to wait before retrying to retrieve WAL after a failed attempt.wal_segment_size,16MB,Shows the number of pages per write ahead log segment.wal_sender_timeout,1min,Sets the maximum time to wait for WAL replication.wal_sync_method,fdatasync,Selects the method used for forcing WAL updates to disk.wal_writer_delay,200ms,Time between WAL flushes performed in the WAL writer.wal_writer_flush_after,1MB,Amount of WAL written out by WAL writer that triggers a flush.work_mem,4MB,Sets the maximum memory to be used for query workspaces.xmlbinary,base64,Sets how binary values are to be encoded in XML.xmloption,content,Sets whether XML data in implicit parsing and serialization operations is to be considered as documents or content fragments.zero_damaged_pages,off,Continues processing past damaged page headers.`

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,968评论 6 482
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,601评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 153,220评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,416评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,425评论 5 374
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,144评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,432评论 3 401
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,088评论 0 261
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,586评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,028评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,137评论 1 334
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,783评论 4 324
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,343评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,333评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,559评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,595评论 2 355
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,901评论 2 345

推荐阅读更多精彩内容

  • 9.5的常用的一些设置,自己mark一下防止丢失;参数用途的说明,不做说明,仅为自己记录 max_connecti...
    nagioswork阅读 6,125评论 0 2
  • PG的几个主要进程,以及PG的核心架构。进程和体系结构详见下图: 从上面的体系结构图可以看出来,PG使用经典的C/...
    飞稀饭你的微笑阅读 3,602评论 2 1
  • 选项说明 选项默认值说明changelog.changelog-barrier-timeout120After ‘...
    perryn阅读 1,346评论 0 0
  • 我是黑夜里大雨纷飞的人啊 1 “又到一年六月,有人笑有人哭,有人欢乐有人忧愁,有人惊喜有人失落,有的觉得收获满满有...
    陌忘宇阅读 8,523评论 28 53
  • 信任包括信任自己和信任他人 很多时候,很多事情,失败、遗憾、错过,源于不自信,不信任他人 觉得自己做不成,别人做不...
    吴氵晃阅读 6,181评论 4 8