mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-12 18:34:36 +08:00
Vacuum delay activated by default.
Jan
This commit is contained in:
parent
8ac6de38f1
commit
ddb25082f3
@ -10,7 +10,7 @@
|
||||
* Written by Peter Eisentraut <peter_e@gmx.net>.
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.227 2004/08/06 04:15:09 momjian Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.228 2004/08/07 03:08:44 wieck Exp $
|
||||
*
|
||||
*--------------------------------------------------------------------
|
||||
*/
|
||||
@ -1046,7 +1046,7 @@ static struct config_int ConfigureNamesInt[] =
|
||||
NULL
|
||||
},
|
||||
&VacuumCostDelay,
|
||||
0, 0, 1000, NULL, NULL
|
||||
50, 0, 1000, NULL, NULL
|
||||
},
|
||||
|
||||
{
|
||||
|
@ -74,7 +74,7 @@
|
||||
#vacuum_cost_page_miss = 10 # 0-10000 credits
|
||||
#vacuum_cost_page_dirty = 20 # 0-10000 credits
|
||||
#vacuum_cost_limit = 200 # 0-10000 credits
|
||||
#vacuum_cost_delay = 0 # 0-1000 milliseconds
|
||||
#vacuum_cost_delay = 50 # 0-1000 milliseconds
|
||||
|
||||
# - Background writer -
|
||||
#bgwriter_delay = 200 # 10-5000 milliseconds
|
||||
|
Loading…
Reference in New Issue
Block a user