<?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 for ScriptBits, Little Bits Of Code You Cannot Live Without</title>
	<atom:link href="http://www.scriptbits.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.scriptbits.net</link>
	<description>What are you coding?</description>
	<lastBuildDate>Tue, 14 Jul 2009 16:13:23 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>Comment on MySQL Federated Engine Allows For Multi-Master Replication by Patrick Kennedy</title>
		<link>http://www.scriptbits.net/2009/07/mysql-federated-engine-allows-for-multi-master-replication/comment-page-1/#comment-16</link>
		<dc:creator>Patrick Kennedy</dc:creator>
		<pubDate>Tue, 14 Jul 2009 16:13:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptbits.net/?p=5#comment-16</guid>
		<description>For anybody stumbling across this thread, Justin&#039;s MySql blog has a ton of excellent and in depth information on it.</description>
		<content:encoded><![CDATA[<p>For anybody stumbling across this thread, Justin's MySql blog has a ton of excellent and in depth information on it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MySQL Federated Engine Allows For Multi-Master Replication by Patrick Kennedy</title>
		<link>http://www.scriptbits.net/2009/07/mysql-federated-engine-allows-for-multi-master-replication/comment-page-1/#comment-15</link>
		<dc:creator>Patrick Kennedy</dc:creator>
		<pubDate>Mon, 13 Jul 2009 23:37:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptbits.net/?p=5#comment-15</guid>
		<description>This wasn&#039;t designed with a sharded environment in mind.  For performance issues we ended up with multiple masters, each with their own set of read only slaves, running unrelated databases with nothing in common but for they are each accessed by our inhouse applications.  For reporting issues, our business objects team needed a solution where they could query across these multiple databases.  This does that.  It also will be able to lend itself useful as we begin to move some apps/services to a cloud environment and have others still in a datacenter....once again aggregating our multiple db&#039;s into one place.

Table creation and table alters hurt this model.  I have a script that monitors this and intervenes to run the proper sql on the proper place.  I&#039;ll be posting that one in a bit.</description>
		<content:encoded><![CDATA[<p>This wasn't designed with a sharded environment in mind.  For performance issues we ended up with multiple masters, each with their own set of read only slaves, running unrelated databases with nothing in common but for they are each accessed by our inhouse applications.  For reporting issues, our business objects team needed a solution where they could query across these multiple databases.  This does that.  It also will be able to lend itself useful as we begin to move some apps/services to a cloud environment and have others still in a datacenter....once again aggregating our multiple db's into one place.</p>
<p>Table creation and table alters hurt this model.  I have a script that monitors this and intervenes to run the proper sql on the proper place.  I'll be posting that one in a bit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MySQL Federated Engine Allows For Multi-Master Replication by Justin Swanhart</title>
		<link>http://www.scriptbits.net/2009/07/mysql-federated-engine-allows-for-multi-master-replication/comment-page-1/#comment-14</link>
		<dc:creator>Justin Swanhart</dc:creator>
		<pubDate>Mon, 13 Jul 2009 22:21:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptbits.net/?p=5#comment-14</guid>
		<description>Also replication of table creation is problematic.  Though that is the same issue as using an intermediary slave server with the blackhole storage engine for relay log filtering.</description>
		<content:encoded><![CDATA[<p>Also replication of table creation is problematic.  Though that is the same issue as using an intermediary slave server with the blackhole storage engine for relay log filtering.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MySQL Federated Engine Allows For Multi-Master Replication by Justin Swanhart</title>
		<link>http://www.scriptbits.net/2009/07/mysql-federated-engine-allows-for-multi-master-replication/comment-page-1/#comment-13</link>
		<dc:creator>Justin Swanhart</dc:creator>
		<pubDate>Mon, 13 Jul 2009 22:18:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptbits.net/?p=5#comment-13</guid>
		<description>My question wasn&#039;t about master failover.  Normally, the only time you have more than one set of masters is if you have a sharded environment.  If you choose to shard your data, either you only use a hash algorithm to decide what partition information is found on, or you use a &quot;hive node&quot;, a dedicated master that maps partition keys to shards.  The latter is a more scalable model, because it avoids hot spots which invariably develop in a hash partitioned shard.

If you have a &quot;hive mind&quot;, you can move a partition key to an arbitrary node to balance the load, but it breaks the replication model.</description>
		<content:encoded><![CDATA[<p>My question wasn't about master failover.  Normally, the only time you have more than one set of masters is if you have a sharded environment.  If you choose to shard your data, either you only use a hash algorithm to decide what partition information is found on, or you use a "hive node", a dedicated master that maps partition keys to shards.  The latter is a more scalable model, because it avoids hot spots which invariably develop in a hash partitioned shard.</p>
<p>If you have a "hive mind", you can move a partition key to an arbitrary node to balance the load, but it breaks the replication model.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MySQL Federated Engine Allows For Multi-Master Replication by Patrick Kennedy</title>
		<link>http://www.scriptbits.net/2009/07/mysql-federated-engine-allows-for-multi-master-replication/comment-page-1/#comment-12</link>
		<dc:creator>Patrick Kennedy</dc:creator>
		<pubDate>Mon, 13 Jul 2009 21:44:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptbits.net/?p=5#comment-12</guid>
		<description>You wouldn&#039;t in this model.  This not for failover master, this is for a database server to have two (or more) separate replication chains written to it.</description>
		<content:encoded><![CDATA[<p>You wouldn't in this model.  This not for failover master, this is for a database server to have two (or more) separate replication chains written to it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MySQL Federated Engine Allows For Multi-Master Replication by Justin Swanhart</title>
		<link>http://www.scriptbits.net/2009/07/mysql-federated-engine-allows-for-multi-master-replication/comment-page-1/#comment-11</link>
		<dc:creator>Justin Swanhart</dc:creator>
		<pubDate>Mon, 13 Jul 2009 21:17:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptbits.net/?p=5#comment-11</guid>
		<description>How do you move data between master nodes?</description>
		<content:encoded><![CDATA[<p>How do you move data between master nodes?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SED Tutorial and Examples by AWK Scripts and Examples &#124; ScriptBits, Little Bits Of Code You Cannot Live Without</title>
		<link>http://www.scriptbits.net/2009/07/sed-one-liners/comment-page-1/#comment-10</link>
		<dc:creator>AWK Scripts and Examples &#124; ScriptBits, Little Bits Of Code You Cannot Live Without</dc:creator>
		<pubDate>Mon, 13 Jul 2009 13:57:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptbits.net/2009/07/sed-one-liners/#comment-10</guid>
		<description>[...] ScriptBits, Little Bits Of Code You Cannot Live Without What are you coding?      &#171; SED Tutorial and Examples [...]</description>
		<content:encoded><![CDATA[<p>[...] ScriptBits, Little Bits Of Code You Cannot Live Without What are you coding?      &laquo; SED Tutorial and Examples [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to identify what processes are generating IO Wait load. by ddctomc</title>
		<link>http://www.scriptbits.net/2009/07/how-to-identify-what-processes-are-generating-io-wait-load/comment-page-1/#comment-7</link>
		<dc:creator>ddctomc</dc:creator>
		<pubDate>Sat, 11 Jul 2009 13:58:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptbits.net/2009/07/how-to-identify-what-processes-are-generating-io-wait-load/#comment-7</guid>
		<description>No both distros (and i think most/all others) are on a 2.6 kernel now. Its just the difference in the systat package version. Hopefully RH/CentOS will incorporate the newer version in a future release.</description>
		<content:encoded><![CDATA[<p>No both distros (and i think most/all others) are on a 2.6 kernel now. Its just the difference in the systat package version. Hopefully RH/CentOS will incorporate the newer version in a future release.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create Automated LVM Snapshots for MySQL Backup by Jonas</title>
		<link>http://www.scriptbits.net/2009/07/create-automated-lvm-snapshots-for-mysql-backup/comment-page-1/#comment-6</link>
		<dc:creator>Jonas</dc:creator>
		<pubDate>Thu, 09 Jul 2009 21:09:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptbits.net/2009/07/create-automated-lvm-snapshots-for-mysql-backup/#comment-6</guid>
		<description>Do you know mylvmbackup? - http://www.lenzg.net/mylvmbackup/ It supports hooks,tar and rsync for backups and it&#039;s using lvm snapshots.</description>
		<content:encoded><![CDATA[<p>Do you know mylvmbackup? - <a href="http://www.lenzg.net/mylvmbackup/" rel="nofollow">http://www.lenzg.net/mylvmbackup/</a> It supports hooks,tar and rsync for backups and it's using lvm snapshots.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to identify what processes are generating IO Wait load. by Ted Silas</title>
		<link>http://www.scriptbits.net/2009/07/how-to-identify-what-processes-are-generating-io-wait-load/comment-page-1/#comment-5</link>
		<dc:creator>Ted Silas</dc:creator>
		<pubDate>Thu, 09 Jul 2009 19:02:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptbits.net/2009/07/how-to-identify-what-processes-are-generating-io-wait-load/#comment-5</guid>
		<description>Kernel 2.6.20 and above maybe?</description>
		<content:encoded><![CDATA[<p>Kernel 2.6.20 and above maybe?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
