[To be translated] Nova:libvirt image 的生命周期
翻译自:http://www.pixelbeat.org/docs/openstack_libvirt_images/
The main stages of a Virtual Machine disk image as it transfers through OpenStack to be booted under libvirt are:
Initially the image is downloaded from glance and cached in libvirt base. We'll consider the options for handling a qcow2 image stored in glance, as that format can be downloaded quite efficiently from glance as it supports compression, and image sparseness can be maintained. This article will focus on the flow and transformations in "libvirt base", which is used to cache, preprocess and optionally back, VM disk images.
Configuration
First we'll summarize the config variables involved, before presenting the operations associated with each config combination, in each OpenStack release. Note I'm describing upstream OpenStack here, and not my employer's Red Hat OpenStack which has back-ported enhancements between versions where appropriate.
| Config | Default | Release | Description |
| use_cow_images | True | Cactus | Whether to use CoW images for "libvirt instance disks" |
| force_raw_images | True | Essex | Allows disabling convert to raw in "libvirt base" for operational reasons |
| libvirt_images_type | 'default' | Folsom | Deprecates use_cow_images and allows selecting LVM libvirt images |
| [libvirt]/images_type | 'default' | Icehouse | Deprecates libvirt_images_type in the [DEFAULT] section |
| preallocate_images | 'none' | Grizzly | Instance disks preallocation mode. 'space' => fallocate images |
| resize_fs_using_block_device | False | Havana | Allows enabling of direct resize for qcow2 images |
The main reason that raw images are written in "libvirt base" by default (since Diablo), is to remove possible compression from the qcow2 image received from glance. Note compression in qcow2 images is read only, and so this will impact reads from unwritten portions of the qcow2 image. Users may want to change this option, depending on CPU resources and I/O bandwidth available. For example, systems with slower I/O or less space available, may want to trade the higher CPU requirements of compression, to minimize input bandwidth. Note raw images are used unconditionally with libvirt_images_type=lvm.
Whether to use CoW images for the "libvirt instance disks" also depends on I/O characteristics of the user's system. Without CoW, more space will be used for common parts of the disk image, but on the flip side depending on the backing store and host caching, there may be better concurrency achieved by having each VM operate on its own copy.
Enabling preallocation of space for the "libvirt instance disks" can help with both space guarantees and I/O performance. Even when not using CoW instance disks, the copy each VM gets is sparse and so the VM may fail unexpectedly at run time with ENOSPC. By running fallocate(1) on the instance disk images, we immediately and efficiently allocate the space for them in the file system (if supported). Also run time performance should be improved as the file system doesn't have to dynamically allocate blocks at run time, reducing CPU overhead and more importantly file fragmentation.
Disk image operations
For each release and config combination, here are the created files and associated operations in getting a qcow2 image from glance through to being booted in a libvirt Virtual Machine.
Folsom, force_raw_images=True, use_cow_images=True
This results in each instance booting from a CoW image, backed by a resized raw image.
| Nova command | Source code | Notes |
| wget http://glance/$image -O base_/$hex.part | images.fetch | |
| qemu-img convert -O raw $hex.part $hex.converted | images.fetch_to_raw | Creates sparse file |
| mv $hex.converted $hex; rm $hex.part | images.fetch_to_raw | |
| imagebackend.create_image | ||
| cp $hex $hex_$size | libvirt.utils.copy_image | Creates sparse file |
| qemu-img resize $hex_$size $size | disk.extend | |
| resize2fs $hex_size | disk.extend | Unpartitioned ext[234] |
| qemu-img create -f qcow2 -o backing_file=... $instance_dir/disk | libvirt.utils.create_image |
Folsom, force_raw_images=True, use_cow_images=False
This results in each instance booting from a copy of a resized raw image.
| Nova command | Source code | Notes |
| wget http://glance/$image -O base_/$hex.part | images.fetch | |
| qemu-img convert -O raw $hex.part $hex.converted | images.fetch_to_raw | Creates sparse file |
| mv $hex.converted $hex; rm $hex.part | images.fetch_to_raw | |
| imagebackend.create_image | ||
| cp $hex $instance_dir/disk | libvirt.utils.copy_image | |
| qemu-img resize disk | disk.extend | |
| resize2fs disk | disk.extend | Unpartitioned ext[234] |
Folsom, force_raw_images=False, use_cow_images=False
This results in each instance booting from a copy of a resized qcow2 image.
| Nova command | Source code | Notes |
| wget http://glance/$image -O base_/$hex.part | images.fetch | |
| mv $hex.part $hex | images.fetch_to_raw | |
| imagebackend.create_image | ||
| cp $hex $instance_dir/disk | libvirt.utils.copy_image | |
| qemu-img resize disk | disk.extend | |
| resize2fs disk | disk.extend | Ignored for qcow2 ¹ |
Folsom, force_raw_images=False, use_cow_images=True
This results in each instance booting from a CoW image, backed by a resized qcow2 image.
| Nova command | Source code | Notes |
| wget http://glance/$image -O base_/$hex.part | images.fetch | |
| mv $hex.part $hex | images.fetch_to_raw | |
| imagebackend.create_image | ||
| cp $hex $hex_$size | libvirt.utils.copy_image | |
| qemu-img resize $hex_$size $size | disk.extend | |
| resize2fs $hex_size | disk.extend | Ignored for qcow2 ¹ |
| qemu-img create -f qcow2 -o backing_file=... $instance_dir/disk | libvirt.utils.create_image |
Grizzly, force_raw_images=True, use_cow_images=True
Grizzly introduces a change for use_cow_images=True, where it will resize in the $instance_dir rather than in base_. So the resize will not be cached, but this is minimal CPU tradeoff per instance boot, for the extra space saved in base_. We'll just present the default config values here which illustrates the only significant change from Folsom.
This results in each instance booting from a resized CoW image, backed by a raw image.
| Nova command | Source code | Notes |
| wget http://glance/$image -O base_/$hex.part | images.fetch | |
| qemu-img convert -O raw $hex.part $hex.converted | images.fetch_to_raw | Creates sparse file |
| mv $hex.converted $hex; rm $hex.part | images.fetch_to_raw | |
| imagebackend.create_image | ||
| qemu-img create -f qcow2 -o backing_file=... $instance_dir/disk | libvirt.utils.create_image | |
| qemu-img resize disk $size | disk.extend | |
| resize2fs disk | disk.extend | Grizzly always ignores ² |
[² Update Sep 2013: Stanislaw Pitucha also noticed that the above referenced Grizzly change introduced a regression where unpartitioned qcow2 images were no longer resized. See the Havana resize_fs_using_block_device option below for details.]
Grizzly, preallocate_images='space'
Grizzly also has new fallocate functionality in this area controlled by the preallocate_images config option. If that is set to 'space', then after the operations above, the $instance_dir/ images will be fallocated to immediately determine if enough space is available, and to possibly improve VM I/O performance due to ongoing allocation avoidance, and better locality of block allocations.
¹ Havana, resize_fs_using_block_device=False
As noted in the first Grizzly change above, Stanislaw Pitucha noticed that change introduced a regression where unpartitioned qcow2 images were no longer resized. He supplied a fix to resize qcow directly rather than relying on the raw image being available, which would also cater for the force_raw_images=False case that even pre Grizzly did not. This new option can be used to enable this support, but there are some large performance and possible security issues so it's not enabled by default. This support will be available in the upcoming Havana release.
General performance considerations
Performance has improved in this area through each OpenStack release, with some of the main topics to consider, for past and future changes being:
Minimize I/O
Note these were implemented in Essex:
- Copy images, then resize, rather than vice versa
- Directly generating images in the $instance_dir/
- Intelligent reading of sparse input
- Reproduction of sparse input on output
- Use compression
Note this was implemented in Folsom:
- Avoid file sytem overhead by setting libvirt_images_type=lvm. Note file system overhead varies depending on file system
Minimize storage
- Use compression
- Use sparse output/generation
- Avoid resized copies when not needed
- Use CoW if appropriate
Improve caching
- Avoid thrashing the page cache with large intermediate images
- Improve low level caching through better storage allocation
Preprocessing
- Preprocessing may be possible on images like preallocation=metadata which trades off initial CPU cost for possibly much better run time I/O performance
- Such cost would be some what alleviated by having asynchronous population of the base_ cache
[To be translated] Nova:libvirt image 的生命周期的更多相关文章
- KVM 介绍(6):Nova 通过 libvirt 管理 QEMU/KVM 虚机 [Nova Libvirt QEMU/KVM Domain]
学习 KVM 的系列文章: (1)介绍和安装 (2)CPU 和 内存虚拟化 (3)I/O QEMU 全虚拟化和准虚拟化(Para-virtulizaiton) (4)I/O PCI/PCIe设备直接分 ...
- [译] libvirt 虚机的生命周期 (Libvirt Virtual Machine Lifecycle)
翻译自:http://wiki.libvirt.org/page/VM_lifecycle 这篇文章描述虚机生命周期的基本概念.其目的在于在一篇文章中提供完整的关于虚机创建.运行.停止.迁移和删除 ...
- react组件的生命周期
写在前面: 阅读了多遍文章之后,自己总结了一个.一遍加强记忆,和日后回顾. 一.实例化(初始化) var Button = React.createClass({ getInitialState: f ...
- 浅谈 Fragment 生命周期
版权声明:本文为博主原创文章,未经博主允许不得转载. 微博:厉圣杰 源码:AndroidDemo/Fragment 文中如有纰漏,欢迎大家留言指出. Fragment 是在 Android 3.0 中 ...
- C# MVC 5 - 生命周期(应用程序生命周期&请求生命周期)
本文是根据网上的文章总结的. 1.介绍 本文讨论ASP.Net MVC框架MVC的请求生命周期. MVC有两个生命周期,一为应用程序生命周期,二为请求生命周期. 2.应用程序生命周期 应用程序生命周期 ...
- UIViewController生命周期-完整版
一.UIViewController 的生命周期 下面带 (NSObject)的方法是NSObject提供的方法.其他的都是UIViewController 提供的方法. load (NSObje ...
- angular2系列教程(十一)路由嵌套、路由生命周期、matrix URL notation
今天我们要讲的是ng2的路由的第二部分,包括路由嵌套.路由生命周期等知识点. 例子 例子仍然是上节课的例子:
- Spring中Bean的作用域、生命周期
Bean的作用域.生命周期 Bean的作用域 Spring 3中为Bean定义了5中作用域,分别为singleton(单例).protot ...
- Autofac - 生命周期
实例生命周期决定在同一个服务的每个请求的实例是如何共享的. 当请求一个服务的时候,Autofac会返回一个单例 (single instance作用域), 一个新的对象 (per lifetime作用 ...
随机推荐
- c#事务用法
ado.net2.0的SqlTransaction使用方法 /////ado.net1.0中使用Transacation(事务) string connectionString = "dat ...
- jQuery中的事件与动画 (你的明天Via Via)
众所周知,页面在加载时,会触发load事件:当用户单击某个按钮时,会触发该按钮的click事件. 这些事件就像日常生活中,人们按下开关,灯就亮了(或者灭了),往游戏机里投入游戏币就可以启动游戏一样, ...
- 简单可用好实现的 HA 高可用设计
本文为作者原创,如需转载请注明出处. 1. 实现的功能 一主多备,自动选主 启动记录可查询 2. 前置需求 一台数据库用以记录,如 MySQL.Redis.MongoDB 等.关键是设计中的思想,用啥 ...
- [.NET] 使用Json.NET提供依赖注入功能(Dependence Injection)
[.NET] 使用Json.NET提供依赖注入功能(Dependence Injection) 前言 在一些小型项目的开发情景里,系统不需要大型DI Framework所提供的:单一对象生成.生命周期 ...
- FROONT – 超棒的可视化响应式网页设计工具
FROONT 是一个基于 Web 的设计工具,在浏览器中运行,使得各类可视化设计的人员都能进行响应式的网页设计,即使是那些没有任何编码技能的设计师.FROONT 使得响应式网页设计能够可视化操作,能够 ...
- 原生JS:Date对象详细参考
Date对象:基于1970年1月1日(世界标准时间)起的毫秒数 本文参考MDN做的详细整理,方便大家参考MDN 构造函数: new Date(); 依据系统设置的当前时间来创建一个Date对象. ne ...
- 深入源码分析使用jQuery连续发起jsonp请求失败的原因
jQuery的 jsonp 大家应该是十分熟悉了.曾遇到过这样的需求1.希望请求几个相似的内容添加到页面2.请求的内容一定时间内是固定不变的,希望做个缓存. 于是脑子一拍写下了类似这样的代码 for( ...
- SharePoint 2010: Export User Profile Properties to a Text File or Excel using PowerShell
导出到txt [void][System.Reflection.Assembly]::LoadWithPartialName("Microsoft.Office.Server") ...
- ajax点赞功能
- 【Android】HorizontalScrollView内子控件横向拖拽
前言 网上ListView上下拖动的例子有,效果也很好,但是项目要横着拖的,只要硬着头皮自己写(主要是没找到合适的),参考文章1修改而来,分享一下. 声明 欢迎转载,但请保留文章原始出处:) 博客园 ...