Hi,
I'm busy deploying a few containers to a Proxmox machine and I am busy configuring live backups, I've scoured the forums and everything is working so far but one thing I'm still unsure about it the amount of free space that is required on the volume group. Must the free space be equivalent to the size of the container being backed up or equivalent to the amount of memory the container has?
I currently have 4 volume groups, 1 which is the default and 3 others I created. The default install left 16GB in the pve VG so I did the same with mine. Here is the output of vgs:
And lvs:
Here is my vzdump.conf:
Is this configuration okay and will I be able to do live backups when the containers get larger? Currently the biggest one I have is only around 9GB, here is the output from that backup:
Also, is there any reason why the first backup was so slow? 5MB/sec for the first then 34MB/sec on the second. Both are just backing up to a local disk at this stage.
TIA
I'm busy deploying a few containers to a Proxmox machine and I am busy configuring live backups, I've scoured the forums and everything is working so far but one thing I'm still unsure about it the amount of free space that is required on the volume group. Must the free space be equivalent to the size of the container being backed up or equivalent to the amount of memory the container has?
I currently have 4 volume groups, 1 which is the default and 3 others I created. The default install left 16GB in the pve VG so I did the same with mine. Here is the output of vgs:
Code:
root@proxmox0:/mnt/disk1/dump# vgs VG #PV #LV #SN Attr VSize VFree
pve 1 3 0 wz--n- 232.38g 16.00g
vg1 1 1 0 wz--n- 931.51g 16.00g
vg2 1 1 0 wz--n- 931.51g 16.00g
vg3 1 1 0 wz--n- 931.51g 16.00g
Code:
root@proxmox0:/mnt/disk1/dump# lvs
LV VG Attr LSize Pool Origin Data% Move Log Copy% Convert
data pve -wi-ao--- 143.39g
root pve -wi-ao--- 58.00g
swap pve -wi-ao--- 15.00g
lv1 vg1 -wi-ao--- 915.51g
lv2 vg2 -wi-ao--- 915.51g
lv3 vg3 -wi-ao--- 915.51g
Code:
root@proxmox0:/mnt/disk1/dump# cat /etc/vzdump.conf
# vzdump default settings
#tmpdir: DIR
#dumpdir: DIR
#storage: STORAGE_ID
#mode: snapshot|suspend|stop
#bwlimit: KBPS
#ionice: PRI
#lockwait: MINUTES
#stopwait: MINUTES
size: 16000
#maxfiles: N
#script: FILENAME
#exclude-path: PATHLIST
Code:
INFO: starting new backup job: vzdump 100 101 --quiet 1 --mailto it@mydomain.com --mode snapshot --compress lzo --storage disk1
INFO: Starting Backup of VM 100 (openvz)
INFO: CTID 100 exist mounted running
INFO: status = running
INFO: backup mode: snapshot
INFO: ionice priority: 7
INFO: creating lvm snapshot of /dev/mapper/vg1-lv1 ('/dev/vg1/vzsnap-proxmox0-0')
INFO: Logical volume "vzsnap-proxmox0-0" created
INFO: creating archive '/mnt/disk1/dump/vzdump-openvz-100-2014_02_11-19_42_02.tar.lzo'
INFO: Total bytes written: 11935180800 (12GiB, 4.8MiB/s)
INFO: archive file size: 9.70GB
INFO: Finished Backup of VM 100 (00:40:48)
INFO: Starting Backup of VM 101 (openvz)
INFO: CTID 101 exist mounted running
INFO: status = running
INFO: backup mode: snapshot
INFO: ionice priority: 7
INFO: creating lvm snapshot of /dev/mapper/vg1-lv1 ('/dev/vg1/vzsnap-proxmox0-0')
INFO: Logical volume "vzsnap-proxmox0-0" created
INFO: creating archive '/mnt/disk1/dump/vzdump-openvz-101-2014_02_11-20_22_50.tar.lzo'
INFO: Total bytes written: 2657761280 (2.5GiB, 34MiB/s)
INFO: archive file size: 1.68GB
INFO: Finished Backup of VM 101 (00:01:31)
INFO: Backup job finished successfully
TASK OK
TIA