From 0307c09cf5ef1056e74d9e3b3e9682410aa25bc6 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Fri, 6 Aug 2004 04:15:09 +0000 Subject: Rename vacuum_cost_naptime to vacuum_cost_delay, with agreement from Jan. --- doc/src/sgml/runtime.sgml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'doc/src') diff --git a/doc/src/sgml/runtime.sgml b/doc/src/sgml/runtime.sgml index 9f569712b08..c97e3878619 100644 --- a/doc/src/sgml/runtime.sgml +++ b/doc/src/sgml/runtime.sgml @@ -1,5 +1,5 @@ @@ -1074,7 +1074,7 @@ SET ENABLE_SEQSCAN TO OFF; cost reaches a limit (specified by vacuum_cost_limit), the process performing the operation will sleep for a while (specified by - vacuum_cost_naptime). Then it will reset the + vacuum_cost_delay). Then it will reset the counter and continue execution. @@ -1092,7 +1092,7 @@ SET ENABLE_SEQSCAN TO OFF; This feature is disabled by default. To enable it, set the - vacuum_cost_naptime variable to a nonzero + vacuum_cost_delay variable to a nonzero value. @@ -1143,8 +1143,8 @@ SET ENABLE_SEQSCAN TO OFF; - - vacuum_cost_naptime (integer) + + vacuum_cost_delay (integer) The length of time, in milliseconds, that the process will nap @@ -1153,7 +1153,7 @@ SET ENABLE_SEQSCAN TO OFF; delay feature. Positive values enable cost-based vacuuming. Note however that on many systems, the effective resolution of sleep delays is 10 milliseconds; setting - vacuum_cost_naptime to a value that is + vacuum_cost_delay to a value that is not a multiple of 10 may have the same results as setting it to the next higher multiple of 10. @@ -1168,10 +1168,10 @@ SET ENABLE_SEQSCAN TO OFF; delays do not occur during such operations. Therefore it is possible that the cost accumulates far higher than the specified limit. To avoid uselessly long delays in such cases, the actual - naptime is calculated as vacuum_cost_naptime * + delay is calculated as vacuum_cost_delay * accumulated_balance / vacuum_cost_limit with a maximum of - vacuum_cost_naptime * 4. + vacuum_cost_delay * 4. -- cgit v1.2.3