<?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: MySQL: Innodb Memory Usage Formula</title>
	<atom:link href="http://www.rustyrazorblade.com/2008/12/mysql-innodb-memory-usage-formula/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rustyrazorblade.com/2008/12/mysql-innodb-memory-usage-formula/</link>
	<description>Tech Thoughts, Mostly on LAMP - by Jon Haddad</description>
	<lastBuildDate>Mon, 23 Jan 2012 09:03:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Ole Morten Halvorsen</title>
		<link>http://www.rustyrazorblade.com/2008/12/mysql-innodb-memory-usage-formula/comment-page-1/#comment-33414</link>
		<dc:creator>Ole Morten Halvorsen</dc:creator>
		<pubDate>Fri, 26 Dec 2008 13:50:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.rustyrazorblade.com/?p=455#comment-33414</guid>
		<description>(Seems like the links was stripped from my previous comment)

You could also try http://www.omh.cc/mycnf/ or http://wiki.mysqltuner.com/MySQLTuner which both will assist you in figuring out MySQL memory usage.</description>
		<content:encoded><![CDATA[<p>(Seems like the links was stripped from my previous comment)</p>
<p>You could also try <a href="http://www.omh.cc/mycnf/" rel="nofollow">http://www.omh.cc/mycnf/</a> or <a href="http://wiki.mysqltuner.com/MySQLTuner" rel="nofollow">http://wiki.mysqltuner.com/MySQLTuner</a> which both will assist you in figuring out MySQL memory usage.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ole Morten Halvorsen</title>
		<link>http://www.rustyrazorblade.com/2008/12/mysql-innodb-memory-usage-formula/comment-page-1/#comment-33413</link>
		<dc:creator>Ole Morten Halvorsen</dc:creator>
		<pubDate>Fri, 26 Dec 2008 13:49:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.rustyrazorblade.com/?p=455#comment-33413</guid>
		<description>Hi,

You could also try  or  which both will assist you in figuring out MySQL memory usage.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>You could also try  or  which both will assist you in figuring out MySQL memory usage.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shlomi Noach</title>
		<link>http://www.rustyrazorblade.com/2008/12/mysql-innodb-memory-usage-formula/comment-page-1/#comment-33341</link>
		<dc:creator>Shlomi Noach</dc:creator>
		<pubDate>Thu, 25 Dec 2008 03:55:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.rustyrazorblade.com/?p=455#comment-33341</guid>
		<description>Hi,

Missing from the equation is the thread_stack_size (per connection), query_cache_size (global).

There isn&#039;t anything I would add to the equation which relates to InnoDB. buffer_pool_size is the only thing I consider (to be honest, I don&#039;t even count query_cache_size as this usually measures in a few MB)

Regards</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Missing from the equation is the thread_stack_size (per connection), query_cache_size (global).</p>
<p>There isn&#8217;t anything I would add to the equation which relates to InnoDB. buffer_pool_size is the only thing I consider (to be honest, I don&#8217;t even count query_cache_size as this usually measures in a few MB)</p>
<p>Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jon</title>
		<link>http://www.rustyrazorblade.com/2008/12/mysql-innodb-memory-usage-formula/comment-page-1/#comment-33316</link>
		<dc:creator>jon</dc:creator>
		<pubDate>Wed, 24 Dec 2008 19:17:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.rustyrazorblade.com/?p=455#comment-33316</guid>
		<description>Hi Shlomi,
Yes, it&#039;s the worst case scenario.  However, I&#039;ve seen it happen often enough to know that a system won&#039;t recover once it starts paging to disk.  

What else would you factor in, assuming only innodb is in use?</description>
		<content:encoded><![CDATA[<p>Hi Shlomi,<br />
Yes, it&#8217;s the worst case scenario.  However, I&#8217;ve seen it happen often enough to know that a system won&#8217;t recover once it starts paging to disk.  </p>
<p>What else would you factor in, assuming only innodb is in use?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shlomi Noach</title>
		<link>http://www.rustyrazorblade.com/2008/12/mysql-innodb-memory-usage-formula/comment-page-1/#comment-33293</link>
		<dc:creator>Shlomi Noach</dc:creator>
		<pubDate>Wed, 24 Dec 2008 06:07:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.rustyrazorblade.com/?p=455#comment-33293</guid>
		<description>Hi,

Just a few remarks: 
* The formula you&#039;ve presented does not relate directly to InnoDB. The innodb_buffer_pool_size is in fact the only innodb related parameter there.

* It also formulates a worst case scenario where all possible connections are open, all querying, all using the sort buffer (you may as well have thrown in the join_buffer_size).

* The formula also measures key_buffer_size. If you&#039;re using MyISAM tables, than make sure the memory sum of the formula is well below system memory, since MyISAM really needs OS page cache.

Regards</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Just a few remarks:<br />
* The formula you&#8217;ve presented does not relate directly to InnoDB. The innodb_buffer_pool_size is in fact the only innodb related parameter there.</p>
<p>* It also formulates a worst case scenario where all possible connections are open, all querying, all using the sort buffer (you may as well have thrown in the join_buffer_size).</p>
<p>* The formula also measures key_buffer_size. If you&#8217;re using MyISAM tables, than make sure the memory sum of the formula is well below system memory, since MyISAM really needs OS page cache.</p>
<p>Regards</p>
]]></content:encoded>
	</item>
</channel>
</rss>

