I am stuck on this problem and need help. ESXi Free version 5 and qemu-kvm/libvirtd version 0.10. I will put the TL;DR first since it captures the problem fairly well.
TL;DR I have 2 VMs on a KVM server (qcow2 images sized 100 and 200GB), and need to have a clone taken every week to be launched if needed on a separate ESXi (free version) host. The KVM server is using SSD disks because speed is very important, and is out of disk space and resources which makes this problem a little harder. We need to keep all versions of these clones indefinitely. I have tape backup and a file server with a few 100 GB, but would like to have at least the last 2 month's of backups/clones handy at all times. The original VMs on the KVM server must always be running at their current state, they cannot be reverted to a previous snapshot on that server, if we need to access a previous state for any reason we must launch that week's clone on the ESXi server. I only have about 1 TB of storage on the ESXi host, and was hoping there is some solution involving delta disks to conserve space and prevent data duplication.
The long explanation
I have 2 servers running KVM, each with SSD drives and essentially no free space. Each of these KVM servers runs a critical VM using qcow2 as the disk format. The resources are already dedicated to the VM on each box, so there is really not much room to do anything else on these servers. One VM is 100GB (on disk size) and the other is 200GB.
I also have an ESXi 5.0 (free version) host with about 1TB of space and a lot of free resources to spare. The datastore is local storage RAID 5.
I need a solution which involves having a snapshot or clone of both VMs from the KVM servers taken about once a week, and can then be run on the ESXi server at the same time that the original is still running on the KVM box (I would manually change the hostname etc. to avoid conflicts on the network). Typically this would be a clone scenario, but I would run out of space very quickly doing that. I need to keep every week's backup indefinitely. I do have a fileserver with a few 100GBs of storage which gets backed up to tape at my disposal as well, but would like to have at least the last 2 month's VM snapshot/clones available if I need to spin one up.
Performance is crucial on the KVM servers, so a chain of snapshots is not a desirable solution, and it does not solve the problem because the original KVM VMs need to always be running at their current version. The clone on the ESXi host would be effectively where the snapshots would be applied.
This problem has been surprisingly hard for me to solve, so I was hoping to get some help.