pg_stat_activity
pg_stat_replication
pg_stat_wal_receiver
pg_stat_subscription
pg_stat_ssl
pg_stat_gssapi
pg_stat_archiver
pg_stat_bgwriter
pg_stat_database
pg_stat_database_conflicts
pg_stat_all_tables
pg_stat_all_indexes
pg_statio_all_tables
pg_statio_all_indexes
pg_statio_all_sequences
pg_stat_user_functions
pg_stat_slru
PostgreSQL 통계 수집기 statistics collector는 서버 운영 상태에 대한 정보를 수집하거나 보고하기 위한 작업을 하는 백그라운드 시스템이다. 현재, 이 수집기는 테이블이나 인덱스의 디스크 블록 단위 또는 개별 로우 단위의 접근 회수를 수집할 수 있다. 또한 각 테이블에 저장 되어있는 총 로우 수를 수집하며, 각 테이블에 대한 vacuum 작업과, analyze 작업에 관한 정보들도 수집한다. 또한 사용자 정의 함수들의 호출 회수와, 그것들의 각각 총 수행 시간들도 수집한다.
또한 PostgreSQL에서는 현재 시스템에서 어떻게 운영 되고 있는지에 대한 동적 정보를 제공한다. 예를 들어 다른 서버 프로세스가 현재 어떤 작업을 하고 있는지, 어떤 클라이언트들이 접속해 있는지를 알 수 있다. 이 기능은 수집기 프로세스와 별개로 제공하고 있는 기능이다.
통계 자료를 수집한다는 것은 궁극적으로는 그 만큼의 추가 비용을 서버가
사용한다는 것을 의미한다. 그래서, 그 추가 비용을 얼마만큼 쓸 것인지에
대한 결정을 서버 환경변수로 제어할 수 있다. 다음은
postgresql.conf
환경설정 파일에서 사용할 수 있는
환경변수들이다. (이들에 대한 보다 자세한 부분은
19장을 참고하라.)
track_activities 설정값을 활성화하면 각각의 서버 프로세스들은 현재 자신이 하고 있는 작업을 프로세스 이름으로 보여준다.
track_counts 설정값을 활성화하면 테이블과 인덱스의 사용빈도를 통계 수집기가 수집한다.
track_functions 설정값을 활성화하면 사용자 정의 함수들의 사용빈도를 통계 수집기가 수집한다.
track_io_timing 설정값을 활성화면 블록 읽기 쓰기 회수를 통계 수집기가 수집한다.
일반적으로 이 환경설정 변수들은 postgresql.conf
에서
그 값을 지정하면, 이것은 모든 서버의 프로세스들을 대상으로 작동하게 된다.
하지만, SET 명령을 이용해서, 개별 세션 단위로
이 설정값을 변경할 수도 있다. (이 작업은 일반 사용자가 악의적으로
사용될 가능성이 있기 때문에, 슈퍼유저만 사용할 수 있다.)
통계 수집기가 만든 정보는 stats_temp_directory 설정값으로
지정한 디렉터리 (초기값은 pg_stat_tmp
) 안에 있는
임시파일로 저장되고, 그것을 여러 다른 PostgreSQL 프로세스들이 이용한다.
보다 나은 성능을 위해서는 이 파일의 I/O 성능을 높이기 위해 이 디렉터리를
메모리 기반 파일시스템에 두는 것도 좋은 방법이다. 이 통계 정보는 서버가
중지 될 때 pg_stat
디렉터리 쪽으로 복사하는
작업을 하기 때문에, 서버 중지, 재시작에도 자료를 그대로 유지할 수 있다.
위에서 설명한 시스템의 현재 상태는 표 27.1 뷰들을 통해서 살펴볼 수 있고, 그 외 수집된 통계 정보는 아래 표 27.2에서 나열한 여러 뷰를 통해서 살펴 볼 수 있다. 다른 방법으로는 27.2.20절에서 제공하는 여러 통계 정보 보기 함수들을 이용해서 필요한 뷰를 직접 만들어서 살펴 볼 수도 있을 것이다.
여기서 중요한 점은 살펴 보고 있는 수집된 통계 정보는 현재 데이터베이스의
정확한 현재 상태가 아니라는 점이다. 각 개별 프로세스들이 수집한 통계
정보는 그 프로세스가 아무런 작업을 하고 있지 않을 때, 수집기에게 전달한다.
즉 한 쿼리가 실행 되고 있다거나 트랜잭션 내에 있다면, 그 과정에
생긴 통계 정보들은 반영되지 않고 있다는 것이다. 또한 통계 수집기의
작업은 PGSTAT_STAT_INTERVAL
(기본값은 500ms 이다)
시간 간격으로 진행된다. 즉 이 만큼의 통계 정보 오차가 발생한다.
하지만, track_activities
관련 정보는 항상 즉시 반영 된다.
또 다른 중요한 점은 한 통계 정보는 해당 뷰나, 함수로 출력할 때,
한 트랜잭션 내에서는 항상 같은 값을 출력한다. 즉, 트랜젹션이 끝날 때까지
그 값을 유지한다. 이와 비슷하게 모든 세션들의 현재 쿼리에 대한 정보도
하나의 트랜잭션 내에서는 같은 정보를 출력한다. 이것은 버그가 아니라
특성이다. 이것은 한 트랜잭션 내에서 그 통계 정보가 일정하게 유지
되도록해서 여러 다른 쿼리들에서 그 값을 일관성 있게 한다. 하지만 이것을
원치 않는다면 각 쿼리들을 트랜잭션 단위로 분리해서 작업하면 된다. 다른
방법으로 pg_stat_clear_snapshot
() 함수를 사용해서,
현재 스냅숏으로 지정된 통계 정보를 버리고 새 통계 정보를 사용할 수도 있다.
하나의 트랜잭션 내에서 그 자신의 통계 정보 (아직까지 수집기 쪽으로 보내지
않은 현재 작업 내역에 대한 정보)들은 다음과 같은 뷰에서 제공한다:
pg_stat_xact_all_tables
,
pg_stat_xact_sys_tables
,
pg_stat_xact_user_tables
,
pg_stat_xact_user_functions
.
이들의 통계 정보는 현재 트랜잭션 내에서도 자신의 세션 작업에 대한 통계치를
반영 해서 다른 세션에서 수집된 정보와 자신의 세션에서 수집된 정보와 차이가 생길 수도 있다.
Some of the information in the dynamic statistics views shown in 표 27.1 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 21.5절) can see all the information about all sessions.
표 27.1. 동적 통계 정보 뷰들
뷰 이름 | 설명 |
---|---|
pg_stat_activity
|
세션 프로세스들의 정보를 각각 하나의 로우로 보여준다.
이 프로세스들은 현재 서버를 사용하고는 있는 - 클라이언트가
서버로 접속 해서 만들어진 하위 서버 프로세스들이며, 이들의
현재 상태, 실행 중인 쿼리들을 살펴 볼 수 있다.
자세한 내용은
pg_stat_activity 참조.
|
pg_stat_replication |
하나의 WAL 송신 프로세스에 대해서 하나의 로우로,
대기 서버 쪽으로 보내는 리플리케이션 작업에 대한 통계 정보를
보여준다. 자세한 내용은
pg_stat_replication 참조.
|
pg_stat_wal_receiver | Only one row, showing statistics about the WAL receiver from
that receiver's connected server.
See
pg_stat_wal_receiver for details.
|
pg_stat_subscription | At least one row per subscription, showing information about
the subscription workers.
See
pg_stat_subscription for details.
|
pg_stat_ssl | One row per connection (regular and replication), showing information about
SSL used on this connection.
See
pg_stat_ssl for details.
|
pg_stat_gssapi | One row per connection (regular and replication), showing information about
GSSAPI authentication and encryption used on this connection.
See
pg_stat_gssapi for details.
|
pg_stat_progress_analyze | One row for each backend (including autovacuum worker processes) running
ANALYZE , showing current progress.
See 27.4.1절.
|
pg_stat_progress_create_index | One row for each backend running CREATE INDEX or REINDEX , showing
current progress.
See 27.4.2절.
|
pg_stat_progress_vacuum | One row for each backend (including autovacuum worker processes) running
VACUUM , showing current progress.
See 27.4.3절.
|
pg_stat_progress_cluster | One row for each backend running
CLUSTER or VACUUM FULL , showing current progress.
See 27.4.4절.
|
pg_stat_progress_basebackup | One row for each WAL sender process streaming a base backup, showing current progress. See 27.4.5절. |
표 27.2. 수집된 통계 정보 뷰들
뷰 이름 | 설명 |
---|---|
pg_stat_archiver | WAL 아카이버 프로세스 작동에 대한
통계 정보를 하나의 로우로 보여준다.
자세한 사항은
pg_stat_archiver 참조.
|
pg_stat_bgwriter |
백그라운드 라이터 프로세스의 작업 통계 정보.
자세한 내용은
pg_stat_bgwriter 참조.
|
pg_stat_database | 한 로우에 하나씩 각 데이터베이스 전역 통계 정보를 보여
준다. 자세한 내용은
pg_stat_database 참조.
|
pg_stat_database_conflicts |
하나의 데이터베이스에서 그 전역에 걸쳐 발생한 대기 서버
복제 작업 충돌에 의한 쿼리 실행 실패 통계 정보를 각각 하나의
로우로 보여준다. 자세한 내용은
pg_stat_database_conflicts 참조.
|
pg_stat_all_tables |
현재 접속한 데이터베이스에 속한 모든 테이블에 대해서
한 로우씩 그 테이블 사용에 대한 통계 정보를 보여 준다.
자세한 내용은
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 | pg_stat_all_tables 내용과 비슷하지만,
여기서 반영된 숫자들은 현재 트랜잭션 내에서 반영된 정보만 보여준다.
(즉 pg_stat_all_tables 쪽으로 반영 되지
않은 트랜잭션 내의 정보다).
이 뷰에는 사용하는 실 로우 수, 사용하지 않는 로우(dead row) 수,
vacuum과 analyze 작업에 관계된 정보는 제공하지 않는다. |
pg_stat_xact_sys_tables | pg_stat_xact_all_tables 내용과 같은데,
시스템 테이블에 대해서만 보여준다. |
pg_stat_xact_user_tables | pg_stat_xact_all_tables 내용과 같은데,
시스템 테이블을 제외한 현재 사용자가 접근 할 수 있는 테이블에 대해서만 보여준다. |
pg_stat_all_indexes |
현재 접속한 데이터베이스에 속한 모든 인덱스에 대해서
한 로우씩 그 인덱스 사용에 대한 통계 정보를 보여 준다.
자세한 내용은
pg_stat_all_indexes 참조.
|
pg_stat_sys_indexes | pg_stat_all_indexes 내용과 같은데,
시스템 인덱스에 대해서만 보여준다.
|
pg_stat_user_indexes | pg_stat_all_indexes 내용과 같은데,
시스템 인덱스를 제외한 현재 사용자가 접근 할 수 있는
인덱스에 대해서만 보여준다.
|
pg_statio_all_tables |
현재 접속한 데이터베이스에 속한 모든 테이블에 대해서
한 로우씩 그 테이블에 대한 I/O 통계 정보를 보여 준다.
자세한 내용은
pg_statio_all_tables 참조.
|
pg_statio_sys_tables | pg_statio_all_tables 내용과 같은데,
시스템 테이블에 대해서만 보여준다.
|
pg_statio_user_tables | pg_statio_all_tables 내용과 같은데,
시스템 테이블을 제외한 현재 사용자가 접근 할 수 있는
테이블에 대해서만 보여준다.
|
pg_statio_all_indexes |
현재 접속한 데이터베이스에 속한 모든 인덱스에 대해서
한 로우씩 그 인덱스에 대한 I/O 통계 정보를 보여 준다.
자세한 내용은
pg_statio_all_indexes 참조.
|
pg_statio_sys_indexes | pg_statio_all_indexes 내용과 같은데,
시스템 인덱스에 대해서만 보여준다.
|
pg_statio_user_indexes | pg_statio_all_indexes 내용과 같은데,
시스템 인덱스를 제외한 현재 사용자가 접근 할 수 있는
인덱스에 대해서만 보여준다.
|
pg_statio_all_sequences |
현재 접속한 데이터베이스에 속한 모든 시퀀스에 대해서
한 로우씩 그 시퀀스에 대한 I/O 통계 정보를 보여 준다.
자세한 내용은
pg_statio_all_sequences 참조.
|
pg_statio_sys_sequences | pg_statio_all_sequences 내용과 같은데,
시스템 시퀀스에 대해서만 보여준다.
(현재 사용하고 있는 시스템 시퀀스가 없음으로 이 뷰는
항상 그 내용이 비어있을 것이다.)
|
pg_statio_user_sequences | pg_statio_all_sequences 내용과 같은데,
시스템 시퀀스를 제외한 현재 사용자가 접근 할 수 있는
시퀀스에 대해서만 보여준다.
|
pg_stat_user_functions |
현재 데이터베이스에 만들어진 사용자 정의 함수들의
실행에 대한 통계 정보를 보여준다.
자세한 내용은
pg_stat_user_functions 참조.
|
pg_stat_xact_user_functions | pg_stat_user_functions 내용과 비슷하지만,
여기서 반영된 숫자들은 현재 트랜잭션 내에서 반영된 정보만 보여준다,
(즉 pg_stat_user_functions 쪽으로 반영 되지
않은 트랜잭션 내의 정보다).
|
pg_stat_slru | One row per SLRU, showing statistics of operations. See
pg_stat_slru for details.
|
인덱스 별 통계 정보는 어느 인덱스가 많이 사용되며, 어떻게 영향을 미치는 지를 조사하는데 특히 유용하게 쓰인다.
pg_statio_
뷰들은 공유 버퍼의
사용 빈도를 파악하는데 가장 기본이 되는 것들이다.
이상적인 서버 운영 모습은
디스크 읽기 빈도 보다 공유 버퍼를 사용하는(buffer hit)
빈도가 훨씬 높아서,
대부분의 작업이 커널 호출 작업 없이 이루워 지도록
하는 것이다. 한편, PostgreSQL
에서는 단지 이 서버 기준으로 디스크를 읽은 것과
서버의 공유 버퍼를 사용한 것에 대한 정보만 제공 할
뿐이다. 즉, 커널의 I/O 캐시 사용 빈도에 대해서는
제공하지 않는다. 다시 말하면,
정말 디스크를 읽은 것인지, OS의 I/O 캐시를 사용한
것인지는 이 뷰를 통해서는 알 수 없다.
이런 세세한 부분까지 살펴 보려면,
OS 관련 도구들을 이용해야 할 것이다.
아래 부분부터는 모바일 호환성 작업으로 문서 구조가 너무 많이 바뀌어 기존 한글 문서와 통합이 거의 불가능했다. 틈틈이 옮기겠다 - 옮긴이
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.
표 27.3. pg_stat_activity
View
Column Type Description |
---|
OID of the database this backend is connected to |
Name of the database this backend is connected to |
Process ID of this backend |
Process ID of the parallel group leader, if this process is a
parallel query worker. |
OID of the user logged into this backend |
Name of the user logged into this backend |
Name of the application that is connected to this backend |
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. |
Host name of the connected client, as reported by a
reverse DNS lookup of |
TCP port number that the client is using for communication
with this backend, or |
Time when this process was started. For client backends, this is the time the client connected to the server. |
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
|
Time when the currently active query was started, or if
|
Time when the |
The type of event for which the backend is waiting, if any; otherwise NULL. See 표 27.4. |
Wait event name if backend is currently waiting, otherwise NULL. See 표 27.5 through 표 27.13. |
Current overall state of this backend. Possible values are:
|
Top-level transaction identifier of this backend, if any. |
The current backend's |
Text of this backend's most recent query. If
|
Type of current backend. Possible types are
|
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.
표 27.4. Wait Event Types
Wait Event Type | Description |
---|---|
Activity | 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 표 27.5.
|
BufferPin | 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 표 27.6. |
Client | 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 표 27.7.
|
Extension | The server process is waiting for some condition defined by an extension module. See 표 27.8. |
IO | The server process is waiting for an I/O operation to complete.
wait_event will identify the specific wait point;
see 표 27.9.
|
IPC | The server process is waiting for some interaction with
another server process. wait_event will
identify the specific wait point;
see 표 27.10.
|
Lock | 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 표 27.11.
|
LWLock | 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 표 27.12.
|
Timeout | The server process is waiting for a timeout
to expire. wait_event will identify the specific wait
point; see 표 27.13.
|
표 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. |
표 27.6. Wait Events of Type BufferPin
BufferPin Wait Event | Description |
---|---|
BufferPin | Waiting to acquire an exclusive pin on a buffer. |
표 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. |
표 27.8. Wait Events of Type Extension
Extension Wait Event | Description |
---|---|
Extension | Waiting in an extension. |
표 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. |
표 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. |
표 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. |
표 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. |
Extensions can add LWLock
types to the list shown in
표 27.12. 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.
표 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)
pg_stat_replication
The pg_stat_replication
view will contain one row
per WAL sender process, showing statistics about replication to that
sender's connected standby server. Only directly connected standbys are
listed; no information is available about downstream standby servers.
표 27.14. pg_stat_replication
View
Column Type Description |
---|
Process ID of a WAL sender process |
OID of the user logged into this WAL sender process |
Name of the user logged into this WAL sender process |
Name of the application that is connected to this WAL sender |
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. |
Host name of the connected client, as reported by a
reverse DNS lookup of |
TCP port number that the client is using for communication
with this WAL sender, or |
Time when this process was started, i.e., when the client connected to this WAL sender |
This standby's |
Current WAL sender state. Possible values are:
|
Last write-ahead log location sent on this connection |
Last write-ahead log location written to disk by this standby server |
Last write-ahead log location flushed to disk by this standby server |
Last write-ahead log location replayed into the database on this standby server |
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
|
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
|
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
|
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. |
Synchronous state of this standby server. Possible values are:
|
Send time of last reply message received from standby server |
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.
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.
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.
표 27.15. pg_stat_wal_receiver
View
Column Type Description |
---|
Process ID of the WAL receiver process |
Activity status of the WAL receiver process |
First write-ahead log location used when WAL receiver is started |
First timeline number used when WAL receiver is started |
Last write-ahead log location already received and written to disk, but not flushed. This should not be used for data integrity checks. |
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 |
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 |
Send time of last message received from origin WAL sender |
Receipt time of last message received from origin WAL sender |
Last write-ahead log location reported to origin WAL sender |
Time of last write-ahead log location reported to origin WAL sender |
Replication slot name used by this WAL receiver |
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 |
Port number of the PostgreSQL instance this WAL receiver is connected to. |
Connection string used by this WAL receiver, with security-sensitive fields obfuscated. |
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.
표 27.16. pg_stat_subscription
View
Column Type Description |
---|
OID of the subscription |
Name of the subscription |
Process ID of the subscription worker process |
OID of the relation that the worker is synchronizing; null for the main apply worker |
Last write-ahead log location received, the initial value of this field being 0 |
Send time of last message received from origin WAL sender |
Receipt time of last message received from origin WAL sender |
Last write-ahead log location reported to origin WAL sender |
Time of last write-ahead log location reported to origin WAL sender |
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.
표 27.17. pg_stat_ssl
View
Column Type Description |
---|
Process ID of a backend or WAL sender process |
True if SSL is used on this connection |
Version of SSL in use, or NULL if SSL is not in use on this connection |
Name of SSL cipher in use, or NULL if SSL is not in use on this connection |
Number of bits in the encryption algorithm used, or NULL if SSL is not used on this connection |
True if SSL compression is in use, false if not, or NULL if SSL is not in use on this connection |
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 |
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). |
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 |
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.
표 27.18. pg_stat_gssapi
View
Column Type Description |
---|
Process ID of a backend |
True if GSSAPI authentication was used for this connection |
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
|
True if GSSAPI encryption is in use on this connection |
pg_stat_archiver
The pg_stat_archiver
view will always have a
single row, containing data about the archiver process of the cluster.
표 27.19. pg_stat_archiver
View
Column Type Description |
---|
Number of WAL files that have been successfully archived |
Name of the last WAL file successfully archived |
Time of the last successful archive operation |
Number of failed attempts for archiving WAL files |
Name of the WAL file of the last failed archival operation |
Time of the last failed archival operation |
Time at which these statistics were last reset |
pg_stat_bgwriter
The pg_stat_bgwriter
view will always have a
single row, containing global data for the cluster.
표 27.20. pg_stat_bgwriter
View
Column Type Description |
---|
Number of scheduled checkpoints that have been performed |
Number of requested checkpoints that have been performed |
Total amount of time that has been spent in the portion of checkpoint processing where files are written to disk, in milliseconds |
Total amount of time that has been spent in the portion of checkpoint processing where files are synchronized to disk, in milliseconds |
Number of buffers written during checkpoints |
Number of buffers written by the background writer |
Number of times the background writer stopped a cleaning scan because it had written too many buffers |
Number of buffers written directly by a backend |
Number of times a backend had to execute its own
|
Number of buffers allocated |
Time at which these statistics were last reset |
pg_stat_database
The pg_stat_database
view will contain one row
for each database in the cluster, plus one for shared objects, showing
database-wide statistics.
표 27.21. pg_stat_database
View
Column Type Description |
---|
OID of this database, or 0 for objects belonging to a shared relation |
Name of this database, or |
Number of backends currently connected to this database, or
|
Number of transactions in this database that have been committed |
Number of transactions in this database that have been rolled back |
Number of disk blocks read in this database |
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) |
Number of rows returned by queries in this database |
Number of rows fetched by queries in this database |
Number of rows inserted by queries in this database |
Number of rows updated by queries in this database |
Number of rows deleted by queries in this database |
Number of queries canceled due to conflicts with recovery
in this database. (Conflicts occur only on standby servers; see
|
Number of temporary files created by queries in this database. All temporary files are counted, regardless of why the temporary file was created (e.g., sorting or hashing), and regardless of the log_temp_files setting. |
Total amount of data written to temporary files by queries in this database. All temporary files are counted, regardless of why the temporary file was created, and regardless of the log_temp_files setting. |
Number of deadlocks detected in this database |
Number of data page checksum failures detected in this database (or on a shared object), or NULL if data checksums are not enabled. |
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. |
Time spent reading data file blocks by backends in this database, in milliseconds (if track_io_timing is enabled, otherwise zero) |
Time spent writing data file blocks by backends in this database, in milliseconds (if track_io_timing is enabled, otherwise zero) |
Time at which these statistics were last reset |
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.
표 27.22. pg_stat_database_conflicts
View
Column Type Description |
---|
OID of a database |
Name of this database |
Number of queries in this database that have been canceled due to dropped tablespaces |
Number of queries in this database that have been canceled due to lock timeouts |
Number of queries in this database that have been canceled due to old snapshots |
Number of queries in this database that have been canceled due to pinned buffers |
Number of queries in this database that have been canceled due to deadlocks |
pg_stat_all_tables
The pg_stat_all_tables
view will contain
one row for each table in the current database (including TOAST
tables), showing statistics about accesses to that specific table. The
pg_stat_user_tables
and
pg_stat_sys_tables
views
contain the same information,
but filtered to only show user and system tables respectively.
표 27.23. pg_stat_all_tables
View
Column Type Description |
---|
OID of a table |
Name of the schema that this table is in |
Name of this table |
Number of sequential scans initiated on this table |
Number of live rows fetched by sequential scans |
Number of index scans initiated on this table |
Number of live rows fetched by index scans |
Number of rows inserted |
Number of rows updated (includes HOT updated rows) |
Number of rows deleted |
Number of rows HOT updated (i.e., with no separate index update required) |
Estimated number of live rows |
Estimated number of dead rows |
Estimated number of rows modified since this table was last analyzed |
Estimated number of rows inserted since this table was last vacuumed |
Last time at which this table was manually vacuumed
(not counting |
Last time at which this table was vacuumed by the autovacuum daemon |
Last time at which this table was manually analyzed |
Last time at which this table was analyzed by the autovacuum daemon |
Number of times this table has been manually vacuumed
(not counting |
Number of times this table has been vacuumed by the autovacuum daemon |
Number of times this table has been manually analyzed |
Number of times this table has been analyzed by the autovacuum daemon |
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.
표 27.24. pg_stat_all_indexes
View
Column Type Description |
---|
OID of the table for this index |
OID of this index |
Name of the schema this index is in |
Name of the table for this index |
Name of this index |
Number of index scans initiated on this index |
Number of index entries returned by scans on this index |
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.
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.
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.
표 27.25. pg_statio_all_tables
View
Column Type Description |
---|
OID of a table |
Name of the schema that this table is in |
Name of this table |
Number of disk blocks read from this table |
Number of buffer hits in this table |
Number of disk blocks read from all indexes on this table |
Number of buffer hits in all indexes on this table |
Number of disk blocks read from this table's TOAST table (if any) |
Number of buffer hits in this table's TOAST table (if any) |
Number of disk blocks read from this table's TOAST table indexes (if any) |
Number of buffer hits in this table's TOAST table indexes (if any) |
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.
표 27.26. pg_statio_all_indexes
View
Column Type Description |
---|
OID of the table for this index |
OID of this index |
Name of the schema this index is in |
Name of the table for this index |
Name of this index |
Number of disk blocks read from this index |
Number of buffer hits in this index |
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.
표 27.27. pg_statio_all_sequences
View
Column Type Description |
---|
OID of a sequence |
Name of the schema this sequence is in |
Name of this sequence |
Number of disk blocks read from this sequence |
Number of buffer hits in this sequence |
pg_stat_user_functions
The pg_stat_user_functions
view will contain
one row for each tracked function, showing statistics about executions of
that function. The track_functions parameter
controls exactly which functions are tracked.
표 27.28. pg_stat_user_functions
View
Column Type Description |
---|
OID of a function |
Name of the schema this function is in |
Name of this function |
Number of times this function has been called |
Total time spent in this function and all other functions called by it, in milliseconds |
Total time spent in this function itself, not including other functions called by it, in milliseconds |
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.
표 27.29. pg_stat_slru
View
Column Type Description |
---|
Name of the SLRU |
Number of blocks zeroed during initializations |
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) |
Number of disk blocks read for this SLRU |
Number of disk blocks written for this SLRU |
Number of blocks checked for existence for this SLRU |
Number of flushes of dirty data for this SLRU |
Number of truncates for this SLRU |
Time at which these statistics were last reset |
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.
Additional functions related to statistics collection are listed in 표 27.30.
표 27.30. Additional Statistics Functions
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 표 27.31.
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:
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;
표 27.31. Per-Backend Statistics Functions
Function Description |
---|
Returns the set of currently active backend ID numbers (from 1 to the number of active backends). |
Returns the text of this backend's most recent query. |
Returns the time when the backend's most recent query was started. |
Returns the IP address of the client connected to this backend. |
Returns the TCP port number that the client is using for communication. |
Returns the OID of the database this backend is connected to. |
Returns the process ID of this backend. |
Returns the time when this process was started. |
Returns the OID of the user logged into this backend. |
Returns the wait event type name if this backend is currently waiting, otherwise NULL. See 표 27.4 for details. |
Returns the wait event name if this backend is currently waiting, otherwise NULL. See 표 27.5 through 표 27.13. |
Returns the time when the backend's current transaction was started. |