此条目涉及一个 PostgreSQL 功能、应用程序/实用程序、网站或其他主题,该主题不再可用/维护。
pg_autovacuum
是一个存储每个表自动清理设置的系统目录表。
pg_autovacuum
在PostgreSQL 8.1中添加,取代了同名的contrib 模块,并在PostgreSQL 8.4中移除,当时每个表的自动清理设置迁移到了relopts。
按 PostgreSQL 版本定义
pg_autovacuum (PostgreSQL 8.3)
Table "pg_catalog.pg_autovacuum" Column | Type | Modifiers ------------------+---------+----------- vacrelid | oid | not null enabled | boolean | not null vac_base_thresh | integer | not null vac_scale_factor | real | not null anl_base_thresh | integer | not null anl_scale_factor | real | not null vac_cost_delay | integer | not null vac_cost_limit | integer | not null freeze_min_age | integer | not null freeze_max_age | integer | not null Indexes: "pg_autovacuum_vacrelid_index" UNIQUE, btree (vacrelid)
文档: pg_autovacuum
pg_autovacuum (PostgreSQL 8.2)
Table "pg_catalog.pg_autovacuum" Column | Type | Modifiers ------------------+---------+----------- vacrelid | oid | not null enabled | boolean | not null vac_base_thresh | integer | not null vac_scale_factor | real | not null anl_base_thresh | integer | not null anl_scale_factor | real | not null vac_cost_delay | integer | not null vac_cost_limit | integer | not null freeze_min_age | integer | not null freeze_max_age | integer | not null Indexes: "pg_autovacuum_vacrelid_index" UNIQUE, btree (vacrelid)
文档: pg_autovacuum
更改历史记录
- PostgreSQL 8.4
- 移除 (提交 834a6da4)
- PostgreSQL 8.1
- 添加 (提交 29094193)
参考文献
- PostgreSQL 8.3 文档: pg_autovacuum
另请参阅
autovacuum