<?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: Introducing MySQL Parallel Dump</title>
	<atom:link href="http://www.xaprb.com/blog/2007/09/30/introducing-mysql-parallel-dump/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.xaprb.com/blog/2007/09/30/introducing-mysql-parallel-dump/</link>
	<description>Stay curious!</description>
	<lastBuildDate>Thu, 09 Feb 2012 09:56:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Xaprb</title>
		<link>http://www.xaprb.com/blog/2007/09/30/introducing-mysql-parallel-dump/#comment-14257</link>
		<dc:creator>Xaprb</dc:creator>
		<pubDate>Thu, 28 Feb 2008 13:12:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/2007/09/30/introducing-mysql-parallel-dump/#comment-14257</guid>
		<description>Hi,

There&#039;s a current forum conversation on the same topic.  It would be good to move this there so it&#039;s all in the same place:

http://sourceforge.net/forum/forum.php?thread_id=1952777&amp;forum_id=664350</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>There&#8217;s a current forum conversation on the same topic.  It would be good to move this there so it&#8217;s all in the same place:</p>
<p><a href="http://sourceforge.net/forum/forum.php?thread_id=1952777&#038;forum_id=664350" rel="nofollow">http://sourceforge.net/forum/forum.php?thread_id=1952777&#038;forum_id=664350</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RV</title>
		<link>http://www.xaprb.com/blog/2007/09/30/introducing-mysql-parallel-dump/#comment-14256</link>
		<dc:creator>RV</dc:creator>
		<pubDate>Thu, 28 Feb 2008 10:02:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/2007/09/30/introducing-mysql-parallel-dump/#comment-14256</guid>
		<description>If you had multiple schema&#039;s, within one MySQL instance, and each one had no dependency/connection to the other, could one not spawn multiple (single-transaction, master-data) mysqldumps against each one and therefore reduce the time to perform full consistent InnoDB hot backups from a master?  If not, then I believe this type of tool is only usable for large InnoDB instances on slaves.  I know that performing dumps on masters is not recommended, but our replication confidence is low, so at the moment it&#039;s a must.  Hopefully that&#039;s where Maatkit will again come to the rescue.</description>
		<content:encoded><![CDATA[<p>If you had multiple schema&#8217;s, within one MySQL instance, and each one had no dependency/connection to the other, could one not spawn multiple (single-transaction, master-data) mysqldumps against each one and therefore reduce the time to perform full consistent InnoDB hot backups from a master?  If not, then I believe this type of tool is only usable for large InnoDB instances on slaves.  I know that performing dumps on masters is not recommended, but our replication confidence is low, so at the moment it&#8217;s a must.  Hopefully that&#8217;s where Maatkit will again come to the rescue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Xaprb</title>
		<link>http://www.xaprb.com/blog/2007/09/30/introducing-mysql-parallel-dump/#comment-14254</link>
		<dc:creator>Xaprb</dc:creator>
		<pubDate>Wed, 27 Feb 2008 15:42:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/2007/09/30/introducing-mysql-parallel-dump/#comment-14254</guid>
		<description>It&#039;s not possible.  Locking tables is the only way to do it.  A single transaction would require many connections to be able to participate in the transaction, which is something I wouldn&#039;t assume MySQL will build anytime soon :-)

I suppose another way would be to lock tables briefly and allow all child processes to do BEGIN TRANSACTION, but that isn&#039;t the way it&#039;s built at the moment.</description>
		<content:encoded><![CDATA[<p>It&#8217;s not possible.  Locking tables is the only way to do it.  A single transaction would require many connections to be able to participate in the transaction, which is something I wouldn&#8217;t assume MySQL will build anytime soon :-)</p>
<p>I suppose another way would be to lock tables briefly and allow all child processes to do BEGIN TRANSACTION, but that isn&#8217;t the way it&#8217;s built at the moment.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RV</title>
		<link>http://www.xaprb.com/blog/2007/09/30/introducing-mysql-parallel-dump/#comment-14253</link>
		<dc:creator>RV</dc:creator>
		<pubDate>Wed, 27 Feb 2008 14:05:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/2007/09/30/introducing-mysql-parallel-dump/#comment-14253</guid>
		<description>Baron,

Great work, but would you mind confirming if this does a consistent snapshot as in single-transaction for mysqldump for InnoDB tables or is this simply not possible via a parallel method?

Cheers</description>
		<content:encoded><![CDATA[<p>Baron,</p>
<p>Great work, but would you mind confirming if this does a consistent snapshot as in single-transaction for mysqldump for InnoDB tables or is this simply not possible via a parallel method?</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Xaprb</title>
		<link>http://www.xaprb.com/blog/2007/09/30/introducing-mysql-parallel-dump/#comment-13448</link>
		<dc:creator>Xaprb</dc:creator>
		<pubDate>Thu, 04 Oct 2007 02:01:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/2007/09/30/introducing-mysql-parallel-dump/#comment-13448</guid>
		<description>Just for information, the new version is released, and can do chunked dumps as promised.  Testing and benchmarks welcome!</description>
		<content:encoded><![CDATA[<p>Just for information, the new version is released, and can do chunked dumps as promised.  Testing and benchmarks welcome!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

