Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitc3c0d7b

Browse files
Raise max setting of checkpoint_timeout to 1d
Previously checkpoint_timeout was capped at 3600sNew max setting is 86400s = 24h = 1dDiscussion: 32558.1454471895@sss.pgh.pa.us
1 parent5280309 commitc3c0d7b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

‎doc/src/sgml/config.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2614,7 +2614,7 @@ include_dir 'conf.d'
26142614
<listitem>
26152615
<para>
26162616
Maximum time between automatic WAL checkpoints, in seconds.
2617-
The valid range is between 30 seconds and onehour.
2617+
The valid range is between 30 seconds and oneday.
26182618
The default is five minutes (<literal>5min</>).
26192619
Increasing this parameter can increase the amount of time needed
26202620
for crash recovery.

‎src/backend/utils/misc/guc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2250,7 +2250,7 @@ static struct config_int ConfigureNamesInt[] =
22502250
GUC_UNIT_S
22512251
},
22522252
&CheckPointTimeout,
2253-
300,30,3600,
2253+
300,30,86400,
22542254
NULL,NULL,NULL
22552255
},
22562256

‎src/backend/utils/misc/postgresql.conf.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@
203203

204204
# - Checkpoints -
205205

206-
#checkpoint_timeout = 5min# range 30s-1h
206+
#checkpoint_timeout = 5min# range 30s-1d
207207
#max_wal_size = 1GB
208208
#min_wal_size = 80MB
209209
#checkpoint_completion_target = 0.5# checkpoint target duration, 0.0 - 1.0

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp