<?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: Update: MySQL tmpdir on tmpfs</title>
	<atom:link href="http://openquery.com/blog/update-mysql-tmpdir-tmpfs/feed" rel="self" type="application/rss+xml" />
	<link>http://openquery.com/blog/update-mysql-tmpdir-tmpfs</link>
	<description>About MySQL, Drizzle, MariaDB and more!</description>
	<lastBuildDate>Mon, 19 Mar 2012 14:26:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: arun</title>
		<link>http://openquery.com/blog/update-mysql-tmpdir-tmpfs/comment-page-1#comment-1847</link>
		<dc:creator>arun</dc:creator>
		<pubDate>Mon, 31 Aug 2009 19:58:47 +0000</pubDate>
		<guid isPermaLink="false">http://openquery.com/blog/?p=770#comment-1847</guid>
		<description>excellent .... I agree with Mark R ... the tmpfs size limit might be an issue

http://dev.mysql.com/doc/refman/4.1/en/server-options.html#option_mysqld_tmpdir</description>
		<content:encoded><![CDATA[<p>excellent &#8230;. I agree with Mark R &#8230; the tmpfs size limit might be an issue</p>
<p><a href="http://dev.mysql.com/doc/refman/4.1/en/server-options.html#option_mysqld_tmpdir" rel="nofollow">http://dev.mysql.com/doc/refman/4.1/en/server-options.html#option_mysqld_tmpdir</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark R</title>
		<link>http://openquery.com/blog/update-mysql-tmpdir-tmpfs/comment-page-1#comment-1538</link>
		<dc:creator>Mark R</dc:creator>
		<pubDate>Wed, 24 Jun 2009 07:03:54 +0000</pubDate>
		<guid isPermaLink="false">http://openquery.com/blog/?p=770#comment-1538</guid>
		<description>Using tmpdir on a tmpfs is fine provided it doesn&#039;t get exhausted, say you have a 2G tmpfs and occasionally a query needs to do a filesort using 3G of temporary space, this query will fail. 

Calculating how much space a filesort() needs is nontrivial and it often seems like a lot more than you expect</description>
		<content:encoded><![CDATA[<p>Using tmpdir on a tmpfs is fine provided it doesn&#8217;t get exhausted, say you have a 2G tmpfs and occasionally a query needs to do a filesort using 3G of temporary space, this query will fail. </p>
<p>Calculating how much space a filesort() needs is nontrivial and it often seems like a lot more than you expect</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: arjen</title>
		<link>http://openquery.com/blog/update-mysql-tmpdir-tmpfs/comment-page-1#comment-1510</link>
		<dc:creator>arjen</dc:creator>
		<pubDate>Tue, 16 Jun 2009 22:43:44 +0000</pubDate>
		<guid isPermaLink="false">http://openquery.com/blog/?p=770#comment-1510</guid>
		<description>Thanks Harry, I&#039;ll update the post to make sure people don&#039;t trip over that. Wasn&#039;t needed for the setup I was dealing with.</description>
		<content:encoded><![CDATA[<p>Thanks Harry, I&#8217;ll update the post to make sure people don&#8217;t trip over that. Wasn&#8217;t needed for the setup I was dealing with.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: arjen</title>
		<link>http://openquery.com/blog/update-mysql-tmpdir-tmpfs/comment-page-1#comment-1509</link>
		<dc:creator>arjen</dc:creator>
		<pubDate>Tue, 16 Jun 2009 22:42:55 +0000</pubDate>
		<guid isPermaLink="false">http://openquery.com/blog/?p=770#comment-1509</guid>
		<description>Yea Doug, that&#039;s a valid use example. Of course it&#039;s preferably to not have DB servers on NFS.</description>
		<content:encoded><![CDATA[<p>Yea Doug, that&#8217;s a valid use example. Of course it&#8217;s preferably to not have DB servers on NFS.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug Lane</title>
		<link>http://openquery.com/blog/update-mysql-tmpdir-tmpfs/comment-page-1#comment-1508</link>
		<dc:creator>Doug Lane</dc:creator>
		<pubDate>Tue, 16 Jun 2009 14:12:16 +0000</pubDate>
		<guid isPermaLink="false">http://openquery.com/blog/?p=770#comment-1508</guid>
		<description>Suppose you put MySQL in a VM environment where 8GB RAM is available and disk access is via NFS--does tmpdir on tmpfs sound viable and preferable?</description>
		<content:encoded><![CDATA[<p>Suppose you put MySQL in a VM environment where 8GB RAM is available and disk access is via NFS&#8211;does tmpdir on tmpfs sound viable and preferable?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Harrison Fisk</title>
		<link>http://openquery.com/blog/update-mysql-tmpdir-tmpfs/comment-page-1#comment-1507</link>
		<dc:creator>Harrison Fisk</dc:creator>
		<pubDate>Tue, 16 Jun 2009 13:35:34 +0000</pubDate>
		<guid isPermaLink="false">http://openquery.com/blog/?p=770#comment-1507</guid>
		<description>If you do use a shared memory tmpdir, if you are using replication, you will want to change slave_load_tmpdir on your slave to be a real disk which survives a restart.

The issue is that with statement based binary logging, there are many events which create a file for a replicated LOAD DATA INFILE.  If you stop your server after some of these events have occurred, but not all, it will break after you restart.</description>
		<content:encoded><![CDATA[<p>If you do use a shared memory tmpdir, if you are using replication, you will want to change slave_load_tmpdir on your slave to be a real disk which survives a restart.</p>
<p>The issue is that with statement based binary logging, there are many events which create a file for a replicated LOAD DATA INFILE.  If you stop your server after some of these events have occurred, but not all, it will break after you restart.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
