PostgreSQL 9.3
Tentukan apakah Autovacuum sedang Berjalan
Ini khusus untuk Postgres 9.3 di UNIX. Untuk Windows, lihat pertanyaan ini .
Tabel Sistem Postgres Kueri
SELECT
schemaname, relname,
last_vacuum, last_autovacuum,
vacuum_count, autovacuum_count -- not available on 9.0 and earlier
FROM pg_stat_user_tables;
Status Proses Sistem 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
Jika Anda ingin tahu lebih banyak tentang autovacuum aktivitas, atur log_min_messages
ke DEBUG1..DEBUG5
. Perintah SQL VACUUM VERBOSE
akan menampilkan informasi pada level log INFO
.
Mengenai Daemon Autovacuum, dokumen Posgres menyatakan:
Lihat Juga:
- http://www.postgresql.org/docs/ current/static/routine-vacuuming.html
- http://www.postgresql.org/ docs/current/static/runtime-config-autovacuum.html