|
3 | 3 | # ------------------------------- |
4 | 4 | # |
5 | 5 | # Edit this file to provide the parameters that PostgreSQL |
6 | | -# needs to perform an archive recovery of a database |
| 6 | +# needs to perform an archive recovery of a database. |
7 | 7 | # |
8 | 8 | # If "recovery.conf" is present in the PostgreSQL data directory, it is |
9 | 9 | # read on postmaster startup. After successful recovery, it is renamed |
10 | | -# to "recovery.done" to ensure that we do not accidentally re-enter archive |
11 | | -# recovery mode. |
| 10 | +# to "recovery.done" to ensure that we do not accidentally re-enter |
| 11 | +# archive recovery mode. |
12 | 12 | # |
13 | 13 | # This file consists of lines of the form: |
14 | 14 | # |
|
18 | 18 | # |
19 | 19 | # Comments are introduced with '#'. |
20 | 20 | # |
21 | | -# The complete list of option names and |
22 | | -# allowed values can be found in the PostgreSQL documentation. The |
23 | | -# commented-out settings shown below are sample values. |
| 21 | +# The complete list of option names and allowed values can be found |
| 22 | +# in the PostgreSQL documentation. The commented-out settings shown below |
| 23 | +# are example values. |
24 | 24 | # |
25 | 25 | #--------------------------------------------------------------------------- |
26 | 26 | # REQUIRED PARAMETERS |
27 | 27 | #--------------------------------------------------------------------------- |
28 | 28 | # |
29 | | -# restore command |
| 29 | +# restore_command |
30 | 30 | # |
31 | 31 | # specifies the shell command that is executed to copy log files |
32 | 32 | # back from archival storage. The command string may contain %f, |
|
50 | 50 | # |
51 | 51 | # By default, recovery will rollforward to the end of the WAL log. |
52 | 52 | # If you want to stop rollforward before that point, you |
53 | | -# MUST set a recovery target. |
| 53 | +# must set a recovery target. |
54 | 54 | # |
55 | 55 | # You may set a recovery target either by transactionId, or |
56 | 56 | # by timestamp. Recovery may either include or exclude the |
57 | | -# records with the recovery target value (ie, stop either just |
58 | | -# after or just before the given target). |
| 57 | +# transaction(s) with the recovery target value (ie, stop either |
| 58 | +# just after or just before the given target, respectively). |
59 | 59 | # |
60 | | -#recovery_target_time = '2004-07-14 22:39:00' |
| 60 | +#recovery_target_time = '2004-07-14 22:39:00 EST' |
61 | 61 | # |
62 | | -# note: target time is interpreted by strptime() and must therefore be |
63 | | -# given in your system's default timezone. |
| 62 | +#recovery_target_xid = '1100842' |
64 | 63 | # |
65 | | -#recovery_target_xid = '11000' |
66 | | -# |
67 | | -# true or false |
68 | | -#recovery_target_inclusive = 'true' |
| 64 | +#recovery_target_inclusive = 'true' # 'true' or 'false' |
69 | 65 | # |
70 | 66 | #--------------------------------------------------------------------------- |
0 commit comments