10 pvesr - Proxmox VE Storage Replication
15 include::pvesr.1-synopsis.adoc[]
27 The `pvesr` command line tool manages the {PVE} storage replication
28 framework. Storage replication brings redundancy for guests using
29 local storage and reduces migration time.
31 It replicates guest volumes to another node so that all data is available
32 without using shared storage. Replication uses snapshots to minimize traffic
33 sent over the network. Therefore, new data is sent only incrementally after
34 the initial full sync. In the case of a node failure, your guest data is
35 still available on the replicated node.
37 The replication is done automatically in configurable intervals.
38 The minimum replication interval is one minute, and the maximal interval
39 once a week. The format used to specify those intervals is a subset of
40 `systemd` calendar events, see
41 xref:pvesr_schedule_time_format[Schedule Format] section:
43 It is possible to replicate a guest to multiple target nodes,
44 but not twice to the same target node.
46 Each replications bandwidth can be limited, to avoid overloading a storage
49 Only changes since the last replication (so-called `deltas`) need to be
50 transferred if the guest is migrated to a node to which it already is
51 replicated. This reduces the time needed significantly. The replication
52 direction automatically switches if you migrate a guest to the replication
55 For example: VM100 is currently on `nodeA` and gets replicated to `nodeB`.
56 You migrate it to `nodeB`, so now it gets automatically replicated back from
59 If you migrate to a node where the guest is not replicated, the whole disk
60 data must send over. After the migration, the replication job continues to
61 replicate this guest to the configured nodes.
65 High-Availability is allowed in combination with storage replication, but there
66 may be some data loss between the last synced time and the time a node failed.
69 Supported Storage Types
70 -----------------------
73 [width="100%",options="header"]
74 |============================================
75 |Description |PVE type |Snapshots|Stable
76 |ZFS (local) |zfspool |yes |yes
77 |============================================
79 [[pvesr_schedule_time_format]]
82 Replication uses xref:chapter_calendar_events[calendar events] for
83 configuring the schedule.
88 If a replication job encounters problems, it is placed in an error state.
89 In this state, the configured replication intervals get suspended
90 temporarily. The failed replication is repeatedly tried again in a
92 Once this succeeds, the original schedule gets activated again.
97 Some of the most common issues are in the following list. Depending on your
98 setup there may be another cause.
100 * Network is not working.
102 * No free space left on the replication target storage.
104 * Storage with same storage ID available on the target node
106 NOTE: You can always use the replication log to find out what is causing the problem.
108 Migrating a guest in case of Error
109 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
110 // FIXME: move this to better fitting chapter (sysadmin ?) and only link to
113 In the case of a grave error, a virtual guest may get stuck on a failed
114 node. You then need to move it manually to a working node again.
119 Let's assume that you have two guests (VM 100 and CT 200) running on node A
120 and replicate to node B.
121 Node A failed and can not get back online. Now you have to migrate the guest
124 - connect to node B over ssh or open its shell via the WebUI
126 - check if that the cluster is quorate
132 - If you have no quorum, we strongly advise to fix this first and make the
133 node operable again. Only if this is not possible at the moment, you may
134 use the following command to enforce quorum on the current node:
140 WARNING: Avoid changes which affect the cluster if `expected votes` are set
141 (for example adding/removing nodes, storages, virtual guests) at all costs.
142 Only use it to get vital guests up and running again or to resolve the quorum
145 - move both guest configuration files form the origin node A to node B:
148 # mv /etc/pve/nodes/A/qemu-server/100.conf /etc/pve/nodes/B/qemu-server/100.conf
149 # mv /etc/pve/nodes/A/lxc/200.conf /etc/pve/nodes/B/lxc/200.conf
152 - Now you can start the guests again:
159 Remember to replace the VMIDs and node names with your respective values.
164 [thumbnail="screenshot/gui-qemu-add-replication-job.png"]
166 You can use the web GUI to create, modify, and remove replication jobs
167 easily. Additionally, the command line interface (CLI) tool `pvesr` can be
170 You can find the replication panel on all levels (datacenter, node, virtual
171 guest) in the web GUI. They differ in which jobs get shown:
172 all, node- or guest-specific jobs.
174 When adding a new job, you need to specify the guest if not already selected
175 as well as the target node. The replication
176 xref:pvesr_schedule_time_format[schedule] can be set if the default of `all
177 15 minutes` is not desired. You may impose a rate-limit on a replication
178 job. The rate limit can help to keep the load on the storage acceptable.
180 A replication job is identified by a cluster-wide unique ID. This ID is
181 composed of the VMID in addition to a job number.
182 This ID must only be specified manually if the CLI tool is used.
185 Command Line Interface Examples
186 -------------------------------
188 Create a replication job which runs every 5 minutes with a limited bandwidth
189 of 10 Mbps (megabytes per second) for the guest with ID 100.
192 # pvesr create-local-job 100-0 pve1 --schedule "*/5" --rate 10
195 Disable an active job with ID `100-0`.
198 # pvesr disable 100-0
201 Enable a deactivated job with ID `100-0`.
207 Change the schedule interval of the job with ID `100-0` to once per hour.
210 # pvesr update 100-0 --schedule '*/00'
214 include::pve-copyright.adoc[]