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
7ba1f8fc
Commit
7ba1f8fc
authored
Dec 19, 2009
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Convert tabs to spaces in SGML.
parent
0e9c1b1c
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
557 additions
and
557 deletions
+557
-557
doc/src/sgml/backup.sgml
doc/src/sgml/backup.sgml
+525
-525
doc/src/sgml/config.sgml
doc/src/sgml/config.sgml
+29
-29
doc/src/sgml/func.sgml
doc/src/sgml/func.sgml
+3
-3
No files found.
doc/src/sgml/backup.sgml
View file @
7ba1f8fc
This diff is collapsed.
Click to expand it.
doc/src/sgml/config.sgml
View file @
7ba1f8fc
<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.2
39 2009/12/19 01:32:31 sriggs
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.2
40 2009/12/19 17:49:50 momjian
Exp $ -->
<chapter Id="runtime-config">
<chapter Id="runtime-config">
<title>Server Configuration</title>
<title>Server Configuration</title>
...
@@ -1755,15 +1755,15 @@ archive_command = 'copy "%p" "C:\\server\\archivedir\\%f"' # Windows
...
@@ -1755,15 +1755,15 @@ archive_command = 'copy "%p" "C:\\server\\archivedir\\%f"' # Windows
<term><varname>recovery_connections</varname> (<type>boolean</type>)</term>
<term><varname>recovery_connections</varname> (<type>boolean</type>)</term>
<listitem>
<listitem>
<para>
<para>
Parameter has two roles. During recovery, specifies whether or not
Parameter has two roles. During recovery, specifies whether or not
you can connect and run queries to enable <xref linkend="hot-standby">.
you can connect and run queries to enable <xref linkend="hot-standby">.
During normal running, specifies whether additional information is written
During normal running, specifies whether additional information is written
to WAL to allow recovery connections on a standby server that reads
to WAL to allow recovery connections on a standby server that reads
WAL data generated by this server. The default value is
WAL data generated by this server. The default value is
<literal>on</literal>. It is thought that there is little
<literal>on</literal>. It is thought that there is little
measurable difference in performance from using this feature, so
measurable difference in performance from using this feature, so
feedback is welcome if any production impacts are noticeable.
feedback is welcome if any production impacts are noticeable.
It is likely that this parameter will be removed in later releases.
It is likely that this parameter will be removed in later releases.
This parameter can only be set at server start.
This parameter can only be set at server start.
</para>
</para>
</listitem>
</listitem>
...
@@ -1773,15 +1773,15 @@ archive_command = 'copy "%p" "C:\\server\\archivedir\\%f"' # Windows
...
@@ -1773,15 +1773,15 @@ archive_command = 'copy "%p" "C:\\server\\archivedir\\%f"' # Windows
<term><varname>max_standby_delay</varname> (<type>string</type>)</term>
<term><varname>max_standby_delay</varname> (<type>string</type>)</term>
<listitem>
<listitem>
<para>
<para>
When server acts as a standby, this parameter specifies a wait policy
When server acts as a standby, this parameter specifies a wait policy
for queries that conflict with incoming data changes. Valid settings
for queries that conflict with incoming data changes. Valid settings
are -1, meaning wait forever, or a wait time of 0 or more seconds.
are -1, meaning wait forever, or a wait time of 0 or more seconds.
If a conflict should occur the server will delay up to this
If a conflict should occur the server will delay up to this
amount before it begins trying to resolve things less amicably, as
amount before it begins trying to resolve things less amicably, as
described in <xref linkend="hot-standby-conflict">. Typically,
described in <xref linkend="hot-standby-conflict">. Typically,
this parameter makes sense only during replication, so when
this parameter makes sense only during replication, so when
performing an archive recovery to recover from data loss a
performing an archive recovery to recover from data loss a
parameter setting of 0 is recommended. The default is 30 seconds.
parameter setting of 0 is recommended. The default is 30 seconds.
This parameter can only be set in the <filename>postgresql.conf</>
This parameter can only be set in the <filename>postgresql.conf</>
file or on the server command line.
file or on the server command line.
</para>
</para>
...
@@ -4226,17 +4226,17 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
...
@@ -4226,17 +4226,17 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
<listitem>
<listitem>
<para>
<para>
Specifies the number of transactions by which <command>VACUUM</> and
Specifies the number of transactions by which <command>VACUUM</> and
<acronym>HOT</> updates will defer cleanup of dead row versions. The
<acronym>HOT</> updates will defer cleanup of dead row versions. The
default is 0 transactions, meaning that dead row versions will be
default is 0 transactions, meaning that dead row versions will be
removed as soon as possible. You may wish to set this to a non-zero
removed as soon as possible. You may wish to set this to a non-zero
value when planning or maintaining a <xref linkend="hot-standby">
value when planning or maintaining a <xref linkend="hot-standby">
configuration. The recommended value is <literal>0</> unless you have
configuration. The recommended value is <literal>0</> unless you have
clear reason to increase it. The purpose of the parameter is to
clear reason to increase it. The purpose of the parameter is to
allow the user to specify an approximate time delay before cleanup
allow the user to specify an approximate time delay before cleanup
occurs. However, it should be noted that there is no direct link with
occurs. However, it should be noted that there is no direct link with
any specific time delay and so the results will be application and
any specific time delay and so the results will be application and
installation specific, as well as variable over time, depending upon
installation specific, as well as variable over time, depending upon
the transaction rate (of writes only).
the transaction rate (of writes only).
</para>
</para>
</listitem>
</listitem>
</varlistentry>
</varlistentry>
...
...
doc/src/sgml/func.sgml
View file @
7ba1f8fc
<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.49
4 2009/12/19 01:32:31 sriggs
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.49
5 2009/12/19 17:49:50 momjian
Exp $ -->
<chapter
id=
"functions"
>
<chapter
id=
"functions"
>
<title>
Functions and Operators
</title>
<title>
Functions and Operators
</title>
...
@@ -13139,7 +13139,7 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
...
@@ -13139,7 +13139,7 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
<para>
<para>
The functions shown in
<xref
The functions shown in
<xref
linkend=
"functions-recovery-info-table"
>
provide information
linkend=
"functions-recovery-info-table"
>
provide information
about the current status of Hot Standby.
about the current status of Hot Standby.
These functions may be executed during both recovery and in normal running.
These functions may be executed during both recovery and in normal running.
</para>
</para>
...
@@ -13158,7 +13158,7 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
...
@@ -13158,7 +13158,7 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
</entry>
</entry>
<entry><type>
bool
</type></entry>
<entry><type>
bool
</type></entry>
<entry>
True if recovery is still in progress.
<entry>
True if recovery is still in progress.
</entry>
</entry>
</row>
</row>
</tbody>
</tbody>
</tgroup>
</tgroup>
...
...
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