<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>DBMS 2 : DataBase Management System Services &#187; Continuent</title>
	<atom:link href="http://www.dbms2.com/category/products-and-vendors/continuent-tungsten/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dbms2.com</link>
	<description>Choices in data management and analysis</description>
	<lastBuildDate>Thu, 09 Feb 2012 09:21:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.3</generator>
		<item>
		<title>The Continuent Tungsten MySQL replication story</title>
		<link>http://www.dbms2.com/2011/02/05/the-continuent-tungsten-mysql-replication-story/</link>
		<comments>http://www.dbms2.com/2011/02/05/the-continuent-tungsten-mysql-replication-story/#comments</comments>
		<pubDate>Sat, 05 Feb 2011 17:09:32 +0000</pubDate>
		<dc:creator>Curt Monash</dc:creator>
				<category><![CDATA[Continuent]]></category>
		<category><![CDATA[Data integration and middleware]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[Parallelization]]></category>
		<category><![CDATA[Schooner Information Technology]]></category>
		<category><![CDATA[dbShards and CodeFutures]]></category>

		<guid isPermaLink="false">http://www.dbms2.com/?p=3763</guid>
		<description><![CDATA[To the consternation of its then-CEO, I wrote very little about my then-client Continuent. However, when I knew Schooner&#8217;s recent announcement was coming, I reached out to other MySQL scale-out vendors too. I&#8217;ve already posted accordingly about CodeFutures (the dbShards guys) and ScaleBase. Now it&#8217;s late-responding Continuent&#8217;s turn. Actually, what I&#8217;m mainly going to do [...]]]></description>
			<content:encoded><![CDATA[<p>To the consternation of its then-CEO, I wrote very little about my then-client <a href="http://www.dbms2.com/2009/09/03/continuent-on-clustering/">Continuent</a>. However, when I knew <a href="http://www.dbms2.com/2011/01/28/schooner-software-onl/">Schooner&#8217;s recent announcement</a> was coming, I reached out to other MySQL scale-out vendors too. I&#8217;ve already posted accordingly about CodeFutures (the <a href="http://www.dbms2.com/2011/01/25/dbshards-update/">dbShards</a> guys) and <a href="http://www.dbms2.com/2011/01/25/scalebase-another-mpp-oltp-quasi-dbms/">ScaleBase</a>. Now it&#8217;s late-responding Continuent&#8217;s turn.</p>
<p>Actually, what I&#8217;m mainly going to do is quote a very long email that Continuent&#8217;s current CEO/former CTO Robert Hodges sent me, and which I lightly edited.  <span id="more-3763"></span></p>
<blockquote><p>As you know we use replication to build clusters of database replicas for open source DBMS, primarily MySQL. We have two products:</p>
<p>Tungsten Replicator &#8211; Tungsten Replicator is the basic data movement part of Tungsten.  We are going to release it as a separate product this year and push most features into open source to increase usage.</p>
<p>Tungsten Enterprise &#8211; Cluster management and connectivity based on master/slave replicas.  Tungsten Enterprise is commercially licensed on a subscription basis.</p></blockquote>
<p>I guess that means Continuent&#8217;s essentially failed legacy multi-master replication product has &#8212; unsurprisingly &#8212; fallen by the wayside.</p>
<blockquote><p>Here are the major use cases we solve.</p></blockquote>
<p>Note that operational ease is much higher on the list than performance. Note also that Robert naturally compares Continuent Tungsten to his worst competitor, rather than any of the other interesting start-ups&#8217; products.</p>
<blockquote><p><strong>1. Better MySQL Replication. </strong> Tungsten Replicator significantly extends the built-in MySQL replication to handle the following sub-use cases related to master/slave replication. Tungsten is basically a configurable message-processing engine that does database replication.</p>
<p>1.1 Failover with multiple slaves. Tungsten has global transaction IDs, so if you have a failure you can promote the most advanced slave from a pool of slaves to master and point all others to it.  MySQL replication by contrast tracks location using pointers into the master file system, so when the master disappears the slaves lose track of their position. This use case comes up both locally as well in building DR sites.</p>
<p>1.2 Replication between MySQL versions. Tungsten has minimal dependencies on MySQL versions and can replicate from versions 5.0/5.1/5.5 to versions 4.1/5.0/5.1/5.5. MySQL replication by contrast at best replicates up to the next version and either cannot replicate down or has limitations on replicating down version. This comes up commonly in migrations, for example going from MySQL 4.1 to 5.1.</p>
<p>1.3 Heterogeneous replication.  Similarly, Tungsten can replicate out of MySQL into other databases such as PostgreSQL (we are currently implementing this for a large SaaS) as well as Oracle and drizzle (currently very basic and not regularly tested but available for polishing when engagements show up). This comes up commonly when users need to move reporting data out of MySQL into something more civilized for analytics. Greenplum is popular, for example; we are working on that now.</p>
<p>1.4 Multi-master replication. Tungsten can consolidate from multiple masters into a single slave.  We also support topologies involving bi-directional replication with slaves on each master, including ability to promote slaves to take over from its master. MySQL replication cannot do this. These topologies are required for reporting as well as systems that have configuration or process merchant data across sites.</p>
<p>1.5 Parallel replication.  Tungsten has shard-based parallel replication from the MySQL log, which is essential to get around slave lag problems. In addition, we can spread replication processing load flexibly across CPUs and even different hosts. MySQL replication is single-threaded with a hard-coded processing path and cannot spread work across CPUs, processes, or hosts to optimize resource usage or deal with delays due to i/o.</p></blockquote>
<p>And more operational stuff.</p>
<blockquote><p><strong>2. Zero-downtime upgrade</strong>.   Tungsten Enterprise enables applications to implement &#8220;daylight maintenance&#8221; by taking slave databases transparently offline, upgrading/maintaining them, and bringing them back online again. This is critical for 24&#215;7 systems that cannot afford to go down for a day in order to upgrade from MySQL 5.1 to 5.5.</p>
<p>Tungsten provides the management commands to make this possible, for example a simple &#8220;switch&#8221; command that flips a master/slave pair without stopping applications. Tungsten also provides the necessary connectivity, namely transparent, high-performance proxies that hide the location of master and slave databases.  Finally, Tungsten Replicator provides underlying flush transactions that allow us to confirm that all user transactions have safely reached slaves before switching the master.</p></blockquote>
<p>Now we get to performance, but read-only, and even then only for limited use cases.</p>
<blockquote><p><strong>3. Performance scaling.</strong> Tungsten Enterprise can load balance reads across slaves which unloads the master and utilizes otherwise idle slaves. The performance increases can be quite impressive&#8211;for reads that are highly I/O intensive you get linear scaling as you add slaves. It is less beneficial for simple key lookups, especially when databases are fully memory resident.</p>
<p>We have a couple of ways to do this but they basically use transparent proxies or a JDBC library to split reads and writes automatically by examining incoming transactions. For this to work most effectively applications have to follow certain conventions for their transactions. However, they are very simple and many applications do them already. For example, under our &#8220;SmartScale&#8221; load balancing only auto-commit reads are eligible for automatic load balancing.  We don&#8217;t try to load-balance reads within transactions as this would lead to errors for many applications.  Our performance scaling capabilities will grow better as our parallel replication capabilities improve&#8211;a big problem with MySQL replication is slaves tend to lag the masters in busy systems, hence cannot be used as easily for reads that require current information.</p></blockquote>
<p>Yet more operations.</p>
<blockquote><p><strong>4. Automated administration and failure recovery.</strong> Tungsten Enterprise allows users to do complex operations like switch master/slave or take database nodes on and offline.  Also many operations like failover or recognizing new slave nodes occur automatically.  This reduces labor enormously both on the part of administrators as well as the effort to implement such operations in the first place.</p>
<p>Tungsten enables this use case in two ways.  It has built-in procedures for management tasks (switch, backup, restore, online, offline, etc.)  Tungsten also has built-in monitoring that feeds a rules engine containing rules to handle master failure, slave failure, new slave appearing, etc.   These execute automatically, though users can turn off features like automatic failover at their discretion.</p>
<p><strong>5. Disaster Recovery Sites</strong>.  Tungsten Enterprise allows users to set up and and manage DR sites containing up-to-date database copies.   The key features that enable this are automatic VIP management (we use a virtual IP to allow the DR site to continue receiving updates even as the master moves on the main site) as well as global transaction IDs in the replicator, which ensure local and remote slaves do not become confused about their position regardless of how failure occurs.  I have a full write-up of the architecture in the following article:</p>
<p><a href="http://scale-out-blog.blogspot.com/2010/10/mysql-disaster-recovery-with-tungsten.html" target="_blank">http://scale-out-blog.blogspot.com/2010/10/mysql-disaster-recovery-with-tungsten.html</a></p></blockquote>
<p>Finally it&#8217;s time to raise questions about Continuent competitors. <img src='http://www.dbms2.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<blockquote><p>I hope this answers your questions and is not too late.  I read with interest your post on DbShards.  One interesting problem I have never quite figured out with their architecture is how to ensure requests are serialized.  They intercept requests at the library level and apply them both locally as well as in a log that can be applied to other databases.  The big problem with this approach is transaction ordering.  You either have to accept extremely slow performance (e.g., by single-threading all updates) or applications have to generate order independent updates, which means a significant rewrite to follow these conventions.  Otherwise you end up with slaves that look different from the master.  Either way it greatly limits the market.</p>
<p>Schooner has always impressed me as being the most interesting play of  those you are covering.  It&#8217;s interesting they bailed out of hardware.   Appliances for MySQL strike me as a non-starter.  SSD integration has  been very rapidly explored and commoditized by members of the MySQL  community&#8211;people like Mark Callaghan and Peter Zaitsev are more  hardware driven than any database people I have ever worked with.  The  fact that the code that accesses storage devices is completely open  helps drive this kind of behavior.  Schooner still is going to have a  problem that MySQL users are very resistant to proprietary code, at  least the big ones like Facebook, Yahoo, Rackspace, and Google.</p></blockquote>
<p>A bit about future plans:</p>
<blockquote><p>Meanwhile I expect we will take a page from Schooner and start patching the MySQL server over time to make our software run more effectively and provide better solutions to customers.  Large web properties in particular are very comfortable with this approach.</p></blockquote>
<p>And finally some mercifully short rah-rah, still on the theme &#8220;We only acknowledge one competitor and we can clobber them.&#8221; Actually, I moved this from further up, where it seemed a bit jarring.</p>
<blockquote><p>I anticipate that over the course of 2011 Tungsten will be recognized as the best replication engine for MySQL.  This is a big statement considering the entrenched position of MySQL built-in replication but our feature set is very broad and we will also have most of it available in open source by mid-year, which means that a lot more people will start using it.  The list of stable improvements over MySQL is so long I cannot fit them on a single slide any more.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.dbms2.com/2011/02/05/the-continuent-tungsten-mysql-replication-story/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Teradata, Xkoto Gridscale (RIP), and active-active clustering</title>
		<link>http://www.dbms2.com/2010/07/31/teradata-xkoto-gridscale-rip-and-active-active-clustering/</link>
		<comments>http://www.dbms2.com/2010/07/31/teradata-xkoto-gridscale-rip-and-active-active-clustering/#comments</comments>
		<pubDate>Sat, 31 Jul 2010 08:23:57 +0000</pubDate>
		<dc:creator>Curt Monash</dc:creator>
				<category><![CDATA[Clustering]]></category>
		<category><![CDATA[Continuent]]></category>
		<category><![CDATA[Data warehousing]]></category>
		<category><![CDATA[Solid-state memory]]></category>
		<category><![CDATA[Teradata]]></category>
		<category><![CDATA[Theory and architecture]]></category>
		<category><![CDATA[Xkoto]]></category>

		<guid isPermaLink="false">http://www.dbms2.com/?p=2708</guid>
		<description><![CDATA[Having gotten a number of questions about Teradata&#8217;s acquisition of Xkoto, I leaned on Teradata for an update, and eventually connected with Scott Gnau. Takeaways included: Teradata is discontinuing Xkoto&#8217;s existing product Gridscale, which Scott characterized as being too OLTP-focused to be a good fit for Teradata. Teradata hopes and expects that existing Xkoto Gridscale [...]]]></description>
			<content:encoded><![CDATA[<p style="margin-bottom: 0in;">Having gotten a number of questions about Teradata&#8217;s acquisition of Xkoto, I leaned on Teradata for an update, and eventually connected with Scott Gnau. Takeaways included:</p>
<ul>
<li>Teradata is discontinuing <a href="http://www.dbms2.com/2009/09/11/xkoto-gridscale-highlights/"> </a><a href="http://www.dbms2.com/2009/09/11/xkoto-gridscale-highlights/">Xkoto&#8217;s existing product Gridscale</a>, <span style="font-style: normal;">which 	Scott characterized as being too OLTP-focused to be a good fit for 	Teradata. Teradata hopes and expects that existing Xkoto Gridscale 	customers won&#8217;t renew maintenance. (I&#8217;m not sure</span> that they&#8217;ll 	even get the option to do so.)</li>
<li>The point of Teradata&#8217;s technology 	+ engineers acquisition of Xkoto is to enhance Teradata&#8217;s 	active-active or multi-active data warehousing capabilities, which 	it has had in some form for several years.</li>
<li>In particular, Teradata wants to 	tie together different products in the Teradata product line. (Note: 	Those typically all run pretty much the same Teradata database 	management software, except insofar as they might be on different 	releases.)</li>
<li>Scott rattled off all the 	plausible areas of enhancement, with multiple phrasings – 	performance, manageability, ease of use, tools, features, etc.</li>
<li>Teradata plans to have one or two 	releases based on Xkoto technology in 2011.</li>
</ul>
<p style="margin-bottom: 0in;">Frankly, I&#8217;m disappointed at the struggles of clustering efforts such as Xkoto Gridscale or <a href="http://www.dbms2.com/2009/09/03/continuent-on-clustering/">Continuent&#8217;s pre-Tungsten products</a>, but if the DBMS vendors meet the same needs themselves, that&#8217;s OK too.</p>
<p style="margin-bottom: 0in;">The logic behind active-active database implementations actually seems pretty compelling:  <span id="more-2708"></span></p>
<ul>
<li>You may well be keeping a second 	copy of your database for high availability/hot standby.</li>
<li>You might even be keeping a third 	copy for off-site disaster recovery.</li>
<li>In some cases, you might have 	reasons beyond disaster recovery to distribute a database around the 	world.</li>
<li>So why not allow queries to be run 	against all the copies?</li>
<li>And by the way, splitting the 	workload up a bit by kinds (e.g., long-running vs. short query) 	might let you optimize the implementation of each copy of the 	database. (This last point becomes even more important with the rise 	of solid-state memory.)</li>
</ul>
<p style="margin-bottom: 0in;">Analytic DBMS vendors pretty much all need to offer this. (Possible exception: If they have a data-mart-only positioning so extreme that customers will never care about any form of failover.) That said, I must confess to not having done a good job of tracking who does or doesn&#8217;t have which features in this area to date; informative comments to this post in that regard would be much appreciated!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dbms2.com/2010/07/31/teradata-xkoto-gridscale-rip-and-active-active-clustering/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Some NoSQL links</title>
		<link>http://www.dbms2.com/2010/03/12/some-nosql-links/</link>
		<comments>http://www.dbms2.com/2010/03/12/some-nosql-links/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 23:51:42 +0000</pubDate>
		<dc:creator>Curt Monash</dc:creator>
				<category><![CDATA[Amazon and its cloud]]></category>
		<category><![CDATA[Cassandra]]></category>
		<category><![CDATA[Continuent]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[NoSQL]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[RDF and graphs]]></category>
		<category><![CDATA[Tokutek]]></category>

		<guid isPermaLink="false">http://www.dbms2.com/?p=1692</guid>
		<description><![CDATA[I plan to post a few things soon about MongoDB, Cassandra, and NoSQL in general. So I&#8217;m poking around a bit reading stuff on the subjects. Here are some links I found. A little over a year ago, Julian Browne put up a great post on Eric Brewer&#8217;s CAP conjecture/theorem, which provides much of the [...]]]></description>
			<content:encoded><![CDATA[<p>I plan to post a few things soon about MongoDB, Cassandra, and NoSQL in general. So I&#8217;m poking around a bit reading stuff on the subjects. Here are some links I found.<span id="more-1692"></span></p>
<ul>
<li>A little over a year ago, Julian Browne put up a great post on <a href="http://www.julianbrowne.com/article/viewer/brewers-cap-theorem">Eric Brewer&#8217;s CAP conjecture/theorem</a>, which provides much of the impetus to relax the traditional requirement for atomicity/consistency.</li>
<li>Even more directly inspirational to NoSQL technology development were two seminal papers: Google&#8217;s on <a href="http://labs.google.com/papers/bigtable.html">BigTable</a> and Amazon&#8217;s on <a href="http://s3.amazonaws.com/AllThingsDistributed/sosp/amazon-dynamo-sosp2007.pdf">Dynamo</a>. (That said, I&#8217;m having trouble getting myself to actually read them from start to finish, especially since they&#8217;ve been superseded by subsequent technology development.)</li>
<li>10gen (the MongoDB guys) hosted a NoSQL conference yesterday. Much blogging has ensued. The best post I&#8217;ve seen so far was by <a href="http://blog.marcua.net/post/442594842/notes-from-nosql-live-boston-2010">Adam Marcus</a>. I find the graph database notes near the bottom particularly interesting.</li>
<li>Mark Callaghan hit back against the <a href="http://mysqlha.blogspot.com/2010/03/plays-well-with-others.html">NoSQL <span style="text-decoration: line-through;">movement</span> hype</a>, and in particular against the <a href="http://www.dbms2.com/2010/03/02/cassandra-nosql-scalable-oltp/">MySQL/memcached is passe</a>&#8216; meme. On the other hand, he also bemoaned many failings of MySQL. On the third hand, he praised or at least expressed hope for a variety of MySQL-related technologies, including <a href="http://www.dbms2.com/2009/04/16/introduction-to-tokutek/">Tokutek&#8217;s TokuDB</a> and <a href="http://www.dbms2.com/2009/09/03/continuent-on-clustering/">Continuent&#8217;s Tungsten</a>.</li>
<li>In connection with that debate, Mark Rendle offered a <a href="http://blog.markrendle.net/2010/03/do-you-need-relational-database.html">funny rant</a>, mainly pro-NoSQL, in the style of a Socratic dialogue.</li>
<li>John Quinn of Digg recently described <a href="http://www.stumbleupon.com/su/5099Ti/about.digg.com/node/564">Digg&#8217;s move from MySQL to Cassandra</a>, and outlined a lot of features Digg was adding to Cassandra, all of which it is open-sourcing.</li>
<li>The NoSQL guys maintain their own long <a href="http://nosql-database.org/links.html">list of NoSQL-related links</a>.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.dbms2.com/2010/03/12/some-nosql-links/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>More miscellany</title>
		<link>http://www.dbms2.com/2009/12/30/more-miscellany/</link>
		<comments>http://www.dbms2.com/2009/12/30/more-miscellany/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 11:38:22 +0000</pubDate>
		<dc:creator>Curt Monash</dc:creator>
				<category><![CDATA[Continuent]]></category>
		<category><![CDATA[Infobright]]></category>
		<category><![CDATA[Rainstor]]></category>
		<category><![CDATA[Software as a Service (SaaS)]]></category>

		<guid isPermaLink="false">http://www.dbms2.com/?p=1370</guid>
		<description><![CDATA[Adding to yesterday&#8217;s varied quick comments: Robert Hodges of Continuent offers a great outline of Continuent&#8217;s clustering story, with a lot of &#8220;Now we got right what we previously didn&#8217;t know/admit we got wrong.&#8221; Continuent now claims to have a strong clustering offering, both paid and free/open-source, for both MySQL and PostgreSQL, with Oracle support [...]]]></description>
			<content:encoded><![CDATA[<p>Adding to <a href="http://www.dbms2.com/2009/12/29/this-and-that/">yesterday&#8217;s varied quick comments</a>:<span id="more-1370"></span></p>
<p><a href="http://www.dbms2.com/2009/09/03/continuent-on-clustering/">Robert Hodges</a> of <strong>Continuent</strong> offers <a href="http://scale-out-blog.blogspot.com/2009/12/proving-masterslave-clusters-work-and.html">a great outline of Continuent&#8217;s clustering story</a>, with a lot of &#8220;Now we got right what we previously didn&#8217;t know/admit we got wrong.&#8221; Continuent now claims to have a strong <strong>clustering</strong> offering, both paid and free/open-source, for both MySQL and PostgreSQL, with Oracle support perhaps coming really soon.</p>
<p>Merv Adrian, who has <a href="http://www.dbms2.com/2009/06/22/the-tpc-h-benchmark-is-a-blight-upon-the-industry/">overrated the importance of TPC benchmarks</a> in the past, seems to have become more <a href="http://mervadrian.wordpress.com/2009/12/23/additional-caveats-obscure-oracles-tpc-benchmark/">skeptical</a>.</p>
<p>Interim CEO <a href="http://www.infobright.com/Blog/ceo_blog">Mark Burton</a> laid out<strong> Infobright&#8217;s focus</strong> pretty clearly when he took over:</p>
<blockquote><p><span style="letter-spacing: 0px;"> &#8230; the focus must be in building products that fit market segments where ease-of-use and easily attainable performance are valued.  This doesn’t sound like the high end of Data Warehousing to me where highly complex MPP architectures and teams of DBAs spend their time.  It sounds like the realm of Departmental IT and SMB where business leaders are in a hurry to gain access to data and answers without the lead time and pain of complex architectures and high costs.</span></p></blockquote>
<p><span style="letter-spacing: 0px;">I&#8217;m hearing about a <strong>SaaS focus</strong> from a lot of companies. The Continuent link above mentions one. So does <a href="http://www.rainstor.com/news-blog/news/users-demand-saas-data-escrow-services">RainStor&#8217;s latest blog post</a>. <a href="http://www.dbms2.com/2009/12/27/introduction-to-gooddata/">Gooddata</a>, a SaaS vendor itself, seems focused on analyzing data that was originally created via SaaS. I haven&#8217;t talked with Cast Iron or Pervasive for a while, but when I did, their ETL market targeting was <a href="http://www.dbms2.com/2008/03/21/cast-iron-systems-focuses-on-saas-data-integration/">all about SaaS</a>. And of course, I hear dumber SaaS-focus ideas as well. I think the biggest substantive reason for this trend is &#8212; i</span><span style="letter-spacing: 0px;">f you don&#8217;t have the broadest feature set, and fear large enterprises therefore won&#8217;t want your stuff, going after SMBs makes sense. And SMBs are presumed to be going SaaS. Also in the mix, of course, are a single platform to support, a small number of large SaaS vendors to sell to or partner with, and/or general trendiness.<br />
</span></p>
<p><span style="letter-spacing: 0px;"><br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dbms2.com/2009/12/30/more-miscellany/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Continuent on clustering</title>
		<link>http://www.dbms2.com/2009/09/03/continuent-on-clustering/</link>
		<comments>http://www.dbms2.com/2009/09/03/continuent-on-clustering/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 13:46:56 +0000</pubDate>
		<dc:creator>Curt Monash</dc:creator>
				<category><![CDATA[Clustering]]></category>
		<category><![CDATA[Continuent]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[PostgreSQL]]></category>

		<guid isPermaLink="false">http://www.dbms2.com/?p=876</guid>
		<description><![CDATA[Robert Hodges, CTO of my client Continuent, put up a blog post laying out his and Continuent&#8217;s views on database clustering. Continuent offers Tungsten, its third try at database clustering technology, targeted at MySQL, PostgreSQL, and perhaps Oracle. Unlike Continuent&#8217;s more ambitious. second-generation product, Tungsten offers single-master replication, which in Robert&#8217;s view allows for great [...]]]></description>
			<content:encoded><![CDATA[<p style="margin-bottom: 0in;">Robert Hodges, CTO of my client Continuent, put up <a href="http://scale-out-blog.blogspot.com/2009/09/future-of-database-clustering.html">a blog post</a> laying out his and Continuent&#8217;s views on database clustering. Continuent offers Tungsten, its third try at database clustering technology, targeted at MySQL, PostgreSQL, and perhaps Oracle. Unlike Continuent&#8217;s more ambitious. second-generation product, Tungsten offers single-master replication, which in Robert&#8217;s view allows for great ease of deployment and administration (he likes the phrase “bone-simple”).</p>
<p style="margin-bottom: 0in;">The downside to Continuent Tungsten &#8216;s stripped down architecture is that it doesn&#8217;t solve the most extreme performance scale-out problems.  Instead, Continuent focuses on the other big benefits of keeping your data in more than one place, namely high availability and data loss prevention (i.e., backup).</p>
<p style="margin-bottom: 0in;">Continuent has been around for a number of years, starting out in Finland but now being based in Silicon Valley. For most purposes, however, it&#8217;s reasonable to think of Continuent and Tungsten as start-up efforts.</p>
<p style="margin-bottom: 0in;">As you might guess from the references to Finland and MySQL, Continuent&#8217;s products are open source, or at least have open source versions. I&#8217;m still a little fuzzy as to which features are open sourced and which are not. For that matter, I&#8217;m still unclear as to Tungsten&#8217;s feature list overall &#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dbms2.com/2009/09/03/continuent-on-clustering/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

