diff options
Diffstat (limited to 'src/backend/utils/misc/guc.c')
-rw-r--r-- | src/backend/utils/misc/guc.c | 47 |
1 files changed, 46 insertions, 1 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index eb79ea2c627..7fe7c33cf8a 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -10,7 +10,7 @@ * Written by Peter Eisentraut <peter_e@gmx.net>. * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.185 2004/02/04 01:24:53 wieck Exp $ + * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.186 2004/02/06 19:36:18 wieck Exp $ * *-------------------------------------------------------------------- */ @@ -1048,6 +1048,51 @@ static struct config_int ConfigureNamesInt[] = }, { + {"vacuum_cost_page_hit", PGC_USERSET, RESOURCES, + gettext_noop("Vacuum cost for a page found in the buffer cache."), + NULL + }, + &VacuumCostPageHit, + 1, 0, 10000, NULL, NULL + }, + + { + {"vacuum_cost_page_miss", PGC_USERSET, RESOURCES, + gettext_noop("Vacuum cost for a page not found in the buffer cache."), + NULL + }, + &VacuumCostPageMiss, + 10, 0, 10000, NULL, NULL + }, + + { + {"vacuum_cost_page_dirty", PGC_USERSET, RESOURCES, + gettext_noop("Vacuum cost for a page dirtied by vacuum."), + NULL + }, + &VacuumCostPageDirty, + 20, 0, 10000, NULL, NULL + }, + + { + {"vacuum_cost_limit", PGC_USERSET, RESOURCES, + gettext_noop("Vacuum cost amount available before napping."), + NULL + }, + &VacuumCostLimit, + 200, 1, 10000, NULL, NULL + }, + + { + {"vacuum_cost_naptime", PGC_USERSET, RESOURCES, + gettext_noop("Vacuum cost naptime in milliseconds."), + NULL + }, + &VacuumCostNaptime, + 0, 0, 1000, NULL, NULL + }, + + { {"max_files_per_process", PGC_BACKEND, RESOURCES_KERNEL, gettext_noop("Sets the maximum number of simultaneously open files for each server process."), NULL |