PostgreSQL 正體中文使用手冊
PostgreSQL.TW官方使用手冊小島故事加入社團
14
14
  • 簡介
  • 前言
    • 1. 什麼是 PostgreSQL?
    • 2. PostgreSQL 沿革
    • 3. 慣例
    • 4. 其他參考資訊
    • 5. 問題回報指南
  • I. 新手教學
    • 1. 入門指南
      • 1.1. 安裝
      • 1.2. 基礎架構
      • 1.3. 建立一個資料庫
      • 1.4. 存取一個資料庫
    • 2. SQL 查詢語言
      • 2.1. 簡介
      • 2.2. 概念
      • 2.3. 創建一個新的資料表
      • 2.4. 資料列是資料表的組成單位
      • 2.5. 資料表的查詢
      • 2.6. 交叉查詢
      • 2.7. 彙總查詢
      • 2.8. 更新資料
      • 2.9. 刪除資料
    • 3. 先進功能
      • 3.1. 簡介
      • 3.2. 檢視表(View)
      • 3.3. 外部索引鍵
      • 3.4. 交易安全
      • 3.5. 窗函數
      • 3.6. 繼承
      • 3.7. 結論
  • II. SQL 查詢語言
    • 4. SQL 語法
      • 4.1. 語法結構
      • 4.2. 參數表示式
      • 4.3. 函數呼叫
    • 5. 定義資料結構
      • 5.1. 認識資料表
      • 5.2. 預設值
      • 5.3. Generated Columns
      • 5.4. 限制條件
      • 5.5. 系統欄位
      • 5.6. 表格變更
      • 5.7. 權限
      • 5.8. 資料列安全原則
      • 5.9. Schemas
      • 5.10. 繼承
      • 5.11. 分割資料表
      • 5.12. 外部資料
      • 5.13. 其他資料庫物件
      • 5.14. 相依性追蹤
    • 6. 資料處理
      • 6.1. 新增資料
      • 6.2. 更新資料
      • 6.3. 刪除資料
      • 6.4. 修改並回傳資料
    • 7. 資料查詢
      • 7.1. 概觀
      • 7.2. 資料表表示式
      • 7.3. 取得資料列表
      • 7.4. 合併查詢結果
      • 7.5. 資料排序
      • 7.6. LIMIT 和 OFFSET
      • 7.7. VALUES 列舉資料
      • 7.8. WITH Querys(Common Table Expressions)
    • 8. 資料型別
      • 8.1. 數字型別
      • 8.2. 貨幣型別
      • 8.3. 字串型別
      • 8.4. 位元組型別(bytea)
      • 8.5. 日期時間型別
      • 8.6. 布林型別
      • 8.7. 列舉型別
      • 8.8. 地理資訊型別
      • 8.9. 網路資訊型別
      • 8.10. 位元字串型別
      • 8.11. 全文檢索型別
      • 8.12. UUID 型別
      • 8.13. XML 型別
      • 8.14. JSON 型別
      • 8.15. 陣列
      • 8.16. 複合型別
      • 8.17. 範圍型別
      • 8.18. Domain Types
      • 8.19. 物件指標型別
      • 8.20. pg_lsn 型別
      • 8.21. 概念型別
    • 9. 函式及運算子
      • 9.1. 邏輯運算子
      • 9.2. 比較函式及運算子
      • 9.3. 數學函式及運算子
      • 9.4. 字串函式及運算子
      • 9.5. 位元字串函式及運算子
      • 9.6. 二元字串函式及運算子
      • 9.7. 特徵比對
      • 9.8. 型別轉換函式
      • 9.9 日期時間函式及運算子
      • 9.10. 列舉型別函式
      • 9.11. 地理資訊函式及運算子
      • 9.12. 網路位址函式及運算子
      • 9.13. 文字檢索函式及運算子
      • 9.14. UUID Functions
      • 9.15. XML 函式
      • 9.16. JSON 函式及運算子
      • 9.17. 序列函式
      • 9.18. 條件表示式
      • 9.19. 陣列函式及運算子
      • 9.20. 範圍函式及運算子
      • 9.21. 彙總函數
      • 9.22. Window 函式
      • 9.23. 子查詢
      • 9.24. 資料列與陣列的比較運算
      • 9.25. 集合回傳函式
      • 9.26. 系統資訊函數
      • 9.27. 系統管理函式
      • 9.28. 觸發函式
      • 9.29. 事件觸發函式
      • 9.30. Statistics Information Functions
    • 10. 型別轉換
      • 10.1. 概觀
      • 10.2. 運算子
      • 10.3. 函式
      • 10.4. 資料儲存轉換規則
      • 10.5. UNION、CASE 等相關結構
      • 10.6. SELECT 輸出規則
    • 11. 索引(Index)
      • 11.1. 簡介
      • 11.2. 索引型別
      • 11.3. 多欄位索引
      • 11.4. 索引與 ORDER BY
      • 11.5. 善用多個索引
      • 11.6. 唯一值索引
      • 11.7. 表示式索引
      • 11.8. 部份索引(partial index)
      • 11.9. Index-Only Scans and Covering Indexes
      • 11.10. 運算子物件及家族
      • 11.11. 索引與排序規則
      • 11.12. 檢查索引運用
    • 12. 全文檢索
      • 12.1. 簡介
      • 12.2. 查詢與索引
      • 12.3. 細部控制
      • 12.4. 延伸功能
      • 12.5. 斷詞
      • 12.6. 字典
      • 12.7. 組態範例
      • 12.8. 測試與除錯
      • 12.9. GIN 及 GiST 索引型別
      • 12.10. psql支援
      • 12.11. 功能限制
    • 13. 一致性管理(MVCC)
      • 13.1. 簡介
      • 13.2. 交易隔離
      • 13.3. 鎖定模式
      • 13.4. 在應用端檢視資料一致性
      • 13.5. 特別注意
      • 13.6. 鎖定與索引
    • 14. 效能技巧
      • 14.1. 善用 EXPLAIN
      • 14.2. 統計資訊
      • 14.3. 使用確切的 JOIN 方式
      • 14.4. 快速建立資料庫內容
      • 14.5. 風險性彈性設定
    • 15. 平行查詢
      • 15.1. 如何運作?
      • 15.2. 啓用時機?
      • 15.3. 平行查詢計畫
      • 15.4. 平行查詢的安全性
  • III. 系統管理
    • 16. Installation from Binaries
    • 17. 用原始碼安裝
      • 16.1. Short Version
      • 16.2. Requirements
      • 16.3. Getting The Source
      • 16.4. 安裝流程
      • 16.5. Post-Installation Setup
      • 16.6. Supported Platforms
      • 16.7. 平台相關的注意事項
    • 18. 用原始碼在 Windows 上安裝
      • 17.1. Building with Visual C++ or the Microsoft Windows SDK
    • 19. 服務配置與維運
      • 18.1. PostgreSQL 使用者帳號
      • 18.2. Creating a Database Cluster
      • 18.3. Starting the Database Server
      • 18.4. 核心資源管理
      • 18.5. Shutting Down the Server
      • 18.6. Upgrading a PostgreSQL Cluster
      • 18.7. Preventing Server Spoofing
      • 18.8. Encryption Options
      • 18.9. Secure TCP/IP Connections with SSL
      • 18.10. Secure TCP/IP Connections with GSSAPI Encryption
      • 18.11. Secure TCP/IP Connections with SSH Tunnels
      • 18.12. 在 Windows 註冊事件日誌
    • 20. 服務組態設定
      • 19.1. Setting Parameters
      • 19.2. File Locations
      • 19.3. 連線與認證
      • 19.4. 資源配置
      • 19.5. Write Ahead Log
      • 19.6. 複寫(Replication)
      • 19.7. 查詢規畫
      • 19.8. 錯誤回報與日誌記錄
      • 19.9. 執行階段統計資訊
      • 19.10. 自動資料庫清理
      • 20.11. 用戶端連線預設參數
      • 19.12. 交易鎖定管理
      • 19.13. 版本與平台的相容性
      • 19.14. Error Handling
      • 19.15. 預先配置的參數
      • 19.16. Customized Options
      • 19.17. Developer Options
      • 19.18. Short Options
    • 21. 使用者認證
      • 20.1. 設定檔:pg_hba.conf
      • 20.2. User Name Maps
      • 20.3. Authentication Methods
      • 20.4. Trust Authentication
      • 20.5. Password Authentication
      • 20.6. GSSAPI Authentication
      • 20.7. SSPI Authentication
      • 20.8. Ident Authentication
      • 20.9. Peer Authentication
      • 20.10. LDAP Authentication
      • 20.11. RADIUS Authentication
      • 20.12. Certificate Authentication
      • 20.13. PAM Authentication
    • 22. 資料庫角色
      • 22.1. Database Roles
      • 22.2. Role Attributes
      • 22.3. Role Membership
      • 22.4. 移除角色
      • 22.5. Default Roles
      • 22.6. Function Security
    • 23. Managing Databases
      • 22.1. Overview
      • 22.2. Creating a Database
      • 22.3. 樣版資料庫
      • 22.4. Database Configuration
      • 22.5. Destroying a Database
      • 22.6. Tablespaces
    • 24. 語系
      • 23.1. 語系支援
      • 23.2. Collation Support
      • 23.3. 字元集支援
    • 25. 例行性資料庫維護工作
      • 25.1. 例行性資料清理
      • 25.2. 定期重建索引
      • 25.3. Log 檔案維護
    • 26. 備份及還原
      • 25.1. SQL Dump
      • 25.2. 檔案系統層級備份
      • 25.3. Continuous Archiving and Point-in-Time Recovery (PITR)
    • 27. High Availability, Load Balancing, and Replication
      • 26.1. 比較不同的解決方案
      • 26.2. 日誌轉送備用伺服器 Log-Shipping Standby Servers
      • 26.3. Failover
      • 26.4. Alternative Method for Log Shipping
      • 26.5. Hot Standby
    • 28. 監控資料庫活動
      • 27.1. Standard Unix Tools
      • 27.2. 統計資訊收集器
      • 27.3. Viewing Locks
      • 27.4. Progress Reporting
      • 27.5. Dynamic Tracing
    • 29. 監控磁碟使用情況
      • 28.1. 瞭解磁碟使用情形
      • 28.2. 磁碟空間不足錯誤
    • 30. 高可靠度及預寫日誌
      • 29.1. 可靠度
      • 29.2. Write-Ahead Logging(WAL)
      • 29.3. Asynchronous Commit
      • 29.4. WAL Configuration
      • 29.5. WAL Internals
    • 31. 邏輯複寫(Logical Replication)
      • 30.1. 發佈(Publication)
      • 30.2. 訂閱(Subscription)
      • 30.3. 衝突處理
      • 30.4. 限制
      • 30.5. 架構
      • 30.6. 監控
      • 30.7. 安全性
      • 30.8. 系統設定
      • 30.9. 快速設定
    • 32. Just-in-Time Compilation(JIT)
      • 31.1. What is JIT compilation?
      • 31.2. When to JIT?
      • 31.3. Configuration
      • 31.4. Extensibility
    • 33. 迴歸測試
      • 32.1. Running the Tests
      • 32.2. Test Evaluation
      • 32.3. Variant Comparison Files
      • 32.4. TAP Tests
      • 32.5. Test Coverage Examination
  • IV. 用戶端介面
    • 33. libpq - C Library
      • 33.1. 資料庫連線控制函數
      • 33.2. 連線狀態函數
      • 33.3. Command Execution Functions
      • 33.4. Asynchronous Command Processing
      • 33.5. Retrieving Query Results Row-By-Row
      • 33.6. Canceling Queries in Progress
      • 33.7. The Fast-Path Interface
      • 33.8. Asynchronous Notification
      • 33.9. Functions Associated with the COPY Command
      • 33.10. Control Functions
      • 33.11. Miscellaneous Functions
      • 33.12. Notice Processing
      • 33.13. Event System
      • 33.14. 環境變數
      • 33.15. 密碼檔
      • 33.16. The Connection Service File
      • 33.17. LDAP Lookup of Connection Parameters
      • 33.18. SSL Support
      • 33.19. Behavior in Threaded Programs
      • 33.20. Building libpq Programs
      • 33.21. Example Programs
    • 34. Large Objects
      • 35.1. Introduction
      • 35.2. Implementation Features
      • 35.3. Client Interfaces
      • 35.4. Server-side Functions
      • 35.5. Example Program
    • 35. ECPG - Embedded SQL in C
      • 35.1. The Concept
      • 35.2. Managing Database Connections
      • 35.3. Running SQL Commands
      • 35.4. Using Host Variables
      • 35.5. Dynamic SQL
      • 35.6. pgtypes Library
      • 35.7. Using Descriptor Areas
      • 35.8. Error Handling
      • 35.9. Preprocessor Directives
      • 35.10. Processing Embedded SQL Programs
      • 35.11. Library Functions
      • 35.12. Large Objects
      • 35.13. C++ Applications
      • 35.14. Embedded SQL Commands
      • 35.15. Informix Compatibility Mode
      • 35.16. Internals
    • 36. The Information Schema
      • 36.1. The Schema
      • 36.2. Data Types
      • 36.3. information_schema_catalog_name
      • 36.4. administrable_role_authorizations
      • 36.5. applicable_roles
      • 36.6. attributes
      • 36.7. character_sets
      • 36.8. check_constraint_routine_usage
      • 36.9. check_constraints
      • 36.10. collations
      • 36.11. collation_character_set_applicability
      • 36.12. column_domain_usage
      • 36.13. column_options
      • 36.14. column_privileges
      • 36.16. column_udt_usage
      • 36.17. columns
      • 36.18. constraint_column_usage
      • 37.18. constraint_table_usage
      • 37.19. data_type_privileges
      • 37.20. domain_constraints
      • 37.21. domain_udt_usage
      • 37.22. domains
      • 37.23. element_types
      • 37.24. enabled_roles
      • 37.25. foreign_data_wrapper_options
      • 37.26. foreign_data_wrappers
      • 37.27. foreign_server_options
      • 37.28. foreign_servers
      • 37.29. foreign_table_options
      • 37.30. foreign_tables
      • 36.32. key_column_usage
      • 36.33. parameters
      • 36.34. referential_constraints
      • 37.34. role_column_grants
      • 37.35. role_routine_grants
      • 36.37. role_table_grants
      • 37.37. role_udt_grants
      • 37.38. role_usage_grants
      • 37.39. routine_privileges
      • 37.40. routines
      • 36.42. schemata
      • 37.42. sequences
      • 37.43. sql_features
      • 37.44. sql_implementation_info
      • 37.45. sql_languages
      • 37.46. sql_packages
      • 37.47. sql_parts
      • 37.48. sql_sizing
      • 37.49. sql_sizing_profiles
      • 36.51. table_constraints
      • 36.49. table_privileges
      • 37.52. tables
      • 37.53. transforms
      • 37.54. triggered_update_columns
      • 37.55. triggers
      • 37.56. udt_privileges
      • 37.57. usage_privileges
      • 37.58. user_defined_types
      • 37.59. user_mapping_options
      • 37.60. user_mappings
      • 37.61. view_column_usage
      • 37.62. view_routine_usage
      • 37.63. view_table_usage
      • 37.64. views
  • V. 資料庫程式設計
    • 38. SQL 延伸功能
      • 38.1. How Extensibility Works
      • 37.2. The PostgreSQL Type System
      • 37.3. 使用者自訂函數
      • 37.4. User-defined Procedures
      • 37.5. Query Language (SQL) Functions
      • 37.6. Function Overloading
      • 37.7. 函數易變性類別
      • 37.8. Procedural Language Functions
      • 37.9. Internal Functions
      • 37.10. C-Language Functions
      • 37.11. Function Optimization Information
      • 37.12. User-defined Aggregates
      • 37.13. User-defined Types
      • 37.14. User-defined Operators
      • 37.15. Operator Optimization Information
      • 38.16. Interfacing Extensions To Indexes
      • 37.17. 封裝相關物件到延伸功能中
      • 37.18. Extension Building Infrastructure
    • 38. Triggers
      • 38.1. Overview of Trigger Behavior
      • 38.2. Visibility of Data Changes
      • 38.3. Writing Trigger Functions in C
      • 38.4. A Complete Trigger Example
    • 39. Event Triggers (事件觸發)
      • 39.1. Overview of Event Trigger Behavior
      • 39.2. Event Trigger Firing Matrix
      • 39.3. Writing Event Trigger Functions in C
      • 39.4. A Complete Event Trigger Example
    • 40. 規則系統
      • 40.1. The Query Tree
      • 40.2. Views and the Rule System
      • 40.3. Materialized Views
      • 40.4. Rules on INSERT, UPDATE, and DELETE
      • 40.5. 規則及權限
      • 40.6. Rules and Command Status
      • 40.7. Rules Versus Triggers
    • 41. Procedural Languages(程序語言)
      • 41.1. Installing Procedural Languages
      • 41.2. Structure of PL/pgSQL
      • 41.5. Basic Statements
      • 41.11. 深入了解 PL/pgSQL
    • 42. PL/pgSQL - SQL Procedural Language
      • 42.1. Overview
      • 42.2. Structure of PL/pgSQL
      • 42.3. Declarations
      • 42.4. Expressions
      • 42.5. 基本語法
      • 42.6. Control Structures
    • 43. PL/Tcl - Tcl Procedural Language
    • 44. PL/Perl — Perl Procedural Language
    • 45. PL/Python - Python Procedural Language
      • 45.1. Python 2 vs. Python 3
      • 45.2. PL/Python Functions
      • 45.3. Data Values
      • 45.4. Sharing Data
      • 45.5. Anonymous Code Blocks
      • 45.6. Trigger Functions
      • 45.7. Database Access
      • 45.8. Explicit Subtransactions
      • 45.9. Transaction Management
      • 45.10. Utility Functions
      • 45.11. Environment Variables
    • 46. Server Programming Interface
    • 47. Background Worker Processes
    • 48. Logical Decoding
      • 48.1. Logical Decoding Examples
      • 48.2. Logical Decoding Concepts
      • 48.3. Streaming Replication Protocol Interface
      • 48.4. Logical Decoding SQL Interface
      • 48.5. System Catalogs Related to Logical Decoding
      • 48.6. Logical Decoding Output Plugins
      • 48.7. Logical Decoding Output Writers
      • 48.8. Synchronous Replication Support for Logical Decoding
    • 49. Replication Progress Tracking
  • VI. 參考資訊
    • I. SQL 指令
      • ALTER DATABASE
      • ALTER DEFAULT PRIVILEGES
      • ALTER EXTENSION
      • ALTER FUNCTION
      • ALTER INDEX
      • ALTER LANGUAGE
      • ALTER MATERIALIZED VIEW
      • ALTER POLICY
      • ALTER PUBLICATION
      • ALTER ROLE
      • ALTER RULE
      • ALTER SCHEMA
      • ALTER SEQUENCE
      • ALTER STATISTICS
      • ALTER SUBSCRIPTION
      • ALTER SYSTEM
      • ALTER TABLE
      • ALTER TABLESPACE
      • ALTER TRIGGER
      • ALTER TYPE
      • ALTER USER
      • ALTER VIEW
      • ANALYZE
      • CLUSTER
      • COMMENT
      • COMMIT PREPARED
      • COPY
      • CREATE ACCESS METHOD
      • CREATE CAST
      • CREATE DATABASE
      • CREATE EVENT TRIGGER
      • CREATE EXTENSION
      • CREATE FOREIGN TABLE
      • CREATE FOREIGN DATA WRAPPER
      • CREATE FUNCTION
      • CREATE INDEX
      • CREATE LANGUAGE
      • CREATE MATERIALIZED VIEW
      • CREATE DOMAIN
      • CREATE POLICY
      • CREATE PROCEDURE
      • CREATE PUBLICATION
      • CREATE ROLE
      • CREATE RULE
      • CREATE SCHEMA
      • CREATE SEQUENCE
      • CREATE SERVER
      • CREATE STATISTICS
      • CREATE SUBSCRIPTION
      • CREATE TABLE
      • CREATE TABLE AS
      • CREATE TABLESPACE
      • CREATE TRANSFORM
      • CREATE TRIGGER
      • CREATE TYPE
      • CREATE USER
      • CREATE USER MAPPING
      • CREATE VIEW
      • DEALLOCATE
      • DELETE
      • DO
      • DROP ACCESS METHOD
      • DROP DATABASE
      • DROP EXTENSION
      • DROP FUNCTION
      • DROP INDEX
      • DROP LANGUAGE
      • DROP MATERIALIZED VIEW
      • DROP OWNED
      • DROP POLICY
      • DROP PUBLICATION
      • DROP ROLE
      • DROP RULE
      • DROP SCHEMA
      • DROP SEQUENCE
      • DROP STATISTICS
      • DROP SUBSCRIPTION
      • DROP TABLE
      • DROP TABLESPACE
      • DROP TRANSFORM
      • DROP TRIGGER
      • DROP TYPE
      • DROP USER
      • DROP VIEW
      • EXECUTE
      • EXPLAIN
      • GRANT
      • IMPORT FOREIGN SCHEMA
      • INSERT
      • LISTEN
      • LOAD
      • NOTIFY
      • PREPARE
      • PREPARE TRANSACTION
      • REASSIGN OWNED
      • REFRESH MATERIALIZED VIEW
      • REINDEX
      • RESET
      • REVOKE
      • ROLLBACK PREPARED
      • SECURITY LABEL
      • SELECT
      • SELECT INTO
      • SET
      • SET CONSTRAINTS
      • SET ROLE
      • SET SESSION AUTHORIZATION
      • SET TRANSACTION
      • SHOW
      • TRUNCATE
      • UNLISTEN
      • UPDATE
      • VACUUM
      • VALUES
    • II. PostgreSQL 用戶端工具
      • createdb
      • createuser
      • dropdb
      • dropuser
      • oid2name
      • pgbench
      • pg_basebackup
      • pg_dump
      • pg_dumpall
      • pg_isready
      • pg_receivewal
      • pg_recvlogical
      • pg_restore
      • pg_verifybackup
      • psql
      • vacuumdb
    • III. PostgreSQL 伺服器應用程式
      • initdb
      • pg_archivecleanup
      • pg_ctl
      • pg_standby
      • pg_test_timing
      • pg_upgrade
      • postgres
  • VII. 資料庫進階
    • 50. PostgreSQL 的內部架構
      • 50.1. 處理查詢語句的流程
      • 50.2. How Connections Are Established
      • 50.3. The Parser Stage
      • 50.4. The PostgreSQL Rule System
      • 50.5. Planner/Optimizer
      • 50.6. Executor
    • 51. 系統目錄
      • 51.3. pg_am
      • 51.7. pg_attribute
      • 51.8. pg_authid
      • 51.9. pg_auth_members
      • 51.10. pg_cast
      • 51.11 pg_class
      • 51.12. pg_collation
      • 51.13. pg_constraint
      • 51.15 pg_database
      • 51.21. pg_event_trigger
      • 51.22. pg_extension
      • 51.26 pg_index
      • 51.29. pg_language
      • 51.32. pg_namespace
      • 51.33. pg_opclass
      • 51.38. pg_policy
      • 51.39. pg_proc
      • 51.44. pg_rewrite
      • 51.49. pg_statistic
      • 51.50. pg_statistic_ext
      • 51.52. pg_subscription
      • 51.53. pg_subscription_rel
      • 51.54. pg_tablespace
      • 51.56. pg_trigger
      • 51.62. pg_type
      • 51.66. pg_available_extensions
      • 51.67. pg_available_extension_versions
      • 51.71. pg_hba_file_rules
      • 51.72. pg_indexes
      • 51.73. pg_locks
      • 51.77. pg_prepared_xacts
      • 51.79. pg_replication_origin_status
      • 51.80. pg_replication_slots
      • 51.82 pg_roles
      • 51.85. pg_settings
      • 51.87. pg_shmem_allocations
      • 51.88. pg_stats
      • 51.90. pg_tables
      • 51.93. pg_user
      • 51.95. pg_views
    • 52. Frontend/Backend Protocol
      • 52.1. Overview
      • 52.2. Message Flow
      • 52.3. SASL Authentication
      • 52.4. Streaming Replication Protocol
      • 52.5. Logical Streaming Replication Protocol
      • 52.6. Message Data Types
      • 52.7. Message Formats
      • 52.8. Error and Notice Message Fields
      • 52.9. Logical Replication Message Formats
      • 52.10. Summary of Changes since Protocol 2.0
    • 53. PostgreSQL 程式撰寫慣例
      • 53.1. Formatting
      • 53.2. Reporting Errors Within the Server
      • 53.3. Error Message Style Guide
      • 53.4. Miscellaneous Coding Conventions
    • 54. Native Language Support
      • 54.1. For the Translator
      • 54.2. For the Programmer
    • 55. 撰寫程序語言的處理程序
    • 56. Writing a Foreign Data Wrapper
      • 56.1. Foreign Data Wrapper Functions
      • 56.2. Foreign Data Wrapper Callback Routines
      • 56.3. Foreign Data Wrapper Helper Functions
      • 56.4. Foreign Data Wrapper Query Planning
      • 56.5. Row Locking in Foreign Data Wrappers
    • 59. Genetic Query Optimizer
      • 59.1. Query Handling as a Complex Optimization Problem
      • 59.2. Genetic Algorithms
      • 59.3. Genetic Query Optimization (GEQO) in PostgreSQL
      • 59.4. Further Reading
    • 60. Table Access Method Interface Definition
    • 61. Index Access Method Interface Definition
    • 62. Generic WAL Records
    • 64. B-Tree Indexes
      • 64.1. Introduction
      • 64.2. Behavior of B-Tree Operator Classes
      • 64.3. B-Tree Support Functions
      • 64.4. Implementation
    • 64. GiST Indexes
      • 64.1. Introduction
      • 64.2. Built-in Operator Classes
      • 64.3. Extensibility
      • 64.4. Implementation
      • 64.5. Examples
    • 65. SP-GiST Indexes
      • 65.1. Introduction
      • 65.2. Built-in Operator Classes
      • 65.3. Extensibility
      • 65.4. Implementation
      • 65.5. Examples
    • 66. GIN 索引
      • 66.1. 簡介
      • 66.2. 內建運算子類
      • 66.3. 延伸介面
      • 66.4. 實作說明
      • 66.5. GIN 小巧技
      • 66.6. 限制
      • 66.7. 範例
    • 67. BRIN Indexes
      • 67.1. Introduction
      • 67.2. Built-in Operator Classes
      • 67.3. Extensibility
    • 68. 資料庫實體儲存格式
      • 68.1. Database File Layout
      • 68.2. TOAST
      • 68.3. Free Space Map
      • 68.4 可視性映射表(Visibility Map)
      • 68.5. The Initialization Fork
      • 68.6. Database Page Layout
    • 69. System Catalog Declarations and Initial Contents
    • 70. 查詢計畫如何使用統計資訊
      • 70.1. Row Estimation Examples
      • 70.2. 多元統計資訊範例
      • 70.3. Planner Statistics and Security
    • 71. Backup Manifest Format
  • VIII. 附錄
    • A. PostgreSQL 錯誤代碼
    • B. 日期時間格式支援
      • B.1. 日期時間解譯流程
      • B.2. 日期時間慣用字
      • B.3. 日期時間設定檔
      • B.4. 日期時間的沿革
    • C. SQL 關鍵字
    • D. SQL 相容性
      • D.1. Supported Features
      • D.2. Unsupported Features
      • D.3. XML Limits and Conformance to SQL/XML
    • E. 版本資訊
      • E.1. Release 14
    • F. 延伸支援模組
      • F.1. adminpack
      • F.2. amcheck
      • F.3. auth_delay
      • F.4. auto_explain
      • F.5. bloom
      • F.6. btree_gin
      • F.10. dblink
        • dblink_connect
        • dblink_connect_u
        • dblink_disconnect
        • dblink
        • dblink_exec
        • dblink_open
        • dblink_fetch
        • dblink_close
        • dblink_get_connections
        • dblink_error_message
        • dblink_send_query
        • dblink_is_busy
        • dblink_get_notify
        • dblink_get_result
        • dblink_cancel_query
        • dblink_get_pkey
        • dblink_build_sql_insert
        • dblink_build_sql_delete
        • dblink_build_sql_update
      • F.13. earthdistance
      • F.14. file_fdw
      • F.16. hstore
      • F.24. pg_buffercache
      • F.29. pg_stat_statements
      • F.30. pgstattuple
      • F.31. pg_trgm
      • F.32. pg_visibility
      • F.33. postgres_fdw
      • F.35. sepgsql
      • F.38. tablefunc
      • F.40. test_decoding
      • F.41. tsm_system_rows
      • F.42. tsm_system_time
      • F.44. uuid-ossp
    • G. Additional Supplied Programs
      • G.1. Client Applications
        • oid2name
        • vacuumlo
      • G.2. Server Applications
        • pg_standby
    • H. 外部專案
      • H.1. 用戶端介面
      • H.2. Administration Tools
      • H.3. Procedural Languages
      • H.4. Extensions
    • I. The Source Code Repository
      • I.1. Getting The Source via Git
    • J. 文件取得
    • K. PostgreSQL Limits
    • L. 縮寫字
    • M. Glossary
    • N. 色彩支援
      • N.1. When Color is Used
      • N.2. Configuring the Colors
  • 參考書目
Powered by GitBook
On this page
  • 27.2.1. Statistics Collection Configuration
  • 27.2.2. Viewing Statistics
  • 27.2.3. pg_stat_activity
  • 27.2.4. pg_stat_replication
  • 27.2.5. pg_stat_wal_receiver
  • 27.2.6. pg_stat_subscription
  • 27.2.7. pg_stat_ssl
  • 27.2.8. pg_stat_gssapi
  • 27.2.9. pg_stat_archiver
  • 27.2.10. pg_stat_bgwriter
  • 27.2.11. pg_stat_database
  • 27.2.12. pg_stat_database_conflicts
  • 27.2.13. pg_stat_all_tables
  • 27.2.14. pg_stat_all_indexes
  • 27.2.15. pg_statio_all_tables
  • 27.2.16. pg_statio_all_indexes
  • 27.2.17. pg_statio_all_sequences
  • 27.2.18. pg_stat_user_functions
  • 27.2.19. pg_stat_slru
  • 27.2.20. Statistics Functions

Was this helpful?

Edit on GitHub
Export as PDF
  1. III. 系統管理
  2. 28. 監控資料庫活動

27.2. 統計資訊收集器

版本:11

Previous27.1. Standard Unix ToolsNext27.3. Viewing Locks

Last updated 3 years ago

Was this helpful?

PostgreSQL's statistics collector is a subsystem that supports collection and reporting of information about server activity. Presently, the collector can count accesses to tables and indexes in both disk-block and individual-row terms. It also tracks the total number of rows in each table, and information about vacuum and analyze actions for each table. It can also count calls to user-defined functions and the total time spent in each one.

PostgreSQL also supports reporting dynamic information about exactly what is going on in the system right now, such as the exact command currently being executed by other server processes, and which other connections exist in the system. This facility is independent of the collector process.

27.2.1. Statistics Collection Configuration

Since collection of statistics adds some overhead to query execution, the system can be configured to collect or not collect information. This is controlled by configuration parameters that are normally set in postgresql.conf. (See for details about setting configuration parameters.)

The parameter enables monitoring of the current command being executed by any server process.

The parameter controls whether statistics are collected about table and index accesses.

The parameter enables tracking of usage of user-defined functions.

The parameter enables monitoring of block read and write times.

Normally these parameters are set in postgresql.conf so that they apply to all server processes, but it is possible to turn them on or off in individual sessions using the command. (To prevent ordinary users from hiding their activity from the administrator, only superusers are allowed to change these parameters with SET.)

The statistics collector transmits the collected information to other PostgreSQL processes through temporary files. These files are stored in the directory named by the parameter, pg_stat_tmp by default. For better performance, stats_temp_directory can be pointed at a RAM-based file system, decreasing physical I/O requirements. When the server shuts down cleanly, a permanent copy of the statistics data is stored in the pg_stat subdirectory, so that statistics can be retained across server restarts. When recovery is performed at server start (e.g., after immediate shutdown, server crash, and point-in-time recovery), all statistics counters are reset.

27.2.2. Viewing Statistics

Several predefined views, listed in , are available to show the current state of the system. There are also several other views, listed in , available to show the results of statistics collection. Alternatively, one can build custom views using the underlying statistics functions, as discussed in .

When using the statistics to monitor collected data, it is important to realize that the information does not update instantaneously. Each individual server process transmits new statistical counts to the collector just before going idle; so a query or transaction still in progress does not affect the displayed totals. Also, the collector itself emits a new report at most once per PGSTAT_STAT_INTERVAL milliseconds (500 ms unless altered while building the server). So the displayed information lags behind actual activity. However, current-query information collected by track_activities is always up-to-date.

Another important point is that when a server process is asked to display any of these statistics, it first fetches the most recent report emitted by the collector process and then continues to use this snapshot for all statistical views and functions until the end of its current transaction. So the statistics will show static information as long as you continue the current transaction. Similarly, information about the current queries of all sessions is collected when any such information is first requested within a transaction, and the same information will be displayed throughout the transaction. This is a feature, not a bug, because it allows you to perform several queries on the statistics and correlate the results without worrying that the numbers are changing underneath you. But if you want to see new results with each query, be sure to do the queries outside any transaction block. Alternatively, you can invoke pg_stat_clear_snapshot(), which will discard the current transaction's statistics snapshot (if any). The next use of statistical information will cause a new snapshot to be fetched.

A transaction can also see its own statistics (as yet untransmitted to the collector) in the views pg_stat_xact_all_tables, pg_stat_xact_sys_tables, pg_stat_xact_user_tables, and pg_stat_xact_user_functions. These numbers do not act as stated above; instead they update continuously throughout the transaction.

Table 27.1. Dynamic Statistics Views

View Name
Description

pg_stat_activity

pg_stat_replication

pg_stat_wal_receiver

pg_stat_subscription

pg_stat_ssl

pg_stat_gssapi

pg_stat_progress_analyze

pg_stat_progress_create_index

pg_stat_progress_vacuum

pg_stat_progress_cluster

pg_stat_progress_basebackup

Table 27.2. Collected Statistics Views

View Name
Description

pg_stat_archiver

pg_stat_bgwriter

pg_stat_database

pg_stat_database_conflicts

pg_stat_all_tables

pg_stat_sys_tables

除了僅顯示系統資料表之外,與 pg_stat_all_tables 相同。

pg_stat_user_tables

除了僅顯示使用者資料表之外,與 pg_stat_all_tables 相同。

pg_stat_xact_all_tables

Similar to pg_stat_all_tables, but counts actions taken so far within the current transaction (which are not yet included in pg_stat_all_tables and related views). The columns for numbers of live and dead rows and vacuum and analyze actions are not present in this view.

pg_stat_xact_sys_tables

Same as pg_stat_xact_all_tables, except that only system tables are shown.

pg_stat_xact_user_tables

Same as pg_stat_xact_all_tables, except that only user tables are shown.

pg_stat_all_indexes

pg_stat_sys_indexes

Same as pg_stat_all_indexes, except that only indexes on system tables are shown.

pg_stat_user_indexes

Same as pg_stat_all_indexes, except that only indexes on user tables are shown.

pg_statio_all_tables

pg_statio_sys_tables

Same as pg_statio_all_tables, except that only system tables are shown.

pg_statio_user_tables

Same as pg_statio_all_tables, except that only user tables are shown.

pg_statio_all_indexes

pg_statio_sys_indexes

Same as pg_statio_all_indexes, except that only indexes on system tables are shown.

pg_statio_user_indexes

Same as pg_statio_all_indexes, except that only indexes on user tables are shown.

pg_statio_all_sequences

pg_statio_sys_sequences

Same as pg_statio_all_sequences, except that only system sequences are shown. (Presently, no system sequences are defined, so this view is always empty.)

pg_statio_user_sequences

Same as pg_statio_all_sequences, except that only user sequences are shown.

pg_stat_user_functions

pg_stat_xact_user_functions

Similar to pg_stat_user_functions, but counts only calls during the current transaction (which are not yet included in pg_stat_user_functions).

pg_stat_slru

The per-index statistics are particularly useful to determine which indexes are being used and how effective they are.

The pg_statio_ views are primarily useful to determine the effectiveness of the buffer cache. When the number of actual disk reads is much smaller than the number of buffer hits, then the cache is satisfying most read requests without invoking a kernel call. However, these statistics do not give the entire story: due to the way in which PostgreSQL handles disk I/O, data that is not in the PostgreSQL buffer cache might still reside in the kernel's I/O cache, and might therefore still be fetched without requiring a physical read. Users interested in obtaining more detailed information on PostgreSQL I/O behavior are advised to use the PostgreSQL statistics collector in combination with operating system utilities that allow insight into the kernel's handling of I/O.

27.2.3. pg_stat_activity

The pg_stat_activity view will have one row per server process, showing information related to the current activity of that process.

Table 27.3. pg_stat_activity View

Column Type

Description

datid oid

OID of the database this backend is connected to

datname name

Name of the database this backend is connected to

pid integer

Process ID of this backend

leader_pid integer

Process ID of the parallel group leader, if this process is a parallel query worker. NULL if this process is a parallel group leader or does not participate in parallel query.

usesysid oid

OID of the user logged into this backend

usename name

Name of the user logged into this backend

application_name text

Name of the application that is connected to this backend

client_addr inet

IP address of the client connected to this backend. If this field is null, it indicates either that the client is connected via a Unix socket on the server machine or that this is an internal process such as autovacuum.

client_hostname text

client_port integer

TCP port number that the client is using for communication with this backend, or -1 if a Unix socket is used. If this field is null, it indicates that this is an internal server process.

backend_start timestamp with time zone

Time when this process was started. For client backends, this is the time the client connected to the server.

xact_start timestamp with time zone

Time when this process' current transaction was started, or null if no transaction is active. If the current query is the first of its transaction, this column is equal to the query_start column.

query_start timestamp with time zone

Time when the currently active query was started, or if state is not active, when the last query was started

state_change timestamp with time zone

Time when the state was last changed

wait_event_type text

wait_event text

state text

Current overall state of this backend. Possible values are:

  • active: The backend is executing a query.

  • idle: The backend is waiting for a new client command.

  • idle in transaction: The backend is in a transaction, but is not currently executing a query.

  • idle in transaction (aborted): This state is similar to idle in transaction, except one of the statements in the transaction caused an error.

  • fastpath function call: The backend is executing a fast-path function.

backend_xid xid

Top-level transaction identifier of this backend, if any.

backend_xmin xid

The current backend's xmin horizon.

query text

backend_type text

Type of current backend. Possible types are autovacuum launcher, autovacuum worker, logical replication launcher, logical replication worker, parallel worker, background writer, client backend, checkpointer, startup, walreceiver, walsender and walwriter. In addition, background workers registered by extensions may have additional types.

Note

The wait_event and state columns are independent. If a backend is in the active state, it may or may not be waiting on some event. If the state is active and wait_event is non-null, it means that a query is being executed, but is being blocked somewhere in the system.

Table 27.4. Wait Event Types

Wait Event Type
Description

Activity

BufferPin

Client

Extension

IO

IPC

Lock

LWLock

Timeout

Table 27.5. Wait Events of Type Activity

Activity Wait Event

Description

ArchiverMain

Waiting in main loop of archiver process.

AutoVacuumMain

Waiting in main loop of autovacuum launcher process.

BgWriterHibernate

Waiting in background writer process, hibernating.

BgWriterMain

Waiting in main loop of background writer process.

CheckpointerMain

Waiting in main loop of checkpointer process.

LogicalApplyMain

Waiting in main loop of logical replication apply process.

LogicalLauncherMain

Waiting in main loop of logical replication launcher process.

PgStatMain

Waiting in main loop of statistics collector process.

RecoveryWalStream

Waiting in main loop of startup process for WAL to arrive, during streaming recovery.

SysLoggerMain

Waiting in main loop of syslogger process.

WalReceiverMain

Waiting in main loop of WAL receiver process.

WalSenderMain

Waiting in main loop of WAL sender process.

WalWriterMain

Waiting in main loop of WAL writer process.

Table 27.6. Wait Events of Type BufferPin

BufferPin Wait Event

Description

BufferPin

Waiting to acquire an exclusive pin on a buffer.

Table 27.7. Wait Events of Type Client

Client Wait Event

Description

ClientRead

Waiting to read data from the client.

ClientWrite

Waiting to write data to the client.

GSSOpenServer

Waiting to read data from the client while establishing a GSSAPI session.

LibPQWalReceiverConnect

Waiting in WAL receiver to establish connection to remote server.

LibPQWalReceiverReceive

Waiting in WAL receiver to receive data from remote server.

SSLOpenServer

Waiting for SSL while attempting connection.

WalReceiverWaitStart

Waiting for startup process to send initial data for streaming replication.

WalSenderWaitForWAL

Waiting for WAL to be flushed in WAL sender process.

WalSenderWriteData

Waiting for any activity when processing replies from WAL receiver in WAL sender process.

Table 27.8. Wait Events of Type Extension

Extension Wait Event

Description

Extension

Waiting in an extension.

Table 27.9. Wait Events of Type IO

IO Wait Event

Description

BufFileRead

Waiting for a read from a buffered file.

BufFileWrite

Waiting for a write to a buffered file.

ControlFileRead

Waiting for a read from the pg_control file.

ControlFileSync

Waiting for the pg_control file to reach durable storage.

ControlFileSyncUpdate

Waiting for an update to the pg_control file to reach durable storage.

ControlFileWrite

Waiting for a write to the pg_control file.

ControlFileWriteUpdate

Waiting for a write to update the pg_control file.

CopyFileRead

Waiting for a read during a file copy operation.

CopyFileWrite

Waiting for a write during a file copy operation.

DSMFillZeroWrite

Waiting to fill a dynamic shared memory backing file with zeroes.

DataFileExtend

Waiting for a relation data file to be extended.

DataFileFlush

Waiting for a relation data file to reach durable storage.

DataFileImmediateSync

Waiting for an immediate synchronization of a relation data file to durable storage.

DataFilePrefetch

Waiting for an asynchronous prefetch from a relation data file.

DataFileRead

Waiting for a read from a relation data file.

DataFileSync

Waiting for changes to a relation data file to reach durable storage.

DataFileTruncate

Waiting for a relation data file to be truncated.

DataFileWrite

Waiting for a write to a relation data file.

LockFileAddToDataDirRead

Waiting for a read while adding a line to the data directory lock file.

LockFileAddToDataDirSync

Waiting for data to reach durable storage while adding a line to the data directory lock file.

LockFileAddToDataDirWrite

Waiting for a write while adding a line to the data directory lock file.

LockFileCreateRead

Waiting to read while creating the data directory lock file.

LockFileCreateSync

Waiting for data to reach durable storage while creating the data directory lock file.

LockFileCreateWrite

Waiting for a write while creating the data directory lock file.

LockFileReCheckDataDirRead

Waiting for a read during recheck of the data directory lock file.

LogicalRewriteCheckpointSync

Waiting for logical rewrite mappings to reach durable storage during a checkpoint.

LogicalRewriteMappingSync

Waiting for mapping data to reach durable storage during a logical rewrite.

LogicalRewriteMappingWrite

Waiting for a write of mapping data during a logical rewrite.

LogicalRewriteSync

Waiting for logical rewrite mappings to reach durable storage.

LogicalRewriteTruncate

Waiting for truncate of mapping data during a logical rewrite.

LogicalRewriteWrite

Waiting for a write of logical rewrite mappings.

RelationMapRead

Waiting for a read of the relation map file.

RelationMapSync

Waiting for the relation map file to reach durable storage.

RelationMapWrite

Waiting for a write to the relation map file.

ReorderBufferRead

Waiting for a read during reorder buffer management.

ReorderBufferWrite

Waiting for a write during reorder buffer management.

ReorderLogicalMappingRead

Waiting for a read of a logical mapping during reorder buffer management.

ReplicationSlotRead

Waiting for a read from a replication slot control file.

ReplicationSlotRestoreSync

Waiting for a replication slot control file to reach durable storage while restoring it to memory.

ReplicationSlotSync

Waiting for a replication slot control file to reach durable storage.

ReplicationSlotWrite

Waiting for a write to a replication slot control file.

SLRUFlushSync

Waiting for SLRU data to reach durable storage during a checkpoint or database shutdown.

SLRURead

Waiting for a read of an SLRU page.

SLRUSync

Waiting for SLRU data to reach durable storage following a page write.

SLRUWrite

Waiting for a write of an SLRU page.

SnapbuildRead

Waiting for a read of a serialized historical catalog snapshot.

SnapbuildSync

Waiting for a serialized historical catalog snapshot to reach durable storage.

SnapbuildWrite

Waiting for a write of a serialized historical catalog snapshot.

TimelineHistoryFileSync

Waiting for a timeline history file received via streaming replication to reach durable storage.

TimelineHistoryFileWrite

Waiting for a write of a timeline history file received via streaming replication.

TimelineHistoryRead

Waiting for a read of a timeline history file.

TimelineHistorySync

Waiting for a newly created timeline history file to reach durable storage.

TimelineHistoryWrite

Waiting for a write of a newly created timeline history file.

TwophaseFileRead

Waiting for a read of a two phase state file.

TwophaseFileSync

Waiting for a two phase state file to reach durable storage.

TwophaseFileWrite

Waiting for a write of a two phase state file.

WALBootstrapSync

Waiting for WAL to reach durable storage during bootstrapping.

WALBootstrapWrite

Waiting for a write of a WAL page during bootstrapping.

WALCopyRead

Waiting for a read when creating a new WAL segment by copying an existing one.

WALCopySync

Waiting for a new WAL segment created by copying an existing one to reach durable storage.

WALCopyWrite

Waiting for a write when creating a new WAL segment by copying an existing one.

WALInitSync

Waiting for a newly initialized WAL file to reach durable storage.

WALInitWrite

Waiting for a write while initializing a new WAL file.

WALRead

Waiting for a read from a WAL file.

WALSenderTimelineHistoryRead

Waiting for a read from a timeline history file during a walsender timeline command.

WALSync

Waiting for a WAL file to reach durable storage.

WALSyncMethodAssign

Waiting for data to reach durable storage while assigning a new WAL sync method.

WALWrite

Waiting for a write to a WAL file.

Table 27.10. Wait Events of Type IPC

IPC Wait Event

Description

BackupWaitWalArchive

Waiting for WAL files required for a backup to be successfully archived.

BgWorkerShutdown

Waiting for background worker to shut down.

BgWorkerStartup

Waiting for background worker to start up.

BtreePage

Waiting for the page number needed to continue a parallel B-tree scan to become available.

CheckpointDone

Waiting for a checkpoint to complete.

CheckpointStart

Waiting for a checkpoint to start.

ExecuteGather

Waiting for activity from a child process while executing a Gather plan node.

HashBatchAllocate

Waiting for an elected Parallel Hash participant to allocate a hash table.

HashBatchElect

Waiting to elect a Parallel Hash participant to allocate a hash table.

HashBatchLoad

Waiting for other Parallel Hash participants to finish loading a hash table.

HashBuildAllocate

Waiting for an elected Parallel Hash participant to allocate the initial hash table.

HashBuildElect

Waiting to elect a Parallel Hash participant to allocate the initial hash table.

HashBuildHashInner

Waiting for other Parallel Hash participants to finish hashing the inner relation.

HashBuildHashOuter

Waiting for other Parallel Hash participants to finish partitioning the outer relation.

HashGrowBatchesAllocate

Waiting for an elected Parallel Hash participant to allocate more batches.

HashGrowBatchesDecide

Waiting to elect a Parallel Hash participant to decide on future batch growth.

HashGrowBatchesElect

Waiting to elect a Parallel Hash participant to allocate more batches.

HashGrowBatchesFinish

Waiting for an elected Parallel Hash participant to decide on future batch growth.

HashGrowBatchesRepartition

Waiting for other Parallel Hash participants to finish repartitioning.

HashGrowBucketsAllocate

Waiting for an elected Parallel Hash participant to finish allocating more buckets.

HashGrowBucketsElect

Waiting to elect a Parallel Hash participant to allocate more buckets.

HashGrowBucketsReinsert

Waiting for other Parallel Hash participants to finish inserting tuples into new buckets.

LogicalSyncData

Waiting for a logical replication remote server to send data for initial table synchronization.

LogicalSyncStateChange

Waiting for a logical replication remote server to change state.

MessageQueueInternal

Waiting for another process to be attached to a shared message queue.

MessageQueuePutMessage

Waiting to write a protocol message to a shared message queue.

MessageQueueReceive

Waiting to receive bytes from a shared message queue.

MessageQueueSend

Waiting to send bytes to a shared message queue.

ParallelBitmapScan

Waiting for parallel bitmap scan to become initialized.

ParallelCreateIndexScan

Waiting for parallel CREATE INDEX workers to finish heap scan.

ParallelFinish

Waiting for parallel workers to finish computing.

ProcArrayGroupUpdate

Waiting for the group leader to clear the transaction ID at end of a parallel operation.

ProcSignalBarrier

Waiting for a barrier event to be processed by all backends.

Promote

Waiting for standby promotion.

RecoveryConflictSnapshot

Waiting for recovery conflict resolution for a vacuum cleanup.

RecoveryConflictTablespace

Waiting for recovery conflict resolution for dropping a tablespace.

RecoveryPause

Waiting for recovery to be resumed.

ReplicationOriginDrop

Waiting for a replication origin to become inactive so it can be dropped.

ReplicationSlotDrop

Waiting for a replication slot to become inactive so it can be dropped.

SafeSnapshot

Waiting to obtain a valid snapshot for a READ ONLY DEFERRABLE transaction.

SyncRep

Waiting for confirmation from a remote server during synchronous replication.

XactGroupUpdate

Waiting for the group leader to update transaction status at end of a parallel operation.

Table 27.11. Wait Events of Type Lock

Lock Wait Event

Description

advisory

Waiting to acquire an advisory user lock.

extend

Waiting to extend a relation.

frozenid

Waiting to update pg_database.datfrozenxid and pg_database.datminmxid.

object

Waiting to acquire a lock on a non-relation database object.

page

Waiting to acquire a lock on a page of a relation.

relation

Waiting to acquire a lock on a relation.

spectoken

Waiting to acquire a speculative insertion lock.

transactionid

Waiting for a transaction to finish.

tuple

Waiting to acquire a lock on a tuple.

userlock

Waiting to acquire a user lock.

virtualxid

Waiting to acquire a virtual transaction ID lock.

Table 27.12. Wait Events of Type LWLock

LWLock Wait Event

Description

AddinShmemInit

Waiting to manage an extension's space allocation in shared memory.

AutoFile

Waiting to update the postgresql.auto.conf file.

Autovacuum

Waiting to read or update the current state of autovacuum workers.

AutovacuumSchedule

Waiting to ensure that a table selected for autovacuum still needs vacuuming.

BackgroundWorker

Waiting to read or update background worker state.

BtreeVacuum

Waiting to read or update vacuum-related information for a B-tree index.

BufferContent

Waiting to access a data page in memory.

BufferIO

Waiting for I/O on a data page.

BufferMapping

Waiting to associate a data block with a buffer in the buffer pool.

Checkpoint

Waiting to begin a checkpoint.

CheckpointerComm

Waiting to manage fsync requests.

CommitTs

Waiting to read or update the last value set for a transaction commit timestamp.

CommitTsBuffer

Waiting for I/O on a commit timestamp SLRU buffer.

CommitTsSLRU

Waiting to access the commit timestamp SLRU cache.

ControlFile

Waiting to read or update the pg_control file or create a new WAL file.

DynamicSharedMemoryControl

Waiting to read or update dynamic shared memory allocation information.

LockFastPath

Waiting to read or update a process' fast-path lock information.

LockManager

Waiting to read or update information about “heavyweight” locks.

LogicalRepWorker

Waiting to read or update the state of logical replication workers.

MultiXactGen

Waiting to read or update shared multixact state.

MultiXactMemberBuffer

Waiting for I/O on a multixact member SLRU buffer.

MultiXactMemberSLRU

Waiting to access the multixact member SLRU cache.

MultiXactOffsetBuffer

Waiting for I/O on a multixact offset SLRU buffer.

MultiXactOffsetSLRU

Waiting to access the multixact offset SLRU cache.

MultiXactTruncation

Waiting to read or truncate multixact information.

NotifyBuffer

Waiting for I/O on a NOTIFY message SLRU buffer.

NotifyQueue

Waiting to read or update NOTIFY messages.

NotifyQueueTail

Waiting to update limit on NOTIFY message storage.

NotifySLRU

Waiting to access the NOTIFY message SLRU cache.

OidGen

Waiting to allocate a new OID.

OldSnapshotTimeMap

Waiting to read or update old snapshot control information.

ParallelAppend

Waiting to choose the next subplan during Parallel Append plan execution.

ParallelHashJoin

Waiting to synchronize workers during Parallel Hash Join plan execution.

ParallelQueryDSA

Waiting for parallel query dynamic shared memory allocation.

PerSessionDSA

Waiting for parallel query dynamic shared memory allocation.

PerSessionRecordType

Waiting to access a parallel query's information about composite types.

PerSessionRecordTypmod

Waiting to access a parallel query's information about type modifiers that identify anonymous record types.

PerXactPredicateList

Waiting to access the list of predicate locks held by the current serializable transaction during a parallel query.

PredicateLockManager

Waiting to access predicate lock information used by serializable transactions.

ProcArray

Waiting to access the shared per-process data structures (typically, to get a snapshot or report a session's transaction ID).

RelationMapping

Waiting to read or update a pg_filenode.map file (used to track the filenode assignments of certain system catalogs).

RelCacheInit

Waiting to read or update a pg_internal.init relation cache initialization file.

ReplicationOrigin

Waiting to create, drop or use a replication origin.

ReplicationOriginState

Waiting to read or update the progress of one replication origin.

ReplicationSlotAllocation

Waiting to allocate or free a replication slot.

ReplicationSlotControl

Waiting to read or update replication slot state.

ReplicationSlotIO

Waiting for I/O on a replication slot.

SerialBuffer

Waiting for I/O on a serializable transaction conflict SLRU buffer.

SerializableFinishedList

Waiting to access the list of finished serializable transactions.

SerializablePredicateList

Waiting to access the list of predicate locks held by serializable transactions.

SerializableXactHash

Waiting to read or update information about serializable transactions.

SerialSLRU

Waiting to access the serializable transaction conflict SLRU cache.

SharedTidBitmap

Waiting to access a shared TID bitmap during a parallel bitmap index scan.

SharedTupleStore

Waiting to access a shared tuple store during parallel query.

ShmemIndex

Waiting to find or allocate space in shared memory.

SInvalRead

Waiting to retrieve messages from the shared catalog invalidation queue.

SInvalWrite

Waiting to add a message to the shared catalog invalidation queue.

SubtransBuffer

Waiting for I/O on a sub-transaction SLRU buffer.

SubtransSLRU

Waiting to access the sub-transaction SLRU cache.

SyncRep

Waiting to read or update information about the state of synchronous replication.

SyncScan

Waiting to select the starting location of a synchronized table scan.

TablespaceCreate

Waiting to create or drop a tablespace.

TwoPhaseState

Waiting to read or update the state of prepared transactions.

WALBufMapping

Waiting to replace a page in WAL buffers.

WALInsert

Waiting to insert WAL data into a memory buffer.

WALWrite

Waiting for WAL buffers to be written to disk.

WrapLimitsVacuum

Waiting to update limits on transaction id and multixact consumption.

XactBuffer

Waiting for I/O on a transaction status SLRU buffer.

XactSLRU

Waiting to access the transaction status SLRU cache.

XactTruncation

Waiting to execute pg_xact_status or update the oldest transaction ID available to it.

XidGen

Waiting to allocate a new transaction ID.

Note

Table 27.13. Wait Events of Type Timeout

Timeout Wait Event

Description

BaseBackupThrottle

Waiting during base backup when throttling activity.

PgSleep

Waiting due to a call to pg_sleep or a sibling function.

RecoveryApplyDelay

Waiting to apply WAL during recovery because of a delay setting.

RecoveryRetrieveRetryInterval

Waiting during recovery when WAL data is not available from any source (pg_wal, archive or stream).

VacuumDelay

Waiting in a cost-based vacuum delay point.

Here is an example of how wait events can be viewed:

SELECT pid, wait_event_type, wait_event FROM pg_stat_activity WHERE wait_event is NOT NULL;
 pid  | wait_event_type | wait_event 
------+-----------------+------------
 2540 | Lock            | relation
 6644 | LWLock          | ProcArray
(2 rows)

27.2.4. pg_stat_replication

pg_stat_replication 檢視表中的每一筆資料表示每個 WAL 發送者的執行程序,顯示有關複製到該發送者的備用伺服器統計資訊。僅列出直接連接的備用資料庫,不會包含其下游備用伺服器的資訊。

Table 27.14. pg_stat_replication View

Column Type

Description

pid integer

Process ID of a WAL sender process

usesysid oid

OID of the user logged into this WAL sender process

usename name

Name of the user logged into this WAL sender process

application_name text

Name of the application that is connected to this WAL sender

client_addr inet

IP address of the client connected to this WAL sender. If this field is null, it indicates that the client is connected via a Unix socket on the server machine.

client_hostname text

client_port integer

TCP port number that the client is using for communication with this WAL sender, or -1 if a Unix socket is used

backend_start timestamp with time zone

Time when this process was started, i.e., when the client connected to this WAL sender

backend_xmin xid

state text

Current WAL sender state. Possible values are:

  • startup: This WAL sender is starting up.

  • catchup: This WAL sender's connected standby is catching up with the primary.

  • streaming: This WAL sender is streaming changes after its connected standby server has caught up with the primary.

  • backup: This WAL sender is sending a backup.

  • stopping: This WAL sender is stopping.

sent_lsn pg_lsn

Last write-ahead log location sent on this connection

write_lsn pg_lsn

Last write-ahead log location written to disk by this standby server

flush_lsn pg_lsn

Last write-ahead log location flushed to disk by this standby server

replay_lsn pg_lsn

Last write-ahead log location replayed into the database on this standby server

write_lag interval

Time elapsed between flushing recent WAL locally and receiving notification that this standby server has written it (but not yet flushed it or applied it). This can be used to gauge the delay that synchronous_commit level remote_write incurred while committing if this server was configured as a synchronous standby.

flush_lag interval

Time elapsed between flushing recent WAL locally and receiving notification that this standby server has written and flushed it (but not yet applied it). This can be used to gauge the delay that synchronous_commit level on incurred while committing if this server was configured as a synchronous standby.

replay_lag interval

Time elapsed between flushing recent WAL locally and receiving notification that this standby server has written, flushed and applied it. This can be used to gauge the delay that synchronous_commit level remote_apply incurred while committing if this server was configured as a synchronous standby.

sync_priority integer

Priority of this standby server for being chosen as the synchronous standby in a priority-based synchronous replication. This has no effect in a quorum-based synchronous replication.

sync_state text

Synchronous state of this standby server. Possible values are:

  • async: This standby server is asynchronous.

  • potential: This standby server is now asynchronous, but can potentially become synchronous if one of current synchronous ones fails.

  • sync: This standby server is synchronous.

  • quorum: This standby server is considered as a candidate for quorum standbys.

reply_time timestamp with time zone

最後從備用伺服器收到回覆訊息的發送時間

The lag times reported in the pg_stat_replication view are measurements of the time taken for recent WAL to be written, flushed and replayed and for the sender to know about it. These times represent the commit delay that was (or would have been) introduced by each synchronous commit level, if the remote server was configured as a synchronous standby. For an asynchronous standby, the replay_lag column approximates the delay before recent transactions became visible to queries. If the standby server has entirely caught up with the sending server and there is no more WAL activity, the most recently measured lag times will continue to be displayed for a short time and then show NULL.

Lag times work automatically for physical replication. Logical decoding plugins may optionally emit tracking messages; if they do not, the tracking mechanism will simply display NULL lag.

Note

The reported lag times are not predictions of how long it will take for the standby to catch up with the sending server assuming the current rate of replay. Such a system would show similar times while new WAL is being generated, but would differ when the sender becomes idle. In particular, when the standby has caught up completely, pg_stat_replication shows the time taken to write, flush and replay the most recent reported WAL location rather than zero as some users might expect. This is consistent with the goal of measuring synchronous commit and transaction visibility delays for recent write transactions. To reduce confusion for users expecting a different model of lag, the lag columns revert to NULL after a short time on a fully replayed idle system. Monitoring systems should choose whether to represent this as missing data, zero or continue to display the last known value.

27.2.5. pg_stat_wal_receiver

The pg_stat_wal_receiver view will contain only one row, showing statistics about the WAL receiver from that receiver's connected server.

Table 27.15. pg_stat_wal_receiver View

Column Type

Description

pid integer

Process ID of the WAL receiver process

status text

Activity status of the WAL receiver process

receive_start_lsn pg_lsn

First write-ahead log location used when WAL receiver is started

receive_start_tli integer

First timeline number used when WAL receiver is started

written_lsn pg_lsn

Last write-ahead log location already received and written to disk, but not flushed. This should not be used for data integrity checks.

flushed_lsn pg_lsn

Last write-ahead log location already received and flushed to disk, the initial value of this field being the first log location used when WAL receiver is started

received_tli integer

Timeline number of last write-ahead log location received and flushed to disk, the initial value of this field being the timeline number of the first log location used when WAL receiver is started

last_msg_send_time timestamp with time zone

Send time of last message received from origin WAL sender

last_msg_receipt_time timestamp with time zone

Receipt time of last message received from origin WAL sender

latest_end_lsn pg_lsn

Last write-ahead log location reported to origin WAL sender

latest_end_time timestamp with time zone

Time of last write-ahead log location reported to origin WAL sender

slot_name text

Replication slot name used by this WAL receiver

sender_host text

Host of the PostgreSQL instance this WAL receiver is connected to. This can be a host name, an IP address, or a directory path if the connection is via Unix socket. (The path case can be distinguished because it will always be an absolute path, beginning with /.)

sender_port integer

Port number of the PostgreSQL instance this WAL receiver is connected to.

conninfo text

Connection string used by this WAL receiver, with security-sensitive fields obfuscated.

27.2.6. pg_stat_subscription

The pg_stat_subscription view will contain one row per subscription for main worker (with null PID if the worker is not running), and additional rows for workers handling the initial data copy of the subscribed tables.

Table 27.16. pg_stat_subscription View

Column Type

Description

subid oid

OID of the subscription

subname name

Name of the subscription

pid integer

Process ID of the subscription worker process

relid oid

OID of the relation that the worker is synchronizing; null for the main apply worker

received_lsn pg_lsn

Last write-ahead log location received, the initial value of this field being 0

last_msg_send_time timestamp with time zone

Send time of last message received from origin WAL sender

last_msg_receipt_time timestamp with time zone

Receipt time of last message received from origin WAL sender

latest_end_lsn pg_lsn

Last write-ahead log location reported to origin WAL sender

latest_end_time timestamp with time zone

Time of last write-ahead log location reported to origin WAL sender

27.2.7. pg_stat_ssl

The pg_stat_ssl view will contain one row per backend or WAL sender process, showing statistics about SSL usage on this connection. It can be joined to pg_stat_activity or pg_stat_replication on the pid column to get more details about the connection.

Table 27.17. pg_stat_ssl View

Column Type

Description

pid integer

Process ID of a backend or WAL sender process

ssl boolean

True if SSL is used on this connection

version text

Version of SSL in use, or NULL if SSL is not in use on this connection

cipher text

Name of SSL cipher in use, or NULL if SSL is not in use on this connection

bits integer

Number of bits in the encryption algorithm used, or NULL if SSL is not used on this connection

compression boolean

True if SSL compression is in use, false if not, or NULL if SSL is not in use on this connection

client_dn text

Distinguished Name (DN) field from the client certificate used, or NULL if no client certificate was supplied or if SSL is not in use on this connection. This field is truncated if the DN field is longer than NAMEDATALEN (64 characters in a standard build).

client_serial numeric

Serial number of the client certificate, or NULL if no client certificate was supplied or if SSL is not in use on this connection. The combination of certificate serial number and certificate issuer uniquely identifies a certificate (unless the issuer erroneously reuses serial numbers).

issuer_dn text

DN of the issuer of the client certificate, or NULL if no client certificate was supplied or if SSL is not in use on this connection. This field is truncated like client_dn.

27.2.8. pg_stat_gssapi

The pg_stat_gssapi view will contain one row per backend, showing information about GSSAPI usage on this connection. It can be joined to pg_stat_activity or pg_stat_replication on the pid column to get more details about the connection.

Table 27.18. pg_stat_gssapi View

Column Type

Description

pid integer

Process ID of a backend

gss_authenticated boolean

True if GSSAPI authentication was used for this connection

principal text

Principal used to authenticate this connection, or NULL if GSSAPI was not used to authenticate this connection. This field is truncated if the principal is longer than NAMEDATALEN (64 characters in a standard build).

encrypted boolean

True if GSSAPI encryption is in use on this connection

27.2.9. pg_stat_archiver

The pg_stat_archiver view will always have a single row, containing data about the archiver process of the cluster.

Table 27.19. pg_stat_archiver View

Column Type

Description

archived_count bigint

Number of WAL files that have been successfully archived

last_archived_wal text

Name of the last WAL file successfully archived

last_archived_time timestamp with time zone

Time of the last successful archive operation

failed_count bigint

Number of failed attempts for archiving WAL files

last_failed_wal text

Name of the WAL file of the last failed archival operation

last_failed_time timestamp with time zone

Time of the last failed archival operation

stats_reset timestamp with time zone

Time at which these statistics were last reset

27.2.10. pg_stat_bgwriter

The pg_stat_bgwriter view will always have a single row, containing global data for the cluster.

Table 27.20. pg_stat_bgwriter View

Column Type

Description

checkpoints_timed bigint

Number of scheduled checkpoints that have been performed

checkpoints_req bigint

Number of requested checkpoints that have been performed

checkpoint_write_time double precision

Total amount of time that has been spent in the portion of checkpoint processing where files are written to disk, in milliseconds

checkpoint_sync_time double precision

Total amount of time that has been spent in the portion of checkpoint processing where files are synchronized to disk, in milliseconds

buffers_checkpoint bigint

Number of buffers written during checkpoints

buffers_clean bigint

Number of buffers written by the background writer

maxwritten_clean bigint

Number of times the background writer stopped a cleaning scan because it had written too many buffers

buffers_backend bigint

Number of buffers written directly by a backend

buffers_backend_fsync bigint

Number of times a backend had to execute its own fsync call (normally the background writer handles those even when the backend does its own write)

buffers_alloc bigint

Number of buffers allocated

stats_reset timestamp with time zone

Time at which these statistics were last reset

27.2.11. pg_stat_database

pg_stat_database 檢視表將為叢集中的每個資料庫綜合為一筆資料,再加上每個共享物件,列出資料庫層級的統計資訊。

Table 27.21. pg_stat_database View

Column Type

Description

datid oid

OID of this database, or 0 for objects belonging to a shared relation

datname name

Name of this database, or NULL for shared objects.

numbackends integer

Number of backends currently connected to this database, or NULL for shared objects. This is the only column in this view that returns a value reflecting current state; all other columns return the accumulated values since the last reset.

xact_commit bigint

Number of transactions in this database that have been committed

xact_rollback bigint

Number of transactions in this database that have been rolled back

blks_read bigint

Number of disk blocks read in this database

blks_hit bigint

Number of times disk blocks were found already in the buffer cache, so that a read was not necessary (this only includes hits in the PostgreSQL buffer cache, not the operating system's file system cache)

tup_returned bigint

Number of rows returned by queries in this database

tup_fetched bigint

Number of rows fetched by queries in this database

tup_inserted bigint

Number of rows inserted by queries in this database

tup_updated bigint

Number of rows updated by queries in this database

tup_deleted bigint

Number of rows deleted by queries in this database

conflicts bigint

temp_files bigint

temp_bytes bigint

deadlocks bigint

Number of deadlocks detected in this database

checksum_failures bigint

Number of data page checksum failures detected in this database (or on a shared object), or NULL if data checksums are not enabled.

checksum_last_failure timestamp with time zone

Time at which the last data page checksum failure was detected in this database (or on a shared object), or NULL if data checksums are not enabled.

blk_read_time double precision

blk_write_time double precision

stats_reset timestamp with time zone

上次重置這個統計資訊的時間

27.2.12. pg_stat_database_conflicts

The pg_stat_database_conflicts view will contain one row per database, showing database-wide statistics about query cancels occurring due to conflicts with recovery on standby servers. This view will only contain information on standby servers, since conflicts do not occur on master servers.

Table 27.22. pg_stat_database_conflicts View

Column Type

Description

datid oid

OID of a database

datname name

Name of this database

confl_tablespace bigint

Number of queries in this database that have been canceled due to dropped tablespaces

confl_lock bigint

Number of queries in this database that have been canceled due to lock timeouts

confl_snapshot bigint

Number of queries in this database that have been canceled due to old snapshots

confl_bufferpin bigint

Number of queries in this database that have been canceled due to pinned buffers

confl_deadlock bigint

Number of queries in this database that have been canceled due to deadlocks

27.2.13. pg_stat_all_tables

pg_stat_all_tables 檢視表將為目前資料庫中的每個資料表(包括 TOAST 資料表)為一筆資料,顯示有關對該資料表的存取統計數據。 pg_stat_user_tables 和 pg_stat_sys_tables 檢視表包含相同的資訊,差別是過濾之後僅顯示使用者表和系統資料表。

Table 27.23. pg_stat_all_tables View

Column Type

Description

relid oid

OID of a table

schemaname name

Name of the schema that this table is in

relname name

Name of this table

seq_scan bigint

Number of sequential scans initiated on this table

seq_tup_read bigint

Number of live rows fetched by sequential scans

idx_scan bigint

Number of index scans initiated on this table

idx_tup_fetch bigint

Number of live rows fetched by index scans

n_tup_ins bigint

Number of rows inserted

n_tup_upd bigint

Number of rows updated (includes HOT updated rows)

n_tup_del bigint

Number of rows deleted

n_tup_hot_upd bigint

Number of rows HOT updated (i.e., with no separate index update required)

n_live_tup bigint

Estimated number of live rows

n_dead_tup bigint

Estimated number of dead rows

n_mod_since_analyze bigint

Estimated number of rows modified since this table was last analyzed

n_ins_since_vacuum bigint

Estimated number of rows inserted since this table was last vacuumed

last_vacuum timestamp with time zone

Last time at which this table was manually vacuumed (not counting VACUUM FULL)

last_autovacuum timestamp with time zone

Last time at which this table was vacuumed by the autovacuum daemon

last_analyze timestamp with time zone

Last time at which this table was manually analyzed

last_autoanalyze timestamp with time zone

Last time at which this table was analyzed by the autovacuum daemon

vacuum_count bigint

Number of times this table has been manually vacuumed (not counting VACUUM FULL)

autovacuum_count bigint

Number of times this table has been vacuumed by the autovacuum daemon

analyze_count bigint

Number of times this table has been manually analyzed

autoanalyze_count bigint

Number of times this table has been analyzed by the autovacuum daemon

27.2.14. pg_stat_all_indexes

The pg_stat_all_indexes view will contain one row for each index in the current database, showing statistics about accesses to that specific index. The pg_stat_user_indexes and pg_stat_sys_indexes views contain the same information, but filtered to only show user and system indexes respectively.

Table 27.24. pg_stat_all_indexes View

Column Type

Description

relid oid

OID of the table for this index

indexrelid oid

OID of this index

schemaname name

Name of the schema this index is in

relname name

Name of the table for this index

indexrelname name

Name of this index

idx_scan bigint

Number of index scans initiated on this index

idx_tup_read bigint

Number of index entries returned by scans on this index

idx_tup_fetch bigint

Number of live table rows fetched by simple index scans using this index

Indexes can be used by simple index scans, “bitmap” index scans, and the optimizer. In a bitmap scan the output of several indexes can be combined via AND or OR rules, so it is difficult to associate individual heap row fetches with specific indexes when a bitmap scan is used. Therefore, a bitmap scan increments the pg_stat_all_indexes.idx_tup_read count(s) for the index(es) it uses, and it increments the pg_stat_all_tables.idx_tup_fetch count for the table, but it does not affect pg_stat_all_indexes.idx_tup_fetch. The optimizer also accesses indexes to check for supplied constants whose values are outside the recorded range of the optimizer statistics because the optimizer statistics might be stale.

Note

The idx_tup_read and idx_tup_fetch counts can be different even without any use of bitmap scans, because idx_tup_read counts index entries retrieved from the index while idx_tup_fetch counts live rows fetched from the table. The latter will be less if any dead or not-yet-committed rows are fetched using the index, or if any heap fetches are avoided by means of an index-only scan.

27.2.15. pg_statio_all_tables

The pg_statio_all_tables view will contain one row for each table in the current database (including TOAST tables), showing statistics about I/O on that specific table. The pg_statio_user_tables and pg_statio_sys_tables views contain the same information, but filtered to only show user and system tables respectively.

Table 27.25. pg_statio_all_tables View

Column Type

Description

relid oid

OID of a table

schemaname name

Name of the schema that this table is in

relname name

Name of this table

heap_blks_read bigint

Number of disk blocks read from this table

heap_blks_hit bigint

Number of buffer hits in this table

idx_blks_read bigint

Number of disk blocks read from all indexes on this table

idx_blks_hit bigint

Number of buffer hits in all indexes on this table

toast_blks_read bigint

Number of disk blocks read from this table's TOAST table (if any)

toast_blks_hit bigint

Number of buffer hits in this table's TOAST table (if any)

tidx_blks_read bigint

Number of disk blocks read from this table's TOAST table indexes (if any)

tidx_blks_hit bigint

Number of buffer hits in this table's TOAST table indexes (if any)

27.2.16. pg_statio_all_indexes

The pg_statio_all_indexes view will contain one row for each index in the current database, showing statistics about I/O on that specific index. The pg_statio_user_indexes and pg_statio_sys_indexes views contain the same information, but filtered to only show user and system indexes respectively.

Table 27.26. pg_statio_all_indexes View

Column Type

Description

relid oid

OID of the table for this index

indexrelid oid

OID of this index

schemaname name

Name of the schema this index is in

relname name

Name of the table for this index

indexrelname name

Name of this index

idx_blks_read bigint

Number of disk blocks read from this index

idx_blks_hit bigint

Number of buffer hits in this index

27.2.17. pg_statio_all_sequences

The pg_statio_all_sequences view will contain one row for each sequence in the current database, showing statistics about I/O on that specific sequence.

Table 27.27. pg_statio_all_sequences View

Column Type

Description

relid oid

OID of a sequence

schemaname name

Name of the schema this sequence is in

relname name

Name of this sequence

blks_read bigint

Number of disk blocks read from this sequence

blks_hit bigint

Number of buffer hits in this sequence

27.2.18. pg_stat_user_functions

Table 27.28. pg_stat_user_functions View

Column Type

Description

funcid oid

OID of a function

schemaname name

Name of the schema this function is in

funcname name

Name of this function

calls bigint

Number of times this function has been called

total_time double precision

Total time spent in this function and all other functions called by it, in milliseconds

self_time double precision

Total time spent in this function itself, not including other functions called by it, in milliseconds

27.2.19. pg_stat_slru

PostgreSQL accesses certain on-disk information via SLRU (simple least-recently-used) caches. The pg_stat_slru view will contain one row for each tracked SLRU cache, showing statistics about access to cached pages.

Table 27.29. pg_stat_slru View

Column Type

Description

name text

Name of the SLRU

blks_zeroed bigint

Number of blocks zeroed during initializations

blks_hit bigint

Number of times disk blocks were found already in the SLRU, so that a read was not necessary (this only includes hits in the SLRU, not the operating system's file system cache)

blks_read bigint

Number of disk blocks read for this SLRU

blks_written bigint

Number of disk blocks written for this SLRU

blks_exists bigint

Number of blocks checked for existence for this SLRU

flushes bigint

Number of flushes of dirty data for this SLRU

truncates bigint

Number of truncates for this SLRU

stats_reset timestamp with time zone

Time at which these statistics were last reset

27.2.20. Statistics Functions

Other ways of looking at the statistics can be set up by writing queries that use the same underlying statistics access functions used by the standard views shown above. For details such as the functions' names, consult the definitions of the standard views. (For example, in psql you could issue \d+ pg_stat_activity.) The access functions for per-database statistics take a database OID as an argument to identify which database to report on. The per-table and per-index functions take a table or index OID. The functions for per-function statistics take a function OID. Note that only tables, indexes, and functions in the current database can be seen with these functions.

Table 27.30. Additional Statistics Functions

Function

Description

pg_backend_pid () → integer

Returns the process ID of the server process attached to the current session.

pg_stat_get_activity ( integer ) → setof record

Returns a record of information about the backend with the specified process ID, or one record for each active backend in the system if NULL is specified. The fields returned are a subset of those in the pg_stat_activity view.

pg_stat_get_snapshot_timestamp () → timestamp with time zone

Returns the timestamp of the current statistics snapshot.

pg_stat_clear_snapshot () → void

Discards the current statistics snapshot.

pg_stat_reset () → void

Resets all statistics counters for the current database to zero.

This function is restricted to superusers by default, but other users can be granted EXECUTE to run the function.

pg_stat_reset_shared ( text ) → void

Resets some cluster-wide statistics counters to zero, depending on the argument. The argument can be bgwriter to reset all the counters shown in the pg_stat_bgwriter view, or archiver to reset all the counters shown in the pg_stat_archiver view.

This function is restricted to superusers by default, but other users can be granted EXECUTE to run the function.

pg_stat_reset_single_table_counters ( oid ) → void

Resets statistics for a single table or index in the current database to zero.

This function is restricted to superusers by default, but other users can be granted EXECUTE to run the function.

pg_stat_reset_single_function_counters ( oid ) → void

Resets statistics for a single function in the current database to zero.

This function is restricted to superusers by default, but other users can be granted EXECUTE to run the function.

pg_stat_reset_slru ( text ) → void

Resets statistics to zero for a single SLRU cache, or for all SLRUs in the cluster. If the argument is NULL, all counters shown in the pg_stat_slru view for all SLRU caches are reset. The argument can be one of CommitTs, MultiXactMember, MultiXactOffset, Notify, Serial, Subtrans, or Xact to reset the counters for only that entry. If the argument is other (or indeed, any unrecognized name), then the counters for all other SLRU caches, such as extension-defined caches, are reset.

This function is restricted to superusers by default, but other users can be granted EXECUTE to run the function.

SELECT pg_stat_get_backend_pid(s.backendid) AS pid,
       pg_stat_get_backend_activity(s.backendid) AS query
    FROM (SELECT pg_stat_get_backend_idset() AS backendid) AS s;

Table 27.31. Per-Backend Statistics Functions

Function

Description

pg_stat_get_backend_idset () → setof integer

Returns the set of currently active backend ID numbers (from 1 to the number of active backends).

pg_stat_get_backend_activity ( integer ) → text

Returns the text of this backend's most recent query.

pg_stat_get_backend_activity_start ( integer ) → timestamp with time zone

Returns the time when the backend's most recent query was started.

pg_stat_get_backend_client_addr ( integer ) → inet

Returns the IP address of the client connected to this backend.

pg_stat_get_backend_client_port ( integer ) → integer

Returns the TCP port number that the client is using for communication.

pg_stat_get_backend_dbid ( integer ) → oid

Returns the OID of the database this backend is connected to.

pg_stat_get_backend_pid ( integer ) → integer

Returns the process ID of this backend.

pg_stat_get_backend_start ( integer ) → timestamp with time zone

Returns the time when this process was started.

pg_stat_get_backend_userid ( integer ) → oid

Returns the OID of the user logged into this backend.

pg_stat_get_backend_wait_event_type ( integer ) → text

pg_stat_get_backend_wait_event ( integer ) → text

pg_stat_get_backend_xact_start ( integer ) → timestamp with time zone

Returns the time when the backend's current transaction was started.

Some of the information in the dynamic statistics views shown in is security restricted. Ordinary users can only see all the information about their own sessions (sessions belonging to a role that they are a member of). In rows about other sessions, many columns will be null. Note, however, that the existence of a session and its general properties such as its sessions user and database are visible to all users. Superusers and members of the built-in role pg_read_all_stats (see also ) can see all the information about all sessions.

One row per server process, showing information related to the current activity of that process, such as state and current query. See for details.

One row per WAL sender process, showing statistics about replication to that sender's connected standby server. See for details.

Only one row, showing statistics about the WAL receiver from that receiver's connected server. See for details.

At least one row per subscription, showing information about the subscription workers. See for details.

One row per connection (regular and replication), showing information about SSL used on this connection. See for details.

One row per connection (regular and replication), showing information about GSSAPI authentication and encryption used on this connection. See for details.

One row for each backend (including autovacuum worker processes) running ANALYZE, showing current progress. See .

One row for each backend running CREATE INDEX or REINDEX, showing current progress. See .

One row for each backend (including autovacuum worker processes) running VACUUM, showing current progress. See .

One row for each backend running CLUSTER or VACUUM FULL, showing current progress. See .

One row for each WAL sender process streaming a base backup, showing current progress. See .

One row only, showing statistics about the WAL archiver process's activity. See for details.

One row only, showing statistics about the background writer process's activity. See for details.

One row per database, showing database-wide statistics. See for details.

One row per database, showing database-wide statistics about query cancels due to conflict with recovery on standby servers. See for details.

目前資料庫中每個資料表為一筆資料,顯示有關對該資料表的存取統計數據。有關詳細資訊,請參閱 。

One row for each index in the current database, showing statistics about accesses to that specific index. See for details.

One row for each table in the current database, showing statistics about I/O on that specific table. See for details.

One row for each index in the current database, showing statistics about I/O on that specific index. See for details.

One row for each sequence in the current database, showing statistics about I/O on that specific sequence. See for details.

One row for each tracked function, showing statistics about executions of that function. See for details.

One row per SLRU, showing statistics of operations. See for details.

Host name of the connected client, as reported by a reverse DNS lookup of client_addr. This field will only be non-null for IP connections, and only when is enabled.

The type of event for which the backend is waiting, if any; otherwise NULL. See .

Wait event name if backend is currently waiting, otherwise NULL. See through .

disabled: This state is reported if is disabled in this backend.

Text of this backend's most recent query. If state is active this field shows the currently executing query. In all other states, it shows the last query that was executed. By default the query text is truncated at 1024 bytes; this value can be changed via the parameter .

The server process is idle. This event type indicates a process waiting for activity in its main processing loop. wait_event will identify the specific wait point; see .

The server process is waiting for exclusive access to a data buffer. Buffer pin waits can be protracted if another process holds an open cursor that last read data from the buffer in question. See .

The server process is waiting for activity on a socket connected to a user application. Thus, the server expects something to happen that is independent of its internal processes. wait_event will identify the specific wait point; see .

The server process is waiting for some condition defined by an extension module. See .

The server process is waiting for an I/O operation to complete. wait_event will identify the specific wait point; see .

The server process is waiting for some interaction with another server process. wait_event will identify the specific wait point; see .

The server process is waiting for a heavyweight lock. Heavyweight locks, also known as lock manager locks or simply locks, primarily protect SQL-visible objects such as tables. However, they are also used to ensure mutual exclusion for certain internal operations such as relation extension. wait_event will identify the type of lock awaited; see .

The server process is waiting for a lightweight lock. Most such locks protect a particular data structure in shared memory. wait_event will contain a name identifying the purpose of the lightweight lock. (Some locks have specific names; others are part of a group of locks each with a similar purpose.) See .

The server process is waiting for a timeout to expire. wait_event will identify the specific wait point; see .

Extensions can add LWLock types to the list shown in . In some cases, the name assigned by an extension will not be available in all server processes; so an LWLock wait event might be reported as just “extension” rather than the extension-assigned name.

Host name of the connected client, as reported by a reverse DNS lookup of client_addr. This field will only be non-null for IP connections, and only when is enabled.

This standby's xmin horizon reported by .

Number of queries canceled due to conflicts with recovery in this database. (Conflicts occur only on standby servers; see for details.)

由此資料庫的查詢所建立的暫存檔案數量。無論建立暫存檔案的原因(例如排序或 Hash)如何,以及 如何設定,都會對所有的暫存檔案進行計數。

此資料庫中的查詢寫入暫存檔案的資料總量。無論建立暫時檔案的原因以及 設定為何,都將對所有的暫存檔案進行統計。

Time spent reading data file blocks by backends in this database, in milliseconds (if is enabled, otherwise zero)

Time spent writing data file blocks by backends in this database, in milliseconds (if is enabled, otherwise zero)

The pg_stat_user_functions view will contain one row for each tracked function, showing statistics about executions of that function. The parameter controls exactly which functions are tracked.

Additional functions related to statistics collection are listed in .

pg_stat_get_activity, the underlying function of the pg_stat_activity view, returns a set of records containing all the available information about each backend process. Sometimes it may be more convenient to obtain just a subset of this information. In such cases, an older set of per-backend statistics access functions can be used; these are shown in . These access functions use a backend ID number, which ranges from one to the number of currently active backends. The function pg_stat_get_backend_idset provides a convenient way to generate one row for each active backend for invoking these functions. For example, to show the PIDs and current queries of all backends:

Returns the wait event type name if this backend is currently waiting, otherwise NULL. See for details.

Returns the wait event name if this backend is currently waiting, otherwise NULL. See through .

Chapter 19
track_activities
track_counts
track_functions
track_io_timing
SET
stats_temp_directory
Table 27.1
Table 27.2
Section 27.2.20
Table 27.1
Section 21.5
Table 27.12
track_functions
Table 27.30
Table 27.31
pg_stat_activity
pg_stat_replication
pg_stat_wal_receiver
pg_stat_subscription
pg_stat_ssl
pg_stat_gssapi
Section 27.4.1
Section 27.4.2
Section 27.4.3
Section 27.4.4
Section 27.4.5
pg_stat_archiver
pg_stat_bgwriter
pg_stat_database
pg_stat_database_conflicts
pg_stat_all_indexes
pg_statio_all_tables
pg_statio_all_indexes
pg_statio_all_sequences
pg_stat_user_functions
pg_stat_slru
log_hostname
Table 27.4
Table 27.5
Table 27.13
track_activities
track_activity_query_size
Table 27.5
Table 27.6
Table 27.7
Table 27.8
Table 27.9
Table 27.10
Table 27.11
Table 27.12
Table 27.13
log_hostname
hot_standby_feedback
pg_stat_database_conflicts
track_io_timing
track_io_timing
Table 27.4
Table 27.5
Table 27.13
pg_stat_all_tables
log_temp_files
log_temp_files