<?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"
	>
<channel>
	<title>Comments on: MySQLTuner v0.8.6 is now available</title>
	<atom:link href="http://rackerhacker.com/2008/02/26/mysqltuner-v086-is-now-available/feed/" rel="self" type="application/rss+xml" />
	<link>http://rackerhacker.com/2008/02/26/mysqltuner-v086-is-now-available/</link>
	<description>Words of wisdom from a server administrator</description>
	<pubDate>Sat, 11 Oct 2008 15:30:21 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: Luuk</title>
		<link>http://rackerhacker.com/2008/02/26/mysqltuner-v086-is-now-available/#comment-492</link>
		<dc:creator>Luuk</dc:creator>
		<pubDate>Thu, 03 Apr 2008 16:18:10 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/2008/02/26/mysqltuner-v086-is-now-available/#comment-492</guid>
		<description>The reply from sceaton (at March 17th) did not really help me to solv my problem with the recomendations suggested by the script:
-------- Recommendations -----------------------------------------------------
General recommendations:
    Be sure that tmp_table_size/max_heap_table_size are equal
    Reduce your SELECT DISTINCT queries without LIMIT clauses
Variables to adjust:
    tmp_table_size (&#62; 192M)
    max_heap_table_size (&#62; 192M)

outtput from 'mysqladmin variables &#124; grep table_size':
&#124; max_heap_table_size             &#124; 201326592                  &#124;
&#124; tmp_table_size                  &#124; 201326592                  &#124;

so, both values ARE equal.... ;-)</description>
		<content:encoded><![CDATA[<p>The reply from sceaton (at March 17th) did not really help me to solv my problem with the recomendations suggested by the script:<br />
&#8212;&#8212;&#8211; Recommendations &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
General recommendations:<br />
    Be sure that tmp_table_size/max_heap_table_size are equal<br />
    Reduce your SELECT DISTINCT queries without LIMIT clauses<br />
Variables to adjust:<br />
    tmp_table_size (&gt; 192M)<br />
    max_heap_table_size (&gt; 192M)</p>
<p>outtput from &#8216;mysqladmin variables | grep table_size&#8217;:<br />
| max_heap_table_size             | 201326592                  |<br />
| tmp_table_size                  | 201326592                  |</p>
<p>so, both values ARE equal&#8230;. <img src='http://rackerhacker.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: breun</title>
		<link>http://rackerhacker.com/2008/02/26/mysqltuner-v086-is-now-available/#comment-461</link>
		<dc:creator>breun</dc:creator>
		<pubDate>Mon, 17 Mar 2008 22:40:03 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/2008/02/26/mysqltuner-v086-is-now-available/#comment-461</guid>
		<description>Also, I was thinking: does MySQLTuner warn about buffers/values/etc. being set too high (possibly consuming an unnecessary large amount of memory)?</description>
		<content:encoded><![CDATA[<p>Also, I was thinking: does MySQLTuner warn about buffers/values/etc. being set too high (possibly consuming an unnecessary large amount of memory)?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: breun</title>
		<link>http://rackerhacker.com/2008/02/26/mysqltuner-v086-is-now-available/#comment-460</link>
		<dc:creator>breun</dc:creator>
		<pubDate>Mon, 17 Mar 2008 22:38:20 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/2008/02/26/mysqltuner-v086-is-now-available/#comment-460</guid>
		<description>Are the RPM's really only for internal use? I created my own, but it would be nice if you could provide them. It would be even nicer if the RPM was available from a public yum repository (RPMForge?).</description>
		<content:encoded><![CDATA[<p>Are the RPM&#8217;s really only for internal use? I created my own, but it would be nice if you could provide them. It would be even nicer if the RPM was available from a public yum repository (RPMForge?).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sceaton</title>
		<link>http://rackerhacker.com/2008/02/26/mysqltuner-v086-is-now-available/#comment-457</link>
		<dc:creator>sceaton</dc:creator>
		<pubDate>Mon, 17 Mar 2008 12:58:17 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/2008/02/26/mysqltuner-v086-is-now-available/#comment-457</guid>
		<description>Greetings!  

I've recently been using your most excellent MySQL Tuner, and have 2 comments:
1) The script has been constantly suggesting that I increase my tmp_table_size and max_heap_table_size, however doing so hasn't made any difference.  I noticed that your script is based on Matthew Montgomery's Tuning Primer, so I ran his script to see if it had anything different to say.  He has a note in there that BLOB and TEXT columns are not allowed in in memory tables so raising the table_size values might not make a difference.  I indeed do have TEXT columns, so it might be helpful to include that note in your script as well.

2) I use Adobe's Developer Toolkit (formerly Interakt's MX Kollection) to manage the CMS aspects of our website.  It uses a mysql_pconnect statement to connect to the database.  This (apparently) causes MySQL to record lots of "aborted connections" and I was receiving the script message that my applications are not closing connections properly.  I changed the connection statement to "mysql_connect" so that it would not use persistent connections and the excessive aborted connections, (and thus the script warning) have gone away.  I can't seem to find a consensus on which way is best.  Adobe/Interakt apparently think that persistent connections are the way to go.  Others opinions online seem to think that not only are they not necessary, but can cause problems on larger, mirrored setups.  Comments?</description>
		<content:encoded><![CDATA[<p>Greetings!  </p>
<p>I&#8217;ve recently been using your most excellent MySQL Tuner, and have 2 comments:<br />
1) The script has been constantly suggesting that I increase my tmp_table_size and max_heap_table_size, however doing so hasn&#8217;t made any difference.  I noticed that your script is based on Matthew Montgomery&#8217;s Tuning Primer, so I ran his script to see if it had anything different to say.  He has a note in there that BLOB and TEXT columns are not allowed in in memory tables so raising the table_size values might not make a difference.  I indeed do have TEXT columns, so it might be helpful to include that note in your script as well.</p>
<p>2) I use Adobe&#8217;s Developer Toolkit (formerly Interakt&#8217;s MX Kollection) to manage the CMS aspects of our website.  It uses a mysql_pconnect statement to connect to the database.  This (apparently) causes MySQL to record lots of &#8220;aborted connections&#8221; and I was receiving the script message that my applications are not closing connections properly.  I changed the connection statement to &#8220;mysql_connect&#8221; so that it would not use persistent connections and the excessive aborted connections, (and thus the script warning) have gone away.  I can&#8217;t seem to find a consensus on which way is best.  Adobe/Interakt apparently think that persistent connections are the way to go.  Others opinions online seem to think that not only are they not necessary, but can cause problems on larger, mirrored setups.  Comments?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
