mirror of
https://github.com/postgres/postgres.git
synced 2025-04-25 21:42:33 +03:00
Raise maximum value of several timeout parameters
The maximum value of deadlock_timeout, max_standby_archive_delay, max_standby_streaming_delay, log_min_duration_statement, and log_autovacuum_min_duration was INT_MAX/1000 milliseconds, which is about 35min, which is too short for some practical uses. Raise the maximum value to INT_MAX; the code that uses the parameters already supports that just fine.
This commit is contained in:
parent
84abea76f6
commit
8c0a5eb78a
@ -1436,7 +1436,7 @@ static struct config_int ConfigureNamesInt[] =
|
||||
GUC_UNIT_MS
|
||||
},
|
||||
&DeadlockTimeout,
|
||||
1000, 1, INT_MAX / 1000, NULL, NULL
|
||||
1000, 1, INT_MAX, NULL, NULL
|
||||
},
|
||||
|
||||
{
|
||||
@ -1446,7 +1446,7 @@ static struct config_int ConfigureNamesInt[] =
|
||||
GUC_UNIT_MS
|
||||
},
|
||||
&max_standby_archive_delay,
|
||||
30 * 1000, -1, INT_MAX / 1000, NULL, NULL
|
||||
30 * 1000, -1, INT_MAX, NULL, NULL
|
||||
},
|
||||
|
||||
{
|
||||
@ -1456,7 +1456,7 @@ static struct config_int ConfigureNamesInt[] =
|
||||
GUC_UNIT_MS
|
||||
},
|
||||
&max_standby_streaming_delay,
|
||||
30 * 1000, -1, INT_MAX / 1000, NULL, NULL
|
||||
30 * 1000, -1, INT_MAX, NULL, NULL
|
||||
},
|
||||
|
||||
{
|
||||
@ -1894,7 +1894,7 @@ static struct config_int ConfigureNamesInt[] =
|
||||
GUC_UNIT_MS
|
||||
},
|
||||
&log_min_duration_statement,
|
||||
-1, -1, INT_MAX / 1000, NULL, NULL
|
||||
-1, -1, INT_MAX, NULL, NULL
|
||||
},
|
||||
|
||||
{
|
||||
@ -1905,7 +1905,7 @@ static struct config_int ConfigureNamesInt[] =
|
||||
GUC_UNIT_MS
|
||||
},
|
||||
&Log_autovacuum_min_duration,
|
||||
-1, -1, INT_MAX / 1000, NULL, NULL
|
||||
-1, -1, INT_MAX, NULL, NULL
|
||||
},
|
||||
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user