Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
2986aa6a
Commit
2986aa6a
authored
Nov 15, 2002
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add checkpoint_warning to warn of excessive checkpoints caused by too
few WAL files.
parent
3779f7fd
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
52 additions
and
5 deletions
+52
-5
doc/src/sgml/runtime.sgml
doc/src/sgml/runtime.sgml
+13
-1
doc/src/sgml/wal.sgml
doc/src/sgml/wal.sgml
+11
-1
src/backend/postmaster/postmaster.c
src/backend/postmaster/postmaster.c
+19
-1
src/backend/utils/misc/guc.c
src/backend/utils/misc/guc.c
+6
-1
src/backend/utils/misc/postgresql.conf.sample
src/backend/utils/misc/postgresql.conf.sample
+1
-0
src/include/access/xlog.h
src/include/access/xlog.h
+2
-1
No files found.
doc/src/sgml/runtime.sgml
View file @
2986aa6a
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.15
4 2002/11/15 01:57:25
momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.15
5 2002/11/15 02:44:50
momjian Exp $
-->
-->
<Chapter Id="runtime">
<Chapter Id="runtime">
...
@@ -2081,6 +2081,18 @@ dynamic_library_path = '/usr/local/lib/postgresql:/home/my_project/lib:$libdir'
...
@@ -2081,6 +2081,18 @@ dynamic_library_path = '/usr/local/lib/postgresql:/home/my_project/lib:$libdir'
</listitem>
</listitem>
</varlistentry>
</varlistentry>
<variablelist>
<varlistentry>
<term><varname>CHECKPOINT_WARNING</varname> (<type>integer</type>)</term>
<listitem>
<para>
Send a message to the server logs if checkpoints caused by the
filling of checkpoint segment files happens more frequently than
this number of seconds. Zero turns off the warning.
</para>
</listitem>
</varlistentry>
<varlistentry>
<varlistentry>
<term><varname>COMMIT_DELAY</varname> (<type>integer</type>)</term>
<term><varname>COMMIT_DELAY</varname> (<type>integer</type>)</term>
<listitem>
<listitem>
...
...
doc/src/sgml/wal.sgml
View file @
2986aa6a
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/wal.sgml,v 1.2
1 2002/11/02 22:23:01 tgl
Exp $ -->
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/wal.sgml,v 1.2
2 2002/11/15 02:44:54 momjian
Exp $ -->
<chapter id="wal">
<chapter id="wal">
<title>Write-Ahead Logging (<acronym>WAL</acronym>)</title>
<title>Write-Ahead Logging (<acronym>WAL</acronym>)</title>
...
@@ -300,6 +300,16 @@
...
@@ -300,6 +300,16 @@
correspondingly increase shared memory usage.
correspondingly increase shared memory usage.
</para>
</para>
<para>
Checkpoints are fairly expensive because they force all dirty kernel
buffers to disk using the operating system <literal>sync()</> call.
Busy servers may fill checkpoint segment files too quickly,
causing excessive checkpointing. If such forced checkpoints happen
more frequently than <varname>CHECKPOINT_WARNING</varname> seconds,
a message, will be output to the server logs recommending increasing
<varname>CHECKPOINT_SEGMENTS</varname>.
</para>
<para>
<para>
The <varname>COMMIT_DELAY</varname> parameter defines for how many
The <varname>COMMIT_DELAY</varname> parameter defines for how many
microseconds the backend will sleep after writing a commit
microseconds the backend will sleep after writing a commit
...
...
src/backend/postmaster/postmaster.c
View file @
2986aa6a
...
@@ -37,7 +37,7 @@
...
@@ -37,7 +37,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.29
6 2002/11/15 01:57:26
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.29
7 2002/11/15 02:44:55
momjian Exp $
*
*
* NOTES
* NOTES
*
*
...
@@ -198,6 +198,8 @@ bool SilentMode = false; /* silent mode (-S) */
...
@@ -198,6 +198,8 @@ bool SilentMode = false; /* silent mode (-S) */
int
PreAuthDelay
=
0
;
int
PreAuthDelay
=
0
;
int
AuthenticationTimeout
=
60
;
int
AuthenticationTimeout
=
60
;
int
CheckPointTimeout
=
300
;
int
CheckPointTimeout
=
300
;
int
CheckPointWarning
=
30
;
time_t
LastSignalledCheckpoint
=
0
;
bool
log_hostname
;
/* for ps display */
bool
log_hostname
;
/* for ps display */
bool
LogSourcePort
;
bool
LogSourcePort
;
...
@@ -2329,6 +2331,22 @@ sigusr1_handler(SIGNAL_ARGS)
...
@@ -2329,6 +2331,22 @@ sigusr1_handler(SIGNAL_ARGS)
if
(
CheckPostmasterSignal
(
PMSIGNAL_DO_CHECKPOINT
))
if
(
CheckPostmasterSignal
(
PMSIGNAL_DO_CHECKPOINT
))
{
{
if
(
CheckPointWarning
!=
0
)
{
/*
* This only times checkpoints forced by running out of
* segment files. Other checkpoints could reduce
* the frequency of forced checkpoints.
*/
time_t
now
=
time
(
NULL
);
if
(
now
-
LastSignalledCheckpoint
<
CheckPointWarning
)
elog
(
LOG
,
"Checkpoint segments are being created too frequently (%d secs)
\n
Consider increasing CHECKPOINT_SEGMENTS"
,
now
-
LastSignalledCheckpoint
);
LastSignalledCheckpoint
=
now
;
}
/*
/*
* Request to schedule a checkpoint
* Request to schedule a checkpoint
*
*
...
...
src/backend/utils/misc/guc.c
View file @
2986aa6a
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
* command, configuration file, and command line options.
* command, configuration file, and command line options.
* See src/backend/utils/misc/README for more information.
* See src/backend/utils/misc/README for more information.
*
*
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.10
5 2002/11/15 01:57:2
7 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.10
6 2002/11/15 02:44:5
7 momjian Exp $
*
*
* Copyright 2000 by PostgreSQL Global Development Group
* Copyright 2000 by PostgreSQL Global Development Group
* Written by Peter Eisentraut <peter_e@gmx.net>.
* Written by Peter Eisentraut <peter_e@gmx.net>.
...
@@ -660,6 +660,11 @@ static struct config_int
...
@@ -660,6 +660,11 @@ static struct config_int
300
,
30
,
3600
,
NULL
,
NULL
300
,
30
,
3600
,
NULL
,
NULL
},
},
{
{
"checkpoint_warning"
,
PGC_SIGHUP
},
&
CheckPointWarning
,
30
,
0
,
INT_MAX
,
NULL
,
NULL
},
{
{
{
"wal_buffers"
,
PGC_POSTMASTER
},
&
XLOGbuffers
,
{
"wal_buffers"
,
PGC_POSTMASTER
},
&
XLOGbuffers
,
8
,
4
,
INT_MAX
,
NULL
,
NULL
8
,
4
,
INT_MAX
,
NULL
,
NULL
...
...
src/backend/utils/misc/postgresql.conf.sample
View file @
2986aa6a
...
@@ -65,6 +65,7 @@
...
@@ -65,6 +65,7 @@
#
#
#checkpoint_segments = 3 # in logfile segments, min 1, 16MB each
#checkpoint_segments = 3 # in logfile segments, min 1, 16MB each
#checkpoint_timeout = 300 # range 30-3600, in seconds
#checkpoint_timeout = 300 # range 30-3600, in seconds
#checkpoint_warning = 30 # 0 is off, in seconds
#
#
#commit_delay = 0 # range 0-100000, in microseconds
#commit_delay = 0 # range 0-100000, in microseconds
#commit_siblings = 5 # range 1-1000
#commit_siblings = 5 # range 1-1000
...
...
src/include/access/xlog.h
View file @
2986aa6a
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* $Id: xlog.h,v 1.
39 2002/09/26 22:58:34 tgl
Exp $
* $Id: xlog.h,v 1.
40 2002/11/15 02:44:57 momjian
Exp $
*/
*/
#ifndef XLOG_H
#ifndef XLOG_H
#define XLOG_H
#define XLOG_H
...
@@ -184,6 +184,7 @@ extern XLogRecPtr ProcLastRecEnd;
...
@@ -184,6 +184,7 @@ extern XLogRecPtr ProcLastRecEnd;
/* these variables are GUC parameters related to XLOG */
/* these variables are GUC parameters related to XLOG */
extern
int
CheckPointSegments
;
extern
int
CheckPointSegments
;
extern
int
CheckPointWarning
;
extern
int
XLOGbuffers
;
extern
int
XLOGbuffers
;
extern
int
XLOG_DEBUG
;
extern
int
XLOG_DEBUG
;
extern
char
*
XLOG_sync_method
;
extern
char
*
XLOG_sync_method
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment