Displaying 4 results from an estimated 4 matches for "zstore".
Did you mean:
store
2017 Apr 28
1
Re: Live migration with non-shared ZFS volume
Hi Martin,
in the meantime, I've found a solution which I consider at least acceptable:
1. create zfs snapshot of domain disk (/dev/zstore/test-volume)
2. save original XML domain definition
3. create snapshot in libvirt like this:
virsh snapshot-create --xmlfile snap.xml --disk-only --no-metadata
test-domain
snap.xml:
<domainsnapshot>
<disks>
<disk name='/dev/zstore/test-volume'>
<source fil...
2017 Apr 04
2
Live migration with non-shared ZFS volume
...re (AFAIK).
So I am thinking about a workaround:
1. Create snapshot using: "virsh snapshot-create --xmlfile snap.xml
--disk-only --no-metadata test-domain" which will start writing snapshot
data into temporary qcow2 file
<domainsnapshot>
<disks>
<disk name='/dev/zstore/test-volume'>
<source file='/tmp/test-volume.qcow2'/>
</disk>
</disks>
</domainsnapshot>
2. Create snapshot of backing ZFS volume and send it to destination host.
3. Migrate the domain
Currently, in step 3 I need to create empty qcow snapshot fi...
2011 May 27
1
Does OP_NEAR works with stemming?
Hi All,
I used the OP_NEAR operator for queryparser, and when I searched for "apple store" from my own collection, the query is parsed as "Zappl:(pos=1) NEAR 11 Zstore:(pos=2)" but retrieved nothing. However, if I type in "Apple Store", the query is parsed as Xapian::Query((apple:(pos=1) NEAR 11 store:(pos=2))) and some results are showed. I'm not sure whether this has something to do with the stemming, and what I used is stem_some. Any clue is...
2017 Apr 28
0
Re: Live migration with non-shared ZFS volume
...g about a workaround:
>1. Create snapshot using: "virsh snapshot-create --xmlfile snap.xml
>--disk-only --no-metadata test-domain" which will start writing snapshot
>data into temporary qcow2 file
>
><domainsnapshot>
> <disks>
> <disk name='/dev/zstore/test-volume'>
> <source file='/tmp/test-volume.qcow2'/>
> </disk>
> </disks>
></domainsnapshot>
>
>
>2. Create snapshot of backing ZFS volume and send it to destination host.
>3. Migrate the domain
>
>Currently, in step 3...