How to determine when a snapshot has finished merging?
On Sun, Jan 24 2010 at 9:12am -0500,
Wicher Minnaard <wicher@gavagai.eu> wrote:
> Hi, I'm new to the list.
> I'm experimenting with the snapshot-merge target on a 2.6.33_rc4 kernel:
>
> echo 0 $(blockdev --getsize /dev/mapper/original) snapshot-merge
> /dev/mapper/original /dev/loop1 p 8 | dmsetup create mergeomatic
>
> where /dev/loop1 is a COW volume I created earlier (with the
> 'snapshot' target, against /dev/mapper/original, of course).
> I wait for some time and then I just 'dmsetup remove' to break down
> the device stack, starting with the 'mergeomatic' device. I then take
> a look at /dev/mapper/original, and, much to my delight, I see stuff
> that has been merged back in from the snapshot.
>
> But I don't know how to determine whether the merge has completed. I
> looked around in /proc and /sys, but those contained no obvious clues
> (not obvious to me, that is). My kernel logs never mention any dm
> activity (whereas the md driver is quite chatty and features
> /proc/mdstat).
> Any suggestions greatly appreciated.
Hi Wicher,
The status for the snapshot-merge (and snapshot) target was extended to
include the "allocated metadata sectors" at the end of its status
output, see commit: http://git.kernel.org/linus/985903bb3a6d98
And here is the corresponding lvm2 commit:
http://sources.redhat.com/git/?p=lvm2.git;a=commit;h=f02531802c002
The format is: <sectors_allocated>/<total_sectors> <metadata_sectors>
So merging has finished when <sectors_allocated> == <metadata_sectors>
Here is a practical example (using hybrid of lvm and dmsetup commands):
--
dm-devel mailing list
dm-devel@redhat.com
https://www.redhat.com/mailman/listinfo/dm-devel
01-28-2010, 01:04 PM
Wicher Minnaard
How to determine when a snapshot has finished merging?
On Tue, Jan 26, 2010 at 9:49 PM, Mike Snitzer <snitzer@redhat.com> wrote:
> On Sun, Jan 24 2010 at *9:12am -0500,
> Wicher Minnaard <wicher@gavagai.eu> wrote:
<snip/>
>> But I don't know how to determine whether the merge has completed. I
>> looked around in /proc and /sys, but those contained no obvious clues
>> (not obvious to me, that is). My kernel logs never mention any dm
>> activity (whereas the md driver is quite chatty and features
>> /proc/mdstat).
>> Any suggestions greatly appreciated.
>
> Hi Wicher,
>
> The status for the snapshot-merge (and snapshot) target was extended to
> include the "allocated metadata sectors" at the end of its status
> output, see commit: http://git.kernel.org/linus/985903bb3a6d98
<snip/>
Thanks so much for the pointers & examples, Mike. I got it working!
--
dm-devel mailing list
dm-devel@redhat.com
https://www.redhat.com/mailman/listinfo/dm-devel