<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: INSERT speed, paramy, auto-inc</title>
	<atom:link href="http://dom.as/2008/05/26/insert-speed-paramy-auto-inc/feed/" rel="self" type="application/rss+xml" />
	<link>http://dom.as/2008/05/26/insert-speed-paramy-auto-inc/</link>
	<description></description>
	<lastBuildDate>Sat, 17 Dec 2011 20:14:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: paramy - import dumps in a flash &#124; All things Sysadmin</title>
		<link>http://dom.as/2008/05/26/insert-speed-paramy-auto-inc/#comment-1283</link>
		<dc:creator><![CDATA[paramy - import dumps in a flash &#124; All things Sysadmin]]></dc:creator>
		<pubDate>Fri, 30 May 2008 21:34:43 +0000</pubDate>
		<guid isPermaLink="false">http://dammit.lt/?p=118#comment-1283</guid>
		<description><![CDATA[[...] Follwing an interesting and lengthy discussion one evening on whether multi threaded data importing should be part of the client or the server, Domas went ahead and scratched his itch to write something and came up with paramy. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Follwing an interesting and lengthy discussion one evening on whether multi threaded data importing should be part of the client or the server, Domas went ahead and scratched his itch to write something and came up with paramy. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Domas Mituzas</title>
		<link>http://dom.as/2008/05/26/insert-speed-paramy-auto-inc/#comment-1282</link>
		<dc:creator><![CDATA[Domas Mituzas]]></dc:creator>
		<pubDate>Wed, 28 May 2008 14:01:59 +0000</pubDate>
		<guid isPermaLink="false">http://dammit.lt/?p=118#comment-1282</guid>
		<description><![CDATA[4 core server, 8 sessions. pthread was nowhere near a bottleneck.]]></description>
		<content:encoded><![CDATA[<p>4 core server, 8 sessions. pthread was nowhere near a bottleneck.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Callaghan</title>
		<link>http://dom.as/2008/05/26/insert-speed-paramy-auto-inc/#comment-1281</link>
		<dc:creator><![CDATA[Mark Callaghan]]></dc:creator>
		<pubDate>Wed, 28 May 2008 13:18:37 +0000</pubDate>
		<guid isPermaLink="false">http://dammit.lt/?p=118#comment-1281</guid>
		<description><![CDATA[How many CPU cores and how many concurrent sessions did you use? pthread functions should use the most time on a 4 or 8 core server with many sessions.]]></description>
		<content:encoded><![CDATA[<p>How many CPU cores and how many concurrent sessions did you use? pthread functions should use the most time on a 4 or 8 core server with many sessions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Domas Mituzas</title>
		<link>http://dom.as/2008/05/26/insert-speed-paramy-auto-inc/#comment-1280</link>
		<dc:creator><![CDATA[Domas Mituzas]]></dc:creator>
		<pubDate>Wed, 28 May 2008 08:20:14 +0000</pubDate>
		<guid isPermaLink="false">http://dammit.lt/?p=118#comment-1280</guid>
		<description><![CDATA[Mark,

My profiles showed a lot of work done in checksums (calculating both old and new checksum). I&#039;d gladly have entirely disabled checksums during initial data load - and enable calculation of them later on.

Do you still have your COMPACT patch?  };-) I&#039;m not sure we should care about 20% win for our largest tables, as they sit quite cold anyway.]]></description>
		<content:encoded><![CDATA[<p>Mark,</p>
<p>My profiles showed a lot of work done in checksums (calculating both old and new checksum). I&#8217;d gladly have entirely disabled checksums during initial data load &#8211; and enable calculation of them later on.</p>
<p>Do you still have your COMPACT patch?  };-) I&#8217;m not sure we should care about 20% win for our largest tables, as they sit quite cold anyway.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Callaghan</title>
		<link>http://dom.as/2008/05/26/insert-speed-paramy-auto-inc/#comment-1279</link>
		<dc:creator><![CDATA[Mark Callaghan]]></dc:creator>
		<pubDate>Tue, 27 May 2008 22:56:31 +0000</pubDate>
		<guid isPermaLink="false">http://dammit.lt/?p=118#comment-1279</guid>
		<description><![CDATA[By waiting for 5.0.64, you fortunately have avoided the pain that ruined a weekend for me. I haven&#039;t tried to compare MySQL4 with MySQL5 since then. There is more overhead in InnoDB because of the COMPACT row format, and even if you don&#039;t use it, you pay the CPU cost. The best way to see that cost is to run without concurrent inserts so that you don&#039;t get any overhead from SMP issues in InnoDB. On the bright side, the COMPACT row format reduced my database size by 20%.

I spent another weekend removing support for the COMPACT row format from InnoDB, but I decided to not submit the patch. I was able to reduce the CPU overhead.]]></description>
		<content:encoded><![CDATA[<p>By waiting for 5.0.64, you fortunately have avoided the pain that ruined a weekend for me. I haven&#8217;t tried to compare MySQL4 with MySQL5 since then. There is more overhead in InnoDB because of the COMPACT row format, and even if you don&#8217;t use it, you pay the CPU cost. The best way to see that cost is to run without concurrent inserts so that you don&#8217;t get any overhead from SMP issues in InnoDB. On the bright side, the COMPACT row format reduced my database size by 20%.</p>
<p>I spent another weekend removing support for the COMPACT row format from InnoDB, but I decided to not submit the patch. I was able to reduce the CPU overhead.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pabloj</title>
		<link>http://dom.as/2008/05/26/insert-speed-paramy-auto-inc/#comment-1278</link>
		<dc:creator><![CDATA[pabloj]]></dc:creator>
		<pubDate>Tue, 27 May 2008 10:53:00 +0000</pubDate>
		<guid isPermaLink="false">http://dammit.lt/?p=118#comment-1278</guid>
		<description><![CDATA[Looks slow from my tests too, and it&#039;s v5.1.23 in my case.]]></description>
		<content:encoded><![CDATA[<p>Looks slow from my tests too, and it&#8217;s v5.1.23 in my case.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Domas Mituzas</title>
		<link>http://dom.as/2008/05/26/insert-speed-paramy-auto-inc/#comment-1277</link>
		<dc:creator><![CDATA[Domas Mituzas]]></dc:creator>
		<pubDate>Tue, 27 May 2008 05:49:36 +0000</pubDate>
		<guid isPermaLink="false">http://dammit.lt/?p=118#comment-1277</guid>
		<description><![CDATA[Mark, this was 5.0.64 - and profiling was showing mostly innodb internals. I&#039;ll experiment a bit more with profiles.]]></description>
		<content:encoded><![CDATA[<p>Mark, this was 5.0.64 &#8211; and profiling was showing mostly innodb internals. I&#8217;ll experiment a bit more with profiles.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Callaghan</title>
		<link>http://dom.as/2008/05/26/insert-speed-paramy-auto-inc/#comment-1276</link>
		<dc:creator><![CDATA[Mark Callaghan]]></dc:creator>
		<pubDate>Mon, 26 May 2008 22:39:34 +0000</pubDate>
		<guid isPermaLink="false">http://dammit.lt/?p=118#comment-1276</guid>
		<description><![CDATA[5.0 uses much more CPU for insert statements because of the parser. At least half of the regression was fixed in 5.0.54.]]></description>
		<content:encoded><![CDATA[<p>5.0 uses much more CPU for insert statements because of the parser. At least half of the regression was fixed in 5.0.54.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

