]> git.proxmox.com Git - pve-docs.git/blame_incremental - pvesr.adoc
node: record todo in comment
[pve-docs.git] / pvesr.adoc
... / ...
CommitLineData
1[[chapter_pvesr]]
2ifdef::manvolnum[]
3pvesr(1)
4========
5:pve-toplevel:
6
7NAME
8----
9
10pvesr - Proxmox VE Storage Replication
11
12SYNOPSIS
13--------
14
15include::pvesr.1-synopsis.adoc[]
16
17DESCRIPTION
18-----------
19endif::manvolnum[]
20
21ifndef::manvolnum[]
22Storage Replication
23===================
24:pve-toplevel:
25endif::manvolnum[]
26
27The `pvesr` command line tool manages the {PVE} storage replication
28framework. Storage replication brings redundancy for guests using
29local storage and reduces migration time.
30
31It replicates guest volumes to another node so that all data is available
32without using shared storage. Replication uses snapshots to minimize traffic
33sent over the network. Therefore, new data is sent only incrementally after
34the initial full sync. In the case of a node failure, your guest data is
35still available on the replicated node.
36
37The replication is done automatically in configurable intervals.
38The minimum replication interval is one minute, and the maximal interval
39once a week. The format used to specify those intervals is a subset of
40`systemd` calendar events, see
41xref:pvesr_schedule_time_format[Schedule Format] section:
42
43It is possible to replicate a guest to multiple target nodes,
44but not twice to the same target node.
45
46Each replications bandwidth can be limited, to avoid overloading a storage
47or server.
48
49Only changes since the last replication (so-called `deltas`) need to be
50transferred if the guest is migrated to a node to which it already is
51replicated. This reduces the time needed significantly. The replication
52direction automatically switches if you migrate a guest to the replication
53target node.
54
55For example: VM100 is currently on `nodeA` and gets replicated to `nodeB`.
56You migrate it to `nodeB`, so now it gets automatically replicated back from
57`nodeB` to `nodeA`.
58
59If you migrate to a node where the guest is not replicated, the whole disk
60data must send over. After the migration, the replication job continues to
61replicate this guest to the configured nodes.
62
63[IMPORTANT]
64====
65High-Availability is allowed in combination with storage replication, but there
66may be some data loss between the last synced time and the time a node failed.
67====
68
69Supported Storage Types
70-----------------------
71
72.Storage Types
73[width="100%",options="header"]
74|============================================
75|Description |PVE type |Snapshots|Stable
76|ZFS (local) |zfspool |yes |yes
77|============================================
78
79[[pvesr_schedule_time_format]]
80Schedule Format
81---------------
82Replication uses xref:chapter_calendar_events[calendar events] for
83configuring the schedule.
84
85Error Handling
86--------------
87
88If a replication job encounters problems, it is placed in an error state.
89In this state, the configured replication intervals get suspended
90temporarily. The failed replication is repeatedly tried again in a
9130 minute interval.
92Once this succeeds, the original schedule gets activated again.
93
94Possible issues
95~~~~~~~~~~~~~~~
96
97Some of the most common issues are in the following list. Depending on your
98setup there may be another cause.
99
100* Network is not working.
101
102* No free space left on the replication target storage.
103
104* Storage with same storage ID available on the target node
105
106NOTE: You can always use the replication log to find out what is causing the problem.
107
108Migrating a guest in case of Error
109~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
110// FIXME: move this to better fitting chapter (sysadmin ?) and only link to
111// it here
112
113In the case of a grave error, a virtual guest may get stuck on a failed
114node. You then need to move it manually to a working node again.
115
116Example
117~~~~~~~
118
119Let's assume that you have two guests (VM 100 and CT 200) running on node A
120and replicate to node B.
121Node A failed and can not get back online. Now you have to migrate the guest
122to Node B manually.
123
124- connect to node B over ssh or open its shell via the WebUI
125
126- check if that the cluster is quorate
127+
128----
129# pvecm status
130----
131
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:
135+
136----
137# pvecm expected 1
138----
139
140WARNING: Avoid changes which affect the cluster if `expected votes` are set
141(for example adding/removing nodes, storages, virtual guests) at all costs.
142Only use it to get vital guests up and running again or to resolve the quorum
143issue itself.
144
145- move both guest configuration files form the origin node A to node B:
146+
147----
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
150----
151
152- Now you can start the guests again:
153+
154----
155# qm start 100
156# pct start 200
157----
158
159Remember to replace the VMIDs and node names with your respective values.
160
161Managing Jobs
162-------------
163
164[thumbnail="screenshot/gui-qemu-add-replication-job.png"]
165
166You can use the web GUI to create, modify, and remove replication jobs
167easily. Additionally, the command line interface (CLI) tool `pvesr` can be
168used to do this.
169
170You can find the replication panel on all levels (datacenter, node, virtual
171guest) in the web GUI. They differ in which jobs get shown:
172all, node- or guest-specific jobs.
173
174When adding a new job, you need to specify the guest if not already selected
175as well as the target node. The replication
176xref:pvesr_schedule_time_format[schedule] can be set if the default of `all
17715 minutes` is not desired. You may impose a rate-limit on a replication
178job. The rate limit can help to keep the load on the storage acceptable.
179
180A replication job is identified by a cluster-wide unique ID. This ID is
181composed of the VMID in addition to a job number.
182This ID must only be specified manually if the CLI tool is used.
183
184
185Command Line Interface Examples
186-------------------------------
187
188Create a replication job which runs every 5 minutes with a limited bandwidth
189of 10 Mbps (megabytes per second) for the guest with ID 100.
190
191----
192# pvesr create-local-job 100-0 pve1 --schedule "*/5" --rate 10
193----
194
195Disable an active job with ID `100-0`.
196
197----
198# pvesr disable 100-0
199----
200
201Enable a deactivated job with ID `100-0`.
202
203----
204# pvesr enable 100-0
205----
206
207Change the schedule interval of the job with ID `100-0` to once per hour.
208
209----
210# pvesr update 100-0 --schedule '*/00'
211----
212
213ifdef::manvolnum[]
214include::pve-copyright.adoc[]
215endif::manvolnum[]