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
84725aa5
Commit
84725aa5
authored
Feb 02, 2013
by
Simon Riggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mark vacuum_defer_cleanup_age as PGC_POSTMASTER.
Following bug analysis of #7819 by Tom Lane
parent
e8ae0196
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
doc/src/sgml/config.sgml
doc/src/sgml/config.sgml
+1
-2
src/backend/utils/misc/guc.c
src/backend/utils/misc/guc.c
+6
-1
No files found.
doc/src/sgml/config.sgml
View file @
84725aa5
...
...
@@ -2356,8 +2356,7 @@ include 'filename'
is measured in terms of number of write transactions occurring on the
primary server, it is difficult to predict just how much additional
grace time will be made available to standby queries.
This parameter can only be set in the <filename>postgresql.conf</>
file or on the server command line.
This parameter can only be set at server start.
</para>
<para>
You should also consider setting <varname>hot_standby_feedback</>
...
...
src/backend/utils/misc/guc.c
View file @
84725aa5
...
...
@@ -1881,7 +1881,12 @@ static struct config_int ConfigureNamesInt[] =
},
{
{
"vacuum_defer_cleanup_age"
,
PGC_SIGHUP
,
REPLICATION_MASTER
,
/*
* Setting this to a higher value without restarting postmaster
* can cause various bugs in TOAST object removal, CLUSTER and
* possibly other places, so this must be changed only on restart.
*/
{
"vacuum_defer_cleanup_age"
,
PGC_POSTMASTER
,
REPLICATION_MASTER
,
gettext_noop
(
"Number of transactions by which VACUUM and HOT cleanup should be deferred, if any."
),
NULL
},
...
...
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