mirror of
https://github.com/postgres/postgres.git
synced 2025-07-26 01:22:12 +03:00
Restructure autovacuum in two processes: a dummy process, which runs
continuously, and requests vacuum runs of "autovacuum workers" to postmaster. The workers do the actual vacuum work. This allows for future improvements, like allowing multiple autovacuum jobs running in parallel. For now, the code keeps the original behavior of having a single autovac process at any time by sleeping until the previous worker has finished.
This commit is contained in:
@ -13,7 +13,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/commands/vacuum.c,v 1.345 2007/02/05 04:22:18 tgl Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/commands/vacuum.c,v 1.346 2007/02/15 23:23:22 alvherre Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -303,7 +303,7 @@ vacuum(VacuumStmt *vacstmt, List *relids)
|
||||
* Send info about dead objects to the statistics collector, unless we are
|
||||
* in autovacuum --- autovacuum.c does this for itself.
|
||||
*/
|
||||
if (vacstmt->vacuum && !IsAutoVacuumProcess())
|
||||
if (vacstmt->vacuum && !IsAutoVacuumWorkerProcess())
|
||||
pgstat_vacuum_tabstat();
|
||||
|
||||
/*
|
||||
@ -472,7 +472,7 @@ vacuum(VacuumStmt *vacstmt, List *relids)
|
||||
ActiveSnapshot = CopySnapshot(GetTransactionSnapshot());
|
||||
}
|
||||
|
||||
if (vacstmt->vacuum && !IsAutoVacuumProcess())
|
||||
if (vacstmt->vacuum && !IsAutoVacuumWorkerProcess())
|
||||
{
|
||||
/*
|
||||
* Update pg_database.datfrozenxid, and truncate pg_clog if possible.
|
||||
|
Reference in New Issue
Block a user