-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
qemu_nbd: Select cache and aio automatically
Previously we use --cache=writeback and --aio=threads so we can access images on file system that does not support direct I/O. This is sometimes faster than --cache=none and --aio=native, but typically give less consistent results, and pollute the page cache with image data, which is mostly likely will never be used. When uploading and downloading images on a hypervisor, using the page cache can be harmful and cause sanlock timeouts when the kernel try to flush huge images to the underlying storage. Future qemu-img and qemu-nbd are expected to implement "auto" cache and aio modes, selecting --cache=none and --aio=native if possible. This change implements this in our qemu_nbd wrapper so we can use this now with current qemu version. When starting qemu_nbd.Server(), if cache was not specified, we select cache="none" if the image can be opened with direct I/O. If aio was not specified, we select it based on the cache value. Signed-off-by: Nir Soffer <[email protected]>
- Loading branch information
Showing
3 changed files
with
121 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters