-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackup-manifest-toplevel.html
More file actions
25 lines (25 loc) · 4.62 KB
/
Copy pathbackup-manifest-toplevel.html
File metadata and controls
25 lines (25 loc) · 4.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>71.1. Backup Manifest Top-level Object</title><link rel="stylesheet" type="text/css" href="stylesheet.css" /><link rev="made" href="pgsql-docs@lists.postgresql.org" /><meta name="generator" content="DocBook XSL Stylesheets V1.79.1" /><link rel="prev" href="backup-manifest-format.html" title="第71章 Backup Manifest Format" /><link rel="next" href="backup-manifest-files.html" title="71.2. Backup Manifest File Object" /><meta name="viewport" content="width=device-width,initial-scale=1.0" /></head><body id="docContent" class="container-fluid col-10"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="4" align="center"><a accesskey="h" href="index.html">PostgreSQL 13.1文書</a></th></tr><tr><td width="10%" align="left"></td><td width="10%" align="left"></td><td width="60%" align="center"><a href="backup-manifest-format.html" title="第71章 Backup Manifest Format">第71章 Backup Manifest Format</a></td><td width="20%" align="right"></td></tr><tr><td width="10%" align="left"><a accesskey="p" href="backup-manifest-format.html" title="第71章 Backup Manifest Format">前へ</a> </td><td width="10%" align="left"><a accesskey="u" href="backup-manifest-format.html" title="第71章 Backup Manifest Format">上へ</a></td><td width="60%" align="center">71.1. Backup Manifest Top-level Object</td><td width="20%" align="right"> <a accesskey="n" href="backup-manifest-files.html" title="71.2. Backup Manifest File Object">次へ</a></td></tr></table><hr /></div><div class="sect1" id="BACKUP-MANIFEST-TOPLEVEL"><div class="titlepage"><div><div><h2 class="title" style="clear: both">71.1. Backup Manifest Top-level Object</h2></div></div></div><p>
The backup manifest JSON document contains the following keys.
</p><div class="variablelist"><dl class="variablelist"><dt><span class="term"><code class="literal">PostgreSQL-Backup-Manifest-Version</code></span></dt><dd><p>
The associated value is always the integer 1.
</p></dd><dt><span class="term"><code class="literal">Files</code></span></dt><dd><p>
The associated value is always a list of objects, each describing one
file that is present in the backup. No entries are present in this
list for the WAL files that are needed in order to use the backup,
or for the backup manifest itself. The structure of each object in the
list is described in <a class="xref" href="backup-manifest-files.html" title="71.2. Backup Manifest File Object">71.2</a>.
</p></dd><dt><span class="term"><code class="literal">WAL-Ranges</code></span></dt><dd><p>
The associated value is always a list of objects, each describing a
range of WAL records that must be readable from a particular timeline
in order to make use of the backup. The structure of these objects is
further described in <a class="xref" href="backup-manifest-wal-ranges.html" title="71.3. Backup Manifest WAL Range Object">71.3</a>.
</p></dd><dt><span class="term"><code class="literal">Manifest-Checksum</code></span></dt><dd><p>
This key is always present on the last line of the backup manifest file.
The associated value is a SHA256 checksum of all the preceding lines.
We use a fixed checksum method here to make it possible for clients
to do incremental parsing of the manifest. While a SHA256 checksum
is significantly more expensive than a CRC32C checksum, the manifest
should normally be small enough that the extra computation won't matter
very much.
</p></dd></dl></div></div><div xmlns="http://www.w3.org/TR/xhtml1/transitional" class="navfooter"><hr></hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="backup-manifest-format.html" title="第71章 Backup Manifest Format">前へ</a> </td><td width="20%" align="center"><a accesskey="u" href="backup-manifest-format.html" title="第71章 Backup Manifest Format">上へ</a></td><td width="40%" align="right"> <a accesskey="n" href="backup-manifest-files.html" title="71.2. Backup Manifest File Object">次へ</a></td></tr><tr><td width="40%" align="left" valign="top">第71章 Backup Manifest Format </td><td width="20%" align="center"><a accesskey="h" href="index.html" title="PostgreSQL 13.1文書">ホーム</a></td><td width="40%" align="right" valign="top"> 71.2. Backup Manifest File Object</td></tr></table></div></body></html>