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
4bd8ed31
Commit
4bd8ed31
authored
Jul 19, 2011
by
Simon Riggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Introduce sending servers as new category for replication params
Fujii Masao
parent
6307fff3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
7 deletions
+15
-7
src/backend/utils/misc/guc.c
src/backend/utils/misc/guc.c
+6
-4
src/backend/utils/misc/postgresql.conf.sample
src/backend/utils/misc/postgresql.conf.sample
+8
-3
src/include/utils/guc_tables.h
src/include/utils/guc_tables.h
+1
-0
No files found.
src/backend/utils/misc/guc.c
View file @
4bd8ed31
...
...
@@ -557,6 +557,8 @@ const char *const config_group_names[] =
gettext_noop
(
"Write-Ahead Log / Archiving"
),
/* REPLICATION */
gettext_noop
(
"Replication"
),
/* REPLICATION_SENDING */
gettext_noop
(
"Replication / Sending Servers"
),
/* REPLICATION_MASTER */
gettext_noop
(
"Replication / Master Server"
),
/* REPLICATION_STANDBY */
...
...
@@ -1918,7 +1920,7 @@ static struct config_int ConfigureNamesInt[] =
},
{
{
"wal_keep_segments"
,
PGC_SIGHUP
,
REPLICATION_
MASTER
,
{
"wal_keep_segments"
,
PGC_SIGHUP
,
REPLICATION_
SENDING
,
gettext_noop
(
"Sets the number of WAL files held for standby servers."
),
NULL
},
...
...
@@ -1986,7 +1988,7 @@ static struct config_int ConfigureNamesInt[] =
{
/* see max_connections */
{
"max_wal_senders"
,
PGC_POSTMASTER
,
REPLICATION_
MASTER
,
{
"max_wal_senders"
,
PGC_POSTMASTER
,
REPLICATION_
SENDING
,
gettext_noop
(
"Sets the maximum number of simultaneously running WAL sender processes."
),
NULL
},
...
...
@@ -1996,7 +1998,7 @@ static struct config_int ConfigureNamesInt[] =
},
{
{
"wal_sender_delay"
,
PGC_SIGHUP
,
REPLICATION_
MASTER
,
{
"wal_sender_delay"
,
PGC_SIGHUP
,
REPLICATION_
SENDING
,
gettext_noop
(
"WAL sender sleep time between WAL replications."
),
NULL
,
GUC_UNIT_MS
...
...
@@ -2007,7 +2009,7 @@ static struct config_int ConfigureNamesInt[] =
},
{
{
"replication_timeout"
,
PGC_SIGHUP
,
REPLICATION_
MASTER
,
{
"replication_timeout"
,
PGC_SIGHUP
,
REPLICATION_
SENDING
,
gettext_noop
(
"Sets the maximum time to wait for WAL replication."
),
NULL
,
GUC_UNIT_MS
...
...
src/backend/utils/misc/postgresql.conf.sample
View file @
4bd8ed31
...
...
@@ -194,19 +194,24 @@
# REPLICATION
#------------------------------------------------------------------------------
# -
Master Server
-
# -
Sending Server(s)
-
#
These settings are ignored on a standby server
#
Set these on the master and on any standby that will send replication data
#max_wal_senders = 0 # max number of walsender processes
# (change requires restart)
#wal_sender_delay = 1s # walsender cycle time, 1-10000 milliseconds
#wal_keep_segments = 0 # in logfile segments, 16MB each; 0 disables
#vacuum_defer_cleanup_age = 0 # number of xacts by which cleanup is delayed
#replication_timeout = 60s # in milliseconds; 0 disables
# - Master Server -
# These settings are ignored on a standby server
#synchronous_standby_names = '' # standby servers that provide sync rep
# comma-separated list of application_name
# from standby(s); '*' = all
#vacuum_defer_cleanup_age = 0 # number of xacts by which cleanup is delayed
# - Standby Servers -
...
...
src/include/utils/guc_tables.h
View file @
4bd8ed31
...
...
@@ -69,6 +69,7 @@ enum config_group
WAL_CHECKPOINTS
,
WAL_ARCHIVING
,
REPLICATION
,
REPLICATION_SENDING
,
REPLICATION_MASTER
,
REPLICATION_STANDBY
,
QUERY_TUNING
,
...
...
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