PostgreSQL 9.3
Xác định xem Autovacuum có đang chạy hay không
Điều này dành riêng cho Postgres 9.3 trên UNIX. Đối với Windows, hãy xem câu hỏi này .
Bảng hệ thống Postgres truy vấn
SELECT
schemaname, relname,
last_vacuum, last_autovacuum,
vacuum_count, autovacuum_count -- not available on 9.0 and earlier
FROM pg_stat_user_tables;
Trạng thái quy trình hệ thống Grep
$ ps -axww | grep autovacuum
24352 ?? Ss 1:05.33 postgres: autovacuum launcher process (postgres)
Grep Postgres Log
# grep autovacuum /var/log/postgresql
LOG: autovacuum launcher started
LOG: autovacuum launcher shutting down
Nếu bạn muốn biết thêm về autovacuum hoạt động, đặt log_min_messages
thành DEBUG1..DEBUG5
. Lệnh SQL VACUUM VERBOSE
sẽ xuất thông tin ở cấp nhật ký INFO
.
Về Autovacuum Daemon, tài liệu Posgres cho biết:
Xem thêm:
- http://www.postgresql.org/docs/ current / static / routine -uuming.html
- http://www.postgresql.org/ docs / current / static / runtime-config-autovacuum.html