<?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: Concurrent inserts on MyISAM and the binary log</title>
	<atom:link href="http://www.mysqlperformanceblog.com/2008/05/14/concurrent-insert-select-myisam/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mysqlperformanceblog.com/2008/05/14/concurrent-insert-select-myisam/</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: WB</title>
		<link>http://www.mysqlperformanceblog.com/2008/05/14/concurrent-insert-select-myisam/comment-page-1/#comment-372406</link>
		<dc:creator>WB</dc:creator>
		<pubDate>Tue, 04 Nov 2008 11:56:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/?p=397#comment-372406</guid>
		<description>Maybe, using SET SQL_LOG_BIN=0, this problem con&#039;t be solved?</description>
		<content:encoded><![CDATA[<p>Maybe, using SET SQL_LOG_BIN=0, this problem con&#8217;t be solved?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: esudnik</title>
		<link>http://www.mysqlperformanceblog.com/2008/05/14/concurrent-insert-select-myisam/comment-page-1/#comment-315114</link>
		<dc:creator>esudnik</dc:creator>
		<pubDate>Thu, 19 Jun 2008 12:25:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/?p=397#comment-315114</guid>
		<description>...of course it is not a solution for all cases ;-)</description>
		<content:encoded><![CDATA[<p>&#8230;of course it is not a solution for all cases <img src='http://www.mysqlperformanceblog.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: esudnik</title>
		<link>http://www.mysqlperformanceblog.com/2008/05/14/concurrent-insert-select-myisam/comment-page-1/#comment-315113</link>
		<dc:creator>esudnik</dc:creator>
		<pubDate>Thu, 19 Jun 2008 12:24:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/?p=397#comment-315113</guid>
		<description>To avoid table locks with MyISAM I use INSERT DELAYED (http://dev.mysql.com/doc/refman/5.0/en/insert-delayed.html) statements.</description>
		<content:encoded><![CDATA[<p>To avoid table locks with MyISAM I use INSERT DELAYED (<a href="http://dev.mysql.com/doc/refman/5.0/en/insert-delayed.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/insert-delayed.html</a>) statements.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://www.mysqlperformanceblog.com/2008/05/14/concurrent-insert-select-myisam/comment-page-1/#comment-302133</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Tue, 20 May 2008 19:36:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/?p=397#comment-302133</guid>
		<description>Do you mean use innodb with 5.1? On 5.0 the behaviour is the same for innodb. I don&#039;t think you can get around the issue without running with &quot;innodb_locks_unsafe_for_binlog=1&quot; which was mentioned here:

http://www.mysqlperformanceblog.com/2006/07/12/insert-into-select-performance-with-innodb-tables/</description>
		<content:encoded><![CDATA[<p>Do you mean use innodb with 5.1? On 5.0 the behaviour is the same for innodb. I don&#8217;t think you can get around the issue without running with &#8220;innodb_locks_unsafe_for_binlog=1&#8243; which was mentioned here:</p>
<p><a href="http://www.mysqlperformanceblog.com/2006/07/12/insert-into-select-performance-with-innodb-tables/" rel="nofollow">http://www.mysqlperformanceblog.com/2006/07/12/insert-into-select-performance-with-innodb-tables/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peter</title>
		<link>http://www.mysqlperformanceblog.com/2008/05/14/concurrent-insert-select-myisam/comment-page-1/#comment-299363</link>
		<dc:creator>peter</dc:creator>
		<pubDate>Thu, 15 May 2008 21:18:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/?p=397#comment-299363</guid>
		<description>Right. Looks like potential future improvement :)</description>
		<content:encoded><![CDATA[<p>Right. Looks like potential future improvement <img src='http://www.mysqlperformanceblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Baron Schwartz</title>
		<link>http://www.mysqlperformanceblog.com/2008/05/14/concurrent-insert-select-myisam/comment-page-1/#comment-299181</link>
		<dc:creator>Baron Schwartz</dc:creator>
		<pubDate>Thu, 15 May 2008 01:44:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/?p=397#comment-299181</guid>
		<description>I tried setting binlog_format=row in my.cnf, verified that it worked, and then ran an INSERT and an INSERT..SELECT.  The results were the same: this code does not seem to be affected by the binary logging format at all.</description>
		<content:encoded><![CDATA[<p>I tried setting binlog_format=row in my.cnf, verified that it worked, and then ran an INSERT and an INSERT..SELECT.  The results were the same: this code does not seem to be affected by the binary logging format at all.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peter</title>
		<link>http://www.mysqlperformanceblog.com/2008/05/14/concurrent-insert-select-myisam/comment-page-1/#comment-299111</link>
		<dc:creator>peter</dc:creator>
		<pubDate>Thu, 15 May 2008 00:27:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/?p=397#comment-299111</guid>
		<description>Baron,

What if you would use Row Level Replication in MySQL 5.1 - will this lock go away then ?</description>
		<content:encoded><![CDATA[<p>Baron,</p>
<p>What if you would use Row Level Replication in MySQL 5.1 &#8211; will this lock go away then ?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
