<?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: Finding your MySQL High-Availability solution – Replication</title>
	<atom:link href="http://www.mysqlperformanceblog.com/2009/11/13/finding-your-mysql-high-availability-solution-%e2%80%93-replication/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mysqlperformanceblog.com/2009/11/13/finding-your-mysql-high-availability-solution-%e2%80%93-replication/</link>
	<description>Everything about MySQL Performance</description>
	<lastBuildDate>Thu, 29 Jul 2010 19:06:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=3581</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: yves</title>
		<link>http://www.mysqlperformanceblog.com/2009/11/13/finding-your-mysql-high-availability-solution-%e2%80%93-replication/comment-page-1/#comment-712436</link>
		<dc:creator>yves</dc:creator>
		<pubDate>Wed, 20 Jan 2010 21:06:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/?p=1607#comment-712436</guid>
		<description>Hi sv,
  the manager process is very light so there is no problem managing more than one pair of servers from a single manager server.  Another option is to use your monitoring/alerting server (like Cacti/Nagios) to host the manager process.</description>
		<content:encoded><![CDATA[<p>Hi sv,<br />
  the manager process is very light so there is no problem managing more than one pair of servers from a single manager server.  Another option is to use your monitoring/alerting server (like Cacti/Nagios) to host the manager process.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sv</title>
		<link>http://www.mysqlperformanceblog.com/2009/11/13/finding-your-mysql-high-availability-solution-%e2%80%93-replication/comment-page-1/#comment-712395</link>
		<dc:creator>sv</dc:creator>
		<pubDate>Wed, 20 Jan 2010 18:13:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/?p=1607#comment-712395</guid>
		<description>We have test servers, beta servers and evaluation servers along with the production DB server. Will I be able to use just one server as the monitor and group these servers? I mean a single manager should manage master-master DB server for test server. Then another group in the same manager managing another master-master DB pair for the beta server. Will this be possible? I do not want to waste an entire server for just the manager software.

Thanks.</description>
		<content:encoded><![CDATA[<p>We have test servers, beta servers and evaluation servers along with the production DB server. Will I be able to use just one server as the monitor and group these servers? I mean a single manager should manage master-master DB server for test server. Then another group in the same manager managing another master-master DB pair for the beta server. Will this be possible? I do not want to waste an entire server for just the manager software.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: R</title>
		<link>http://www.mysqlperformanceblog.com/2009/11/13/finding-your-mysql-high-availability-solution-%e2%80%93-replication/comment-page-1/#comment-706635</link>
		<dc:creator>R</dc:creator>
		<pubDate>Thu, 07 Jan 2010 12:39:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/?p=1607#comment-706635</guid>
		<description>The trick here is to run the alter table on a slave and then, once done, we let the slave catch up with the master using the new table schema, we failover to the slave and repeat the alter table on the other server. Those online schema change are easier when a master to master topology is used.

---

Please describe this a bit more. What does &quot;failover to the slave&quot; mean? How will master get synchronized with new slave scheme?</description>
		<content:encoded><![CDATA[<p>The trick here is to run the alter table on a slave and then, once done, we let the slave catch up with the master using the new table schema, we failover to the slave and repeat the alter table on the other server. Those online schema change are easier when a master to master topology is used.</p>
<p>&#8212;</p>
<p>Please describe this a bit more. What does &#8220;failover to the slave&#8221; mean? How will master get synchronized with new slave scheme?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yves</title>
		<link>http://www.mysqlperformanceblog.com/2009/11/13/finding-your-mysql-high-availability-solution-%e2%80%93-replication/comment-page-1/#comment-700890</link>
		<dc:creator>yves</dc:creator>
		<pubDate>Thu, 24 Dec 2009 16:26:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/?p=1607#comment-700890</guid>
		<description>Hi Mahesh,
  master-master and master-slave are very similar,  master-master is basically 2 master-slave setups.  Doing writes will no improve performance since both servers will need to perform the writes and will likely lead to collisions.  The goal with the MM setup is to ease the failback.</description>
		<content:encoded><![CDATA[<p>Hi Mahesh,<br />
  master-master and master-slave are very similar,  master-master is basically 2 master-slave setups.  Doing writes will no improve performance since both servers will need to perform the writes and will likely lead to collisions.  The goal with the MM setup is to ease the failback.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mahesh</title>
		<link>http://www.mysqlperformanceblog.com/2009/11/13/finding-your-mysql-high-availability-solution-%e2%80%93-replication/comment-page-1/#comment-699612</link>
		<dc:creator>Mahesh</dc:creator>
		<pubDate>Tue, 22 Dec 2009 07:05:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/?p=1607#comment-699612</guid>
		<description>Hi,

Thanks for this informative article.

I am confused between choosing master-master(MM) &amp; master-slave(MS).

What is the difference between MM and MS if in both architectures, writes go only to master and reads can happen from both? 

Also in MM, why do the two masters replicate each other when writes are happening on only one?</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Thanks for this informative article.</p>
<p>I am confused between choosing master-master(MM) &amp; master-slave(MS).</p>
<p>What is the difference between MM and MS if in both architectures, writes go only to master and reads can happen from both? </p>
<p>Also in MM, why do the two masters replicate each other when writes are happening on only one?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
