/rtmp/diff
text/x-diff
Filename: /rtmp/diff
Type: text/x-diff
Part: 0
Patch
Same data as JSON:
GET /api/v1/attachments/:id/patch
the parsed metadata as JSON — format, series position, per-file stats; never the diff bytes.
API reference →
Format: context
| File | + | − |
|---|---|---|
| doc/src/sgml/config.sgml | 21 | 8 |
Index: doc/src/sgml/config.sgml
===================================================================
RCS file: /cvsroot/pgsql/doc/src/sgml/config.sgml,v
retrieving revision 1.257
diff -c -c -r1.257 config.sgml
*** doc/src/sgml/config.sgml 2 Mar 2010 21:18:59 -0000 1.257
--- doc/src/sgml/config.sgml 2 Mar 2010 23:34:38 -0000
***************
*** 1862,1879 ****
<listitem>
<para>
When server acts as a standby, this parameter specifies a wait policy
! for queries that conflict with data changes being replayed by recovery.
If a conflict should occur the server will delay up to this number
! of seconds before it begins trying to resolve things less amicably, as
! described in <xref linkend="hot-standby-conflict">. Typically,
! this parameter makes sense only during replication, so when
! performing an archive recovery to recover from data loss a very high
! parameter setting or -1 which means wait forever is recommended.
! The default is 30 seconds. Increasing this parameter can delay
! master server changes from appearing on the standby.
This parameter can only be set in the <filename>postgresql.conf</>
file or on the server command line.
</para>
</listitem>
</varlistentry>
--- 1862,1892 ----
<listitem>
<para>
When server acts as a standby, this parameter specifies a wait policy
! for applying WAL entries that conflict with active queries.
If a conflict should occur the server will delay up to this number
! of seconds before it cancels conflicting queries, as
! described in <xref linkend="hot-standby-conflict">.
! Typically, this parameter is used only during replication.
! The default is 30 seconds.
This parameter can only be set in the <filename>postgresql.conf</>
file or on the server command line.
</para>
+ <para>
+ A high value makes query cancel less likely, and -1
+ causes the standby to wait forever for a conflicting query to
+ complete. Increasing this parameter might delay master server
+ changes from appearing on the standby.
+ </para>
+ <para>
+ While it is tempting to believe that <varname>max_standby_delay</>
+ is the maximum number of seconds a query can run before
+ cancellation is possible, this is not true. When a long-running
+ query ends, there is a finite time required to apply backlogged
+ WAL logs. If a second long-running query appears before the
+ WAL has caught up, the snapshot taken by the second query will
+ allow significantly less than <varname>max_standby_delay</>
+ before query cancellation is possible.
+ </para>
</listitem>
</varlistentry>