(I'm including the xen-devel list on this, as things are starting to get interesting). MZ> do u have any benchmark results about overhead? So, I've spent some time over the last week working to improve performance and collect some benchmark data. I moved to using slab caches for the request and remap objects, which helped a little. I also added a poll() method to the control device, which improved performance significantly. Finally, I changed the internal remap storage data structure to a hash table, which had a very large performance impact (about 8x). Copying data to a device backed by dm-userspace presents a worst-case scenario, especially with a small block-size like what qcow uses. In one of my tests, I copy about 20MB of data to a dm-userspace device, backed by files hooked up to the loopback driver. I compare this with a "control" of a single loop-mounted image file (i.e., without dm-userspace or CoW). I measured the time to mount, copy, and unmount the device, which (with the recent performance improvements) are approximately: Normal Loop: 1 seconds dm-userspace/qcow: 10 seconds For comparison, before adding poll() and the hash table, the dm-userspace number was over 70 seconds. One of the most interesting cases for us, however, is providing a CoW-based VM disk image, which is mostly used for reading, with a small amount of writing for configuration data. To test this, I used Xen to compare a fresh FC4 boot (firstboot, where things like SSH keys are generated and written to disk) that used an LVM volume as root to using dm-userspace (and loopback-files) as the root. The numbers are approximately: LVM root: 26 seconds dm-userspace/qcow: 27 seconds Note that this does not yet include any read-ahead type behavior, nor does it include priming the kernel module with remaps at create-time (which results in a few initial compulsory "misses"). Also, I removed the remap expiration functionality while adding the hash table and have not yet added it back, so that may further improve performance for large amounts of remaps (and bucket collisions). Here is a link to a patch against 2.6.16.14: http://static.danplanet.com/dm-userspace/dmu-2.6.16.14-patch Here are links to the userspace library, as well as the cow daemon, which provides qcow support: http://static.danplanet.com/dm-userspace/libdmu-0.2.tar.gz http://static.danplanet.com/dm-userspace/cowd-0.1.tar.gz (Note that the daemon is still rather rough, and the qcow implementation has some bugs. However, it works for light testing and the occasional luck-assisted heavy testing) As always, comments welcome and appreciated :) -- Dan Smith IBM Linux Technology Center Open Hypervisor Team email: [email protected]
Attachment:
pgph6euodamvQ.pgp
Description: PGP signature
- Follow-Ups:
- Re: [dm-devel] [RFC] dm-userspace
- From: Ming Zhang <[email protected]>
- Re: [dm-devel] [RFC] dm-userspace
- References:
- [RFC] dm-userspace
- From: Dan Smith <[email protected]>
- Re: [dm-devel] [RFC] dm-userspace
- From: Ming Zhang <[email protected]>
- [RFC] dm-userspace
- Prev by Date: Re: [PATCH] PCI Bus Parity Status-broken hardware attribute, EDAC foundation
- Next by Date: Re: [RFC PATCH 05/35] Add sync bitops
- Previous by thread: Re: [dm-devel] [RFC] dm-userspace
- Next by thread: Re: [dm-devel] [RFC] dm-userspace
- Index(es):