<?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>Comments on: A metric for MySQL load average</title>
	<atom:link href="http://www.xaprb.com/blog/2008/11/26/a-metric-for-mysql-load-average/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.xaprb.com/blog/2008/11/26/a-metric-for-mysql-load-average/</link>
	<description>Stay curious!</description>
	<lastBuildDate>Thu, 09 Feb 2012 09:56:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: thorko</title>
		<link>http://www.xaprb.com/blog/2008/11/26/a-metric-for-mysql-load-average/#comment-16637</link>
		<dc:creator>thorko</dc:creator>
		<pubDate>Sat, 04 Jul 2009 09:48:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/?p=714#comment-16637</guid>
		<description>Hi,
wrote a little perl script which does the above.
Get it here: &lt;a href=&quot;http://www.thorko.de/thorko/scripts/mysql_stats.pl&quot; rel=&quot;nofollow&quot;&gt;http://www.thorko.de/thorko/scripts/mysql_stats.pl&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Hi,<br />
wrote a little perl script which does the above.<br />
Get it here: <a href="http://www.thorko.de/thorko/scripts/mysql_stats.pl" rel="nofollow">http://www.thorko.de/thorko/scripts/mysql_stats.pl</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Consumo e Ã­ndices de carga MySQL :: JMGiner.eu</title>
		<link>http://www.xaprb.com/blog/2008/11/26/a-metric-for-mysql-load-average/#comment-15624</link>
		<dc:creator>Consumo e Ã­ndices de carga MySQL :: JMGiner.eu</dc:creator>
		<pubDate>Tue, 06 Jan 2009 15:24:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/?p=714#comment-15624</guid>
		<description>[...] mÃ¡s informaciÃ³n sobre el script podÃ©is visitar la web del Xapbr   Comparte la [...]</description>
		<content:encoded><![CDATA[<p>[...] mÃ¡s informaciÃ³n sobre el script podÃ©is visitar la web del Xapbr   Comparte la [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jain</title>
		<link>http://www.xaprb.com/blog/2008/11/26/a-metric-for-mysql-load-average/#comment-15481</link>
		<dc:creator>Jain</dc:creator>
		<pubDate>Sat, 29 Nov 2008 10:15:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/?p=714#comment-15481</guid>
		<description>I have a QuadCore Server(4 Cores). How can i configure mysql to use all the four cores. Right now mysql process use only one core whose utilization goes upto 95%.</description>
		<content:encoded><![CDATA[<p>I have a QuadCore Server(4 Cores). How can i configure mysql to use all the four cores. Right now mysql process use only one core whose utilization goes upto 95%.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian K. Jones</title>
		<link>http://www.xaprb.com/blog/2008/11/26/a-metric-for-mysql-load-average/#comment-15475</link>
		<dc:creator>Brian K. Jones</dc:creator>
		<pubDate>Fri, 28 Nov 2008 02:09:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/?p=714#comment-15475</guid>
		<description>Hi again, 

True, this calculation has some minor issues, but no more so than the &#039;top&#039; output on a typical *nix system, to be honest. In general, if you start out with the question &quot;what&#039;s the problem you&#039;re trying to solve?&quot;, you can probably get to a better solution than either loadavg or this solution for mysql. 

There are two problems here, imho: 

1. The calculation is doomed to inaccuracy, though admittedly how accurate you need to be here is also a question worth addressing -- I&#039;m sure most people reading this are aware that this is really a &quot;rough idea&quot; kind of figure. 

2. The relevance of the information you get back from this is also in question. As both a sysadmin and a DBA, loadavg to me is really only relevant if the server *isn&#039;t* bored, and at that point, it&#039;s just a starting point to determine &quot;ok, the system is busy, but now I need to know what actual resource is being hogged and killing performance&quot;. 

With MySQL, my experience has been that the way a lot of people set it up (or... don&#039;t), the problem is IO, which points at all kinds of other issues. The point isn&#039;t what the problem is, here. The point is that loadavg is almost always less relevant than a lot of other data points (like, say, iostat output, for just one example)

So, to that end, I think that the solution presented here is probably &quot;good enough&quot;, and you&#039;d need to question the utility of something that is a whole lot more accurate, unless you just have some downtime to kill between client engagements ;-)</description>
		<content:encoded><![CDATA[<p>Hi again, </p>
<p>True, this calculation has some minor issues, but no more so than the &#8216;top&#8217; output on a typical *nix system, to be honest. In general, if you start out with the question &#8220;what&#8217;s the problem you&#8217;re trying to solve?&#8221;, you can probably get to a better solution than either loadavg or this solution for mysql. </p>
<p>There are two problems here, imho: </p>
<p>1. The calculation is doomed to inaccuracy, though admittedly how accurate you need to be here is also a question worth addressing &#8212; I&#8217;m sure most people reading this are aware that this is really a &#8220;rough idea&#8221; kind of figure. </p>
<p>2. The relevance of the information you get back from this is also in question. As both a sysadmin and a DBA, loadavg to me is really only relevant if the server *isn&#8217;t* bored, and at that point, it&#8217;s just a starting point to determine &#8220;ok, the system is busy, but now I need to know what actual resource is being hogged and killing performance&#8221;. </p>
<p>With MySQL, my experience has been that the way a lot of people set it up (or&#8230; don&#8217;t), the problem is IO, which points at all kinds of other issues. The point isn&#8217;t what the problem is, here. The point is that loadavg is almost always less relevant than a lot of other data points (like, say, iostat output, for just one example)</p>
<p>So, to that end, I think that the solution presented here is probably &#8220;good enough&#8221;, and you&#8217;d need to question the utility of something that is a whole lot more accurate, unless you just have some downtime to kill between client engagements ;-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jan</title>
		<link>http://www.xaprb.com/blog/2008/11/26/a-metric-for-mysql-load-average/#comment-15471</link>
		<dc:creator>Jan</dc:creator>
		<pubDate>Thu, 27 Nov 2008 09:32:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/?p=714#comment-15471</guid>
		<description>Doesn&#039;t the measuring method itself (SHOW PROCESSLIST) increase the number of queries and bias the results?

The more status information you&#039;ll retrieve with a query the more the performance of these measurement queries will affect the result. 

I am not sure if the bias is significant or not, probably it is because the measurement queries need to access and lock global variables (SHOW GLOBAL STATUS).</description>
		<content:encoded><![CDATA[<p>Doesn&#8217;t the measuring method itself (SHOW PROCESSLIST) increase the number of queries and bias the results?</p>
<p>The more status information you&#8217;ll retrieve with a query the more the performance of these measurement queries will affect the result. </p>
<p>I am not sure if the bias is significant or not, probably it is because the measurement queries need to access and lock global variables (SHOW GLOBAL STATUS).</p>
]]></content:encoded>
	</item>
</channel>
</rss>

