<?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: what read_buffer_size value is optimal ?</title>
	<atom:link href="http://www.mysqlperformanceblog.com/2007/09/17/mysql-what-read_buffer_size-value-is-optimal/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mysqlperformanceblog.com/2007/09/17/mysql-what-read_buffer_size-value-is-optimal/</link>
	<description>Everything about MySQL Performance</description>
	<lastBuildDate>Sat, 21 Nov 2009 05:23:57 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: A Brief Introduction to MySQL Performance Tuning &#124; Gary Pendergast</title>
		<link>http://www.mysqlperformanceblog.com/2007/09/17/mysql-what-read_buffer_size-value-is-optimal/comment-page-1/#comment-644640</link>
		<dc:creator>A Brief Introduction to MySQL Performance Tuning &#124; Gary Pendergast</dc:creator>
		<pubDate>Tue, 01 Sep 2009 12:58:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2007/09/17/mysql-what-read_buffer_size-value-is-optimal/#comment-644640</guid>
		<description>[...] &#8211; Another one that shouldn&#8217;t be set too large. Peter Zaitsev did some testing a while back showing that increasing sort_buffer_size can in fact reduce the speed of the [...]</description>
		<content:encoded><![CDATA[<p>[...] &#8211; Another one that shouldn&#8217;t be set too large. Peter Zaitsev did some testing a while back showing that increasing sort_buffer_size can in fact reduce the speed of the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Project 2061 Techlog &#187; Best Practices for Setting MySQL Server Runtime Parameters</title>
		<link>http://www.mysqlperformanceblog.com/2007/09/17/mysql-what-read_buffer_size-value-is-optimal/comment-page-1/#comment-360606</link>
		<dc:creator>Project 2061 Techlog &#187; Best Practices for Setting MySQL Server Runtime Parameters</dc:creator>
		<pubDate>Wed, 08 Oct 2008 21:00:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2007/09/17/mysql-what-read_buffer_size-value-is-optimal/#comment-360606</guid>
		<description>[...] MySQL Performance Blog: MySQL: what read_buffer_size value is optimal? [...]</description>
		<content:encoded><![CDATA[<p>[...] MySQL Performance Blog: MySQL: what read_buffer_size value is optimal? [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peter</title>
		<link>http://www.mysqlperformanceblog.com/2007/09/17/mysql-what-read_buffer_size-value-is-optimal/comment-page-1/#comment-357629</link>
		<dc:creator>peter</dc:creator>
		<pubDate>Wed, 24 Sep 2008 20:04:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2007/09/17/mysql-what-read_buffer_size-value-is-optimal/#comment-357629</guid>
		<description>Thanks Apachez,

I guess this is how rounding works.</description>
		<content:encoded><![CDATA[<p>Thanks Apachez,</p>
<p>I guess this is how rounding works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Apachez</title>
		<link>http://www.mysqlperformanceblog.com/2007/09/17/mysql-what-read_buffer_size-value-is-optimal/comment-page-1/#comment-357626</link>
		<dc:creator>Apachez</dc:creator>
		<pubDate>Wed, 24 Sep 2008 19:51:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2007/09/17/mysql-what-read_buffer_size-value-is-optimal/#comment-357626</guid>
		<description>I have now filed the above as bug http://bugs.mysql.com/39634</description>
		<content:encoded><![CDATA[<p>I have now filed the above as bug <a href="http://bugs.mysql.com/39634" rel="nofollow">http://bugs.mysql.com/39634</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Apachez</title>
		<link>http://www.mysqlperformanceblog.com/2007/09/17/mysql-what-read_buffer_size-value-is-optimal/comment-page-1/#comment-357006</link>
		<dc:creator>Apachez</dc:creator>
		<pubDate>Sun, 21 Sep 2008 11:18:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2007/09/17/mysql-what-read_buffer_size-value-is-optimal/#comment-357006</guid>
		<description>Is it just me or how do you properly set the buffers to 128 kbyte?

I put this in my my.cnf:

key_buffer_size         = 256M
sort_buffer_size        = 128K
read_buffer_size        = 128K
read_rnd_buffer_size    = 128K
join_buffer_size        = 128K
myisam_sort_buffer_size = 128K

and restarted the mysql process, the result when running &quot;SHOW VARIABLES LIKE &#039;%buffer%&#039;;&quot; is the following (only including the rows regarding to the my.cnf):

key_buffer_size                268435456
sort_buffer_size               131064
read_buffer_size               126976
read_rnd_buffer_size           126976
join_buffer_size               126976
myisam_sort_buffer_size        131072

The key_buff shows the proper &quot;268435456&quot; which is 256*1024*1024, but what about the rest? Shouldnt they all show 131072 which is 128*1024 or am I missing something here?</description>
		<content:encoded><![CDATA[<p>Is it just me or how do you properly set the buffers to 128 kbyte?</p>
<p>I put this in my my.cnf:</p>
<p>key_buffer_size         = 256M<br />
sort_buffer_size        = 128K<br />
read_buffer_size        = 128K<br />
read_rnd_buffer_size    = 128K<br />
join_buffer_size        = 128K<br />
myisam_sort_buffer_size = 128K</p>
<p>and restarted the mysql process, the result when running &#8220;SHOW VARIABLES LIKE &#8216;%buffer%&#8217;;&#8221; is the following (only including the rows regarding to the my.cnf):</p>
<p>key_buffer_size                268435456<br />
sort_buffer_size               131064<br />
read_buffer_size               126976<br />
read_rnd_buffer_size           126976<br />
join_buffer_size               126976<br />
myisam_sort_buffer_size        131072</p>
<p>The key_buff shows the proper &#8220;268435456&#8243; which is 256*1024*1024, but what about the rest? Shouldnt they all show 131072 which is 128*1024 or am I missing something here?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Son Nguyen</title>
		<link>http://www.mysqlperformanceblog.com/2007/09/17/mysql-what-read_buffer_size-value-is-optimal/comment-page-1/#comment-354188</link>
		<dc:creator>Son Nguyen</dc:creator>
		<pubDate>Wed, 10 Sep 2008 21:40:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2007/09/17/mysql-what-read_buffer_size-value-is-optimal/#comment-354188</guid>
		<description>Wow, I&#039;m glad I found this benchmark and not wasting investing into more memory (I&#039;m just begin to see swap with one of our servers)</description>
		<content:encoded><![CDATA[<p>Wow, I&#8217;m glad I found this benchmark and not wasting investing into more memory (I&#8217;m just begin to see swap with one of our servers)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bigger isn&#8217;t always better for MySQL at Jason Clawson</title>
		<link>http://www.mysqlperformanceblog.com/2007/09/17/mysql-what-read_buffer_size-value-is-optimal/comment-page-1/#comment-301489</link>
		<dc:creator>Bigger isn&#8217;t always better for MySQL at Jason Clawson</dc:creator>
		<pubDate>Tue, 20 May 2008 00:40:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2007/09/17/mysql-what-read_buffer_size-value-is-optimal/#comment-301489</guid>
		<description>[...] looks like the guys over at the MySQL Performance Blog came to the same conclusion I did:  Leave read_buffer_size to its default value.  Changing it [...]</description>
		<content:encoded><![CDATA[<p>[...] looks like the guys over at the MySQL Performance Blog came to the same conclusion I did:  Leave read_buffer_size to its default value.  Changing it [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 记录/分享/…… &#187; Blog Archive &#187; A Few Common Performance Mistakes</title>
		<link>http://www.mysqlperformanceblog.com/2007/09/17/mysql-what-read_buffer_size-value-is-optimal/comment-page-1/#comment-249461</link>
		<dc:creator>记录/分享/…… &#187; Blog Archive &#187; A Few Common Performance Mistakes</dc:creator>
		<pubDate>Fri, 07 Mar 2008 01:33:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2007/09/17/mysql-what-read_buffer_size-value-is-optimal/#comment-249461</guid>
		<description>[...] http://www.mysqlperformanceblog.com/2007/09/17/mysql-what-read_buffer_size-value-is-optimal/ http://www.mysqlperformanceblog.com/2006/06/06/are-larger-buffers-always-better/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.mysqlperformanceblog.com/2007/09/17/mysql-what-read_buffer_size-value-is-optimal/" rel="nofollow">http://www.mysqlperformanceblog.com/2007/09/17/mysql-what-read_buffer_size-value-is-optimal/</a> <a href="http://www.mysqlperformanceblog.com/2006/06/06/are-larger-buffers-always-better/" rel="nofollow">http://www.mysqlperformanceblog.com/2006/06/06/are-larger-buffers-always-better/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Big DBA Head! - Database Brain Power! &#187; A Few Common Performance Mistakes</title>
		<link>http://www.mysqlperformanceblog.com/2007/09/17/mysql-what-read_buffer_size-value-is-optimal/comment-page-1/#comment-249314</link>
		<dc:creator>Big DBA Head! - Database Brain Power! &#187; A Few Common Performance Mistakes</dc:creator>
		<pubDate>Thu, 06 Mar 2008 16:19:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2007/09/17/mysql-what-read_buffer_size-value-is-optimal/#comment-249314</guid>
		<description>[...] http://www.mysqlperformanceblog.com/2007/09/17/mysql-what-read_buffer_size-value-is-optimal/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.mysqlperformanceblog.com/2007/09/17/mysql-what-read_buffer_size-value-is-optimal/" rel="nofollow">http://www.mysqlperformanceblog.com/2007/09/17/mysql-what-read_buffer_size-value-is-optimal/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Data Management Today by Craig Mullins</title>
		<link>http://www.mysqlperformanceblog.com/2007/09/17/mysql-what-read_buffer_size-value-is-optimal/comment-page-1/#comment-170604</link>
		<dc:creator>Data Management Today by Craig Mullins</dc:creator>
		<pubDate>Fri, 21 Sep 2007 16:01:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2007/09/17/mysql-what-read_buffer_size-value-is-optimal/#comment-170604</guid>
		<description>&lt;strong&gt;Log Buffer #63: a Carnival of the Vanities for DBAs...&lt;/strong&gt;

Welcome to the 63rd edition of Log Buffer, the weekly review of database blogs. For those of you reading...</description>
		<content:encoded><![CDATA[<p><strong>Log Buffer #63: a Carnival of the Vanities for DBAs&#8230;</strong></p>
<p>Welcome to the 63rd edition of Log Buffer, the weekly review of database blogs. For those of you reading&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
