<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>评论：iostat来对linux硬盘IO性能进行了解</title>
	<atom:link href="http://www.php-oa.com/2009/02/03/iostat.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.php-oa.com/2009/02/03/iostat.html</link>
	<description>学会做一个懒惰的人</description>
	<lastBuildDate>Thu, 11 Mar 2010 04:44:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>来自：[转]iostat来对Linux硬盘IO性能进行了解 &#124; P.Linux Laboratory</title>
		<link>http://www.php-oa.com/2009/02/03/iostat.html#comment-1331</link>
		<dc:creator>[转]iostat来对Linux硬盘IO性能进行了解 &#124; P.Linux Laboratory</dc:creator>
		<pubDate>Fri, 30 Oct 2009 02:47:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.php-oa.com/?p=1009#comment-1331</guid>
		<description>[...] 本文链接: http://www.php-oa.com/2009/02/03/iostat.html [...]</description>
		<content:encoded><![CDATA[<p>[...] 本文链接: <a href="http://www.php-oa.com/2009/02/03/iostat.html" rel="nofollow">http://www.php-oa.com/2009/02/03/iostat.html</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：michael.ma的奋斗人生 &#187; Blog Archive &#187; （转贴）根据status信息对MySQL服务器进行优化</title>
		<link>http://www.php-oa.com/2009/02/03/iostat.html#comment-1120</link>
		<dc:creator>michael.ma的奋斗人生 &#187; Blog Archive &#187; （转贴）根据status信息对MySQL服务器进行优化</dc:creator>
		<pubDate>Fri, 07 Aug 2009 06:22:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.php-oa.com/?p=1009#comment-1120</guid>
		<description>[...] 文中提到一些数字都是参考值，了解基本原理就可以，除了MySQL提供的各种status值外，操作系统的一些性能指标也很重要，比如常用的top,iostat等，尤其是iostat，现在的系统瓶颈一般都在磁盘IO上，关于iostat的使用，可以参考：http://www.php-oa.com/2009/02/03/iostat.html [...]</description>
		<content:encoded><![CDATA[<p>[...] 文中提到一些数字都是参考值，了解基本原理就可以，除了MySQL提供的各种status值外，操作系统的一些性能指标也很重要，比如常用的top,iostat等，尤其是iostat，现在的系统瓶颈一般都在磁盘IO上，关于iostat的使用，可以参考：http://www.php-oa.com/2009/02/03/iostat.html [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：tonker</title>
		<link>http://www.php-oa.com/2009/02/03/iostat.html#comment-1049</link>
		<dc:creator>tonker</dc:creator>
		<pubDate>Tue, 07 Jul 2009 09:38:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.php-oa.com/?p=1009#comment-1049</guid>
		<description>IO调度器的总体目标是希望让磁头能够总是往一个方向移动,移动到底了再往反方向走,这恰恰就是现实生活中的电梯模型,所以IO调度器也被叫做电梯.(elevator)而相应的算法也就被叫做电梯算法.而Linux中IO调度的电梯算法有好几种,一个叫做as(Anticipatory),一个叫做cfq(Complete Fairness Queueing),一个叫做deadline,还有一个叫做noop(No Operation).具体使用哪种算法我们可以在启动的时候通过内核参数elevator来指定.
另一方面我们也可以单独的为某个设备指定它所采用的IO调度算法,这就通过修改在/sys/block/sda/queue/目录下面的scheduler文件.比如我们可以先看一下我的这块硬盘:

[root@localhost ~]# cat /sys/block/sda/queue/scheduler

noop anticipatory deadline [cfq]

可以看到我们这里采用的是cfq.</description>
		<content:encoded><![CDATA[<p>IO调度器的总体目标是希望让磁头能够总是往一个方向移动,移动到底了再往反方向走,这恰恰就是现实生活中的电梯模型,所以IO调度器也被叫做电梯.(elevator)而相应的算法也就被叫做电梯算法.而Linux中IO调度的电梯算法有好几种,一个叫做as(Anticipatory),一个叫做cfq(Complete Fairness Queueing),一个叫做deadline,还有一个叫做noop(No Operation).具体使用哪种算法我们可以在启动的时候通过内核参数elevator来指定.<br />
另一方面我们也可以单独的为某个设备指定它所采用的IO调度算法,这就通过修改在/sys/block/sda/queue/目录下面的scheduler文件.比如我们可以先看一下我的这块硬盘:</p>
<p>[root@localhost ~]# cat /sys/block/sda/queue/scheduler</p>
<p>noop anticipatory deadline [cfq]</p>
<p>可以看到我们这里采用的是cfq.</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：淡淡的牛 &#187; Blog Archive &#187; iostat来对linux硬盘IO性能进行了解</title>
		<link>http://www.php-oa.com/2009/02/03/iostat.html#comment-931</link>
		<dc:creator>淡淡的牛 &#187; Blog Archive &#187; iostat来对linux硬盘IO性能进行了解</dc:creator>
		<pubDate>Tue, 09 Jun 2009 07:56:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.php-oa.com/?p=1009#comment-931</guid>
		<description>[...] 转载自: http://www.php-oa.com/2009/02/03/iostat.html [...]</description>
		<content:encoded><![CDATA[<p>[...] 转载自: <a href="http://www.php-oa.com/2009/02/03/iostat.html" rel="nofollow">http://www.php-oa.com/2009/02/03/iostat.html</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：lw</title>
		<link>http://www.php-oa.com/2009/02/03/iostat.html#comment-790</link>
		<dc:creator>lw</dc:creator>
		<pubDate>Thu, 09 Apr 2009 06:15:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.php-oa.com/?p=1009#comment-790</guid>
		<description>老大，文中await为78ms，表示请求过于集中，但avgqu-sz为2.23，表明请求是分散过来的，前后是不是矛盾了？</description>
		<content:encoded><![CDATA[<p>老大，文中await为78ms，表示请求过于集中，但avgqu-sz为2.23，表明请求是分散过来的，前后是不是矛盾了？</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：根据status信息对MySQL服务器进行优化（二） &#187; 超群.com的博客</title>
		<link>http://www.php-oa.com/2009/02/03/iostat.html#comment-766</link>
		<dc:creator>根据status信息对MySQL服务器进行优化（二） &#187; 超群.com的博客</dc:creator>
		<pubDate>Wed, 25 Mar 2009 07:07:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.php-oa.com/?p=1009#comment-766</guid>
		<description>[...] 文中提到一些数字都是参考值，了解基本原理就可以，除了MySQL提供的各种status值外，操作系统的一些性能指标也很重要，比如常用的top,iostat等，尤其是iostat，现在的系统瓶颈一般都在磁盘IO上，关于iostat的使用，可以参考：http://www.php-oa.com/2009/02/03/iostat.html [...]</description>
		<content:encoded><![CDATA[<p>[...] 文中提到一些数字都是参考值，了解基本原理就可以，除了MySQL提供的各种status值外，操作系统的一些性能指标也很重要，比如常用的top,iostat等，尤其是iostat，现在的系统瓶颈一般都在磁盘IO上，关于iostat的使用，可以参考：http://www.php-oa.com/2009/02/03/iostat.html [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：iostat来对linux硬盘IO性能进行了解 &#124; 漩涡-UuVoo</title>
		<link>http://www.php-oa.com/2009/02/03/iostat.html#comment-681</link>
		<dc:creator>iostat来对linux硬盘IO性能进行了解 &#124; 漩涡-UuVoo</dc:creator>
		<pubDate>Mon, 16 Feb 2009 16:19:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.php-oa.com/?p=1009#comment-681</guid>
		<description>[...] iostat来对linux硬盘IO性能进行了解    February 16th, 2009  &#124; Tags: io, iostat, linux    本文链接: http://www.php-oa.com/2009/02/03/iostat.html [...]</description>
		<content:encoded><![CDATA[<p>[...] iostat来对linux硬盘IO性能进行了解    February 16th, 2009  | Tags: io, iostat, linux    本文链接: <a href="http://www.php-oa.com/2009/02/03/iostat.html" rel="nofollow">http://www.php-oa.com/2009/02/03/iostat.html</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：admin</title>
		<link>http://www.php-oa.com/2009/02/03/iostat.html#comment-670</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 06 Feb 2009 11:05:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.php-oa.com/?p=1009#comment-670</guid>
		<description>抱歉，我也不清楚</description>
		<content:encoded><![CDATA[<p>抱歉，我也不清楚</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：mdnght</title>
		<link>http://www.php-oa.com/2009/02/03/iostat.html#comment-667</link>
		<dc:creator>mdnght</dc:creator>
		<pubDate>Thu, 05 Feb 2009 08:44:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.php-oa.com/?p=1009#comment-667</guid>
		<description>扶凯大哥,拜读了您的文章身受启发,但有一事不明
kernel 2.6 如何调整内核 elevator 算法(调整/sys/block 结构)

期待您的回复

谢谢</description>
		<content:encoded><![CDATA[<p>扶凯大哥,拜读了您的文章身受启发,但有一事不明<br />
kernel 2.6 如何调整内核 elevator 算法(调整/sys/block 结构)</p>
<p>期待您的回复</p>
<p>谢谢</p>
]]></content:encoded>
	</item>
</channel>
</rss>
