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
961bf59f
Commit
961bf59f
authored
Dec 21, 2013
by
Fujii Masao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename wal_log_hintbits to wal_log_hints, per discussion on pgsql-hackers.
Sawada Masahiko
parent
6130208e
Changes
10
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
22 additions
and
22 deletions
+22
-22
doc/src/sgml/config.sgml
doc/src/sgml/config.sgml
+3
-3
src/backend/access/heap/visibilitymap.c
src/backend/access/heap/visibilitymap.c
+1
-1
src/backend/access/transam/xlog.c
src/backend/access/transam/xlog.c
+6
-6
src/backend/utils/misc/guc.c
src/backend/utils/misc/guc.c
+2
-2
src/backend/utils/misc/postgresql.conf.sample
src/backend/utils/misc/postgresql.conf.sample
+1
-1
src/bin/pg_controldata/pg_controldata.c
src/bin/pg_controldata/pg_controldata.c
+2
-2
src/bin/pg_resetxlog/pg_resetxlog.c
src/bin/pg_resetxlog/pg_resetxlog.c
+2
-2
src/include/access/xlog.h
src/include/access/xlog.h
+3
-3
src/include/access/xlog_internal.h
src/include/access/xlog_internal.h
+1
-1
src/include/catalog/pg_control.h
src/include/catalog/pg_control.h
+1
-1
No files found.
doc/src/sgml/config.sgml
View file @
961bf59f
...
...
@@ -1957,10 +1957,10 @@ include 'filename'
</listitem>
</varlistentry>
<varlistentry id="guc-wal-log-hint
bits" xreflabel="wal_log_hintbi
ts">
<term><varname>wal_log_hint
bit
s</varname> (<type>boolean</type>)</term>
<varlistentry id="guc-wal-log-hint
s" xreflabel="wal_log_hin
ts">
<term><varname>wal_log_hints</varname> (<type>boolean</type>)</term>
<indexterm>
<primary><varname>wal_log_hint
bit
s</> configuration parameter</primary>
<primary><varname>wal_log_hints</> configuration parameter</primary>
</indexterm>
<listitem>
<para>
...
...
src/backend/access/heap/visibilitymap.c
View file @
961bf59f
...
...
@@ -287,7 +287,7 @@ visibilitymap_set(Relation rel, BlockNumber heapBlk, Buffer heapBuf,
cutoff_xid
);
/*
* If data checksums are enabled (or wal_log_hint
bit
s=on), we
* If data checksums are enabled (or wal_log_hints=on), we
* need to protect the heap page from being torn.
*/
if
(
XLogHintBitIsNeeded
())
...
...
src/backend/access/transam/xlog.c
View file @
961bf59f
...
...
@@ -79,7 +79,7 @@ bool XLogArchiveMode = false;
char
*
XLogArchiveCommand
=
NULL
;
bool
EnableHotStandby
=
false
;
bool
fullPageWrites
=
true
;
bool
walLogHint
bit
s
=
false
;
bool
walLogHints
=
false
;
bool
log_checkpoints
=
false
;
int
sync_method
=
DEFAULT_SYNC_METHOD
;
int
wal_level
=
WAL_LEVEL_MINIMAL
;
...
...
@@ -5271,7 +5271,7 @@ BootStrapXLOG(void)
ControlFile
->
max_prepared_xacts
=
max_prepared_xacts
;
ControlFile
->
max_locks_per_xact
=
max_locks_per_xact
;
ControlFile
->
wal_level
=
wal_level
;
ControlFile
->
wal_log_hint
bits
=
walLogHintbi
ts
;
ControlFile
->
wal_log_hint
s
=
walLogHin
ts
;
ControlFile
->
data_checksum_version
=
bootstrap_data_checksum_version
;
/* some additional ControlFile fields are set in WriteControlFile() */
...
...
@@ -9060,7 +9060,7 @@ static void
XLogReportParameters
(
void
)
{
if
(
wal_level
!=
ControlFile
->
wal_level
||
walLogHint
bits
!=
ControlFile
->
wal_log_hintbi
ts
||
walLogHint
s
!=
ControlFile
->
wal_log_hin
ts
||
MaxConnections
!=
ControlFile
->
MaxConnections
||
max_worker_processes
!=
ControlFile
->
max_worker_processes
||
max_prepared_xacts
!=
ControlFile
->
max_prepared_xacts
||
...
...
@@ -9083,7 +9083,7 @@ XLogReportParameters(void)
xlrec
.
max_prepared_xacts
=
max_prepared_xacts
;
xlrec
.
max_locks_per_xact
=
max_locks_per_xact
;
xlrec
.
wal_level
=
wal_level
;
xlrec
.
wal_log_hint
bits
=
walLogHintbi
ts
;
xlrec
.
wal_log_hint
s
=
walLogHin
ts
;
rdata
.
buffer
=
InvalidBuffer
;
rdata
.
data
=
(
char
*
)
&
xlrec
;
...
...
@@ -9098,7 +9098,7 @@ XLogReportParameters(void)
ControlFile
->
max_prepared_xacts
=
max_prepared_xacts
;
ControlFile
->
max_locks_per_xact
=
max_locks_per_xact
;
ControlFile
->
wal_level
=
wal_level
;
ControlFile
->
wal_log_hint
bits
=
walLogHintbi
ts
;
ControlFile
->
wal_log_hint
s
=
walLogHin
ts
;
UpdateControlFile
();
}
}
...
...
@@ -9485,7 +9485,7 @@ xlog_redo(XLogRecPtr lsn, XLogRecord *record)
ControlFile
->
max_prepared_xacts
=
xlrec
.
max_prepared_xacts
;
ControlFile
->
max_locks_per_xact
=
xlrec
.
max_locks_per_xact
;
ControlFile
->
wal_level
=
xlrec
.
wal_level
;
ControlFile
->
wal_log_hint
bits
=
walLogHintbi
ts
;
ControlFile
->
wal_log_hint
s
=
walLogHin
ts
;
/*
* Update minRecoveryPoint to ensure that if recovery is aborted, we
...
...
src/backend/utils/misc/guc.c
View file @
961bf59f
...
...
@@ -872,11 +872,11 @@ static struct config_bool ConfigureNamesBool[] =
},
{
{
"wal_log_hint
bit
s"
,
PGC_POSTMASTER
,
WAL_SETTINGS
,
{
"wal_log_hints"
,
PGC_POSTMASTER
,
WAL_SETTINGS
,
gettext_noop
(
"Writes full pages to WAL when first modified after a checkpoint, even for a non-critical modifications"
),
NULL
},
&
walLogHint
bit
s
,
&
walLogHints
,
false
,
NULL
,
NULL
,
NULL
},
...
...
src/backend/utils/misc/postgresql.conf.sample
View file @
961bf59f
...
...
@@ -184,7 +184,7 @@
# fsync_writethrough
# open_sync
#full_page_writes = on # recover from partial page writes
#wal_log_hint
bit
s = off # also do full pages writes of non-critical updates
#wal_log_hints = off # also do full pages writes of non-critical updates
#wal_buffers = -1 # min 32kB, -1 sets based on shared_buffers
# (change requires restart)
#wal_writer_delay = 200ms # 1-10000 milliseconds
...
...
src/bin/pg_controldata/pg_controldata.c
View file @
961bf59f
...
...
@@ -260,8 +260,8 @@ main(int argc, char *argv[])
ControlFile
.
backupEndRequired
?
_
(
"yes"
)
:
_
(
"no"
));
printf
(
_
(
"Current wal_level setting: %s
\n
"
),
wal_level_str
(
ControlFile
.
wal_level
));
printf
(
_
(
"Current wal_log_hint
bits setting:
%s
\n
"
),
ControlFile
.
wal_log_hint
bit
s
?
_
(
"on"
)
:
_
(
"off"
));
printf
(
_
(
"Current wal_log_hint
s setting:
%s
\n
"
),
ControlFile
.
wal_log_hints
?
_
(
"on"
)
:
_
(
"off"
));
printf
(
_
(
"Current max_connections setting: %d
\n
"
),
ControlFile
.
MaxConnections
);
printf
(
_
(
"Current max_worker_processes setting: %d
\n
"
),
...
...
src/bin/pg_resetxlog/pg_resetxlog.c
View file @
961bf59f
...
...
@@ -525,7 +525,7 @@ GuessControlValues(void)
/* minRecoveryPoint, backupStartPoint and backupEndPoint can be left zero */
ControlFile
.
wal_level
=
WAL_LEVEL_MINIMAL
;
ControlFile
.
wal_log_hint
bit
s
=
false
;
ControlFile
.
wal_log_hints
=
false
;
ControlFile
.
MaxConnections
=
100
;
ControlFile
.
max_worker_processes
=
8
;
ControlFile
.
max_prepared_xacts
=
0
;
...
...
@@ -722,7 +722,7 @@ RewriteControlFile(void)
* anyway at startup.
*/
ControlFile
.
wal_level
=
WAL_LEVEL_MINIMAL
;
ControlFile
.
wal_log_hint
bit
s
=
false
;
ControlFile
.
wal_log_hints
=
false
;
ControlFile
.
MaxConnections
=
100
;
ControlFile
.
max_worker_processes
=
8
;
ControlFile
.
max_prepared_xacts
=
0
;
...
...
src/include/access/xlog.h
View file @
961bf59f
...
...
@@ -189,7 +189,7 @@ extern bool XLogArchiveMode;
extern
char
*
XLogArchiveCommand
;
extern
bool
EnableHotStandby
;
extern
bool
fullPageWrites
;
extern
bool
walLogHint
bit
s
;
extern
bool
walLogHints
;
extern
bool
log_checkpoints
;
extern
int
num_xloginsert_slots
;
...
...
@@ -219,9 +219,9 @@ extern int wal_level;
* we have to protect them against torn page writes. When you only set
* individual bits on a page, it's still consistent no matter what combination
* of the bits make it to disk, but the checksum wouldn't match. Also WAL-log
* them if forced by wal_log_hint
bit
s=on.
* them if forced by wal_log_hints=on.
*/
#define XLogHintBitIsNeeded() (DataChecksumsEnabled() || walLogHint
bit
s)
#define XLogHintBitIsNeeded() (DataChecksumsEnabled() || walLogHints)
/* Do we need to WAL-log information required only for Hot Standby and logical replication? */
#define XLogStandbyInfoActive() (wal_level >= WAL_LEVEL_HOT_STANDBY)
...
...
src/include/access/xlog_internal.h
View file @
961bf59f
...
...
@@ -209,7 +209,7 @@ typedef struct xl_parameter_change
int
max_prepared_xacts
;
int
max_locks_per_xact
;
int
wal_level
;
bool
wal_log_hint
bit
s
;
bool
wal_log_hints
;
}
xl_parameter_change
;
/* logs restore point */
...
...
src/include/catalog/pg_control.h
View file @
961bf59f
...
...
@@ -171,7 +171,7 @@ typedef struct ControlFileData
* or hot standby.
*/
int
wal_level
;
bool
wal_log_hint
bit
s
;
bool
wal_log_hints
;
int
MaxConnections
;
int
max_worker_processes
;
int
max_prepared_xacts
;
...
...
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