<?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>The Official Rackspace Blog &#187; Sriram Rajan</title>
	<atom:link href="http://www.rackspace.com/blog/author/sriram-rajan/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rackspace.com/blog</link>
	<description>The Official Rackspace Blog</description>
	<lastBuildDate>Wed, 19 Jun 2013 20:50:43 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Navigating The Various Versions Of MySQL</title>
		<link>http://www.rackspace.com/blog/navigating-the-various-versions-of-mysql/</link>
		<comments>http://www.rackspace.com/blog/navigating-the-various-versions-of-mysql/#comments</comments>
		<pubDate>Mon, 13 Aug 2012 19:30:56 +0000</pubDate>
		<dc:creator>Sriram Rajan</dc:creator>
				<category><![CDATA[Cloud Industry Topics]]></category>
		<category><![CDATA[Product Discussion]]></category>
		<category><![CDATA[Tips for Devs and Sys Admins]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[LAMP]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.rackspace.com/blog/?p=20762</guid>
		<description><![CDATA[There are many MySQL versions. Here, we drill into what the various versions are and shed some light on them for anyone who has worked with MySQL and LAMP environments.]]></description>
				<content:encoded><![CDATA[<p>MySQL versions can make for interesting, yet at times confusing reading. In this article I will explore MySQL versions and shed light on them for anyone who uses or has worked with MySQL or LAMP environments.<em> </em></p>
<p>First, let’s take a look at the version soup.</p>
<ul>
<li>Version 5.2 was re-branded as version 6.0.</li>
<li>Version 6.0 was then canceled.</li>
<li>Version 5.4 then replaced version 6.0.</li>
<li>Version 5.4 was then re-branded as version 5.5.</li>
<li>MySQL NDB cluster comes with its own version system. As of this writing 7.2 is the latest release.</li>
<li><a href="http://www.innodb.com/">Innodb</a>, the most used engine in MySQL now has its own version. MySQL 5.0 had a pre-InnoDB version 1.0, 5.1 has the default builtin and improved plugin version 1.0.xx, and the current General AvailabilityMySQL 5.5 has innodb version 1.1.xx.</li>
<li>MySQL 5.6 will be the next release from MySQL(Oracle). For a full feature list see <a href="http://dev.mysql.com/tech-resources/articles/whats-new-in-mysql-5.6.html">http://dev.mysql.com/tech-resources/articles/whats-new-in-mysql-5.6.html</a></li>
</ul>
<h3>Forks And Patches</h3>
<p>Adding more confusion to the various versions is the number of forks and patches.</p>
<ul>
<li><a href="http://www.drizzle.org/">Drizzle</a> was a fork of MySQL 6.0. Drizzle is probably the only true fork &#8211; it has fully re-factored code and is in active development.</li>
<li><a href="http://bit.ly/d1ENDN">MariaDB</a> is a release driven by Michael &#8220;Monty&#8221; Widenius, the original author of MySQL. MySQL 5.1 was the basis for MariaDB and as of this writing the latest version is MariaDB 5.5.</li>
<li>Percona has several patches for both MySQL 5.1 and MySQL 5.5. Percona patches are a re-base of the main release and XtraDB is a re-base of InnoDB. Both Percona Server and XtraDB are also not true forks of MySQL or Innodb. However, they have some very good performance and monitoring enhancements.</li>
<li>Facebook and Google also release patches for MySQL. These are done for specific company requirements, but as is often the case some of these Facebook, Google and Percona features eventually find their way into main releases.  Information on Facebook&#8217;s MySQL patches can be found at <a href="https://www.facebook.com/MySQLatFacebook">https://www.facebook.com/MySQLatFacebook<br />
</a></li>
</ul>
<h3>Third Party Storage Engines</h3>
<p>Outside of InnoDB and MyISAM, there are few third party plugins that suit specific needs as well.</p>
<ul>
<li>TokuDB &#8211; A transactional engine, which is available as a plugin, provides some improvements for large databases or write-heavy environments. More information is available at <a href="http://www.tokutek.com/products/tokudb-for-mysql/">http://www.tokutek.com/products/tokudb-for-mysql/</a></li>
<li>PBXT &#8211; A transactional engine like InnoDB and fully ACID compliant. PBXT has not had much maintenance in the past two years and so is close to being defunct.</li>
<li>InfiniDB &#8211; An open source engine by <a href="http://www.calpont.com/">Calpont</a>, InfiniDB is suited for data warehousing and read-intensive applications. More information is available at <a href="http://infinidb.org/about-us/infinidb">http://infinidb.org/about-us/infinidb</a></li>
<li>Infobright &#8211; The <a href="http://www.infobright.com/">Infobright</a> engine for MySQL is another one aimed at data warehousing and large datasets. Read more at <a href="http://www.infobright.com/Products/MySQL-Integration/">http://www.infobright.com/Products/MySQL-Integration/</a></li>
</ul>
<h3>Selecting The Right One</h3>
<ul>
<li>For most part, staying with the Oracle releases will suit most application needs. These releases are in active development, are generally stable and have binary versions for most systems.</li>
<li>MariaDB is binary compatible with MySQL and may suit certain needs. It also includes XtraDB from Percona. For a good comparison and the various incompatibilities, refer to <a href="http://kb.askmonty.org/en/mariadb-versus-mysql/">http://kb.askmonty.org/en/mariadb-versus-mysql/</a></li>
<li>Going with a fork like Drizzle will likely require some application change. Drizzle does not maintain server level compatibility but does talk the MySQL protocol. For a full list of differences refer to <a href="http://docs.drizzle.org/mysql_differences.html">http://docs.drizzle.org/mysql_differences.html</a></li>
<li>The Percona patches and versions provide a more seamless migration as they are generally fully compatible with the MySQL releases. If you are concerned about vendor support, Percona also provides that. <a href="https://launchpad.net/percona-toolkit">Percona toolkit</a> (formerly MaatKit) is a good addition and provides some nice tools to automate a variety of tasks. This toolkit can be used with any MySQL release and so you don&#8217;t need to run Percona server.</li>
<li>The third party engines come into a play only if are looking for specific features that come with the engines.</li>
</ul>
<h3>Links And Further Reading</h3>
<ul>
<li>MySQL 5.6 features &#8211; <a href="http://dev.mysql.com/tech-resources/articles/whats-new-in-mysql-5.6.html">http://dev.mysql.com/tech-resources/articles/whats-new-in-mysql-5.6.html</a></li>
<li>MariaDB information &#8211; <a href="http://bit.ly/Oirawn">http://kb.askmonty.org/en/mariadb/</a></li>
<li>OurDelta homepage &#8211; <a href="http://ourdelta.org/">http://ourdelta.org/</a></li>
<li>Drizzle differences &#8211; <a href="http://docs.drizzle.org/mysql_differences.html">http://docs.drizzle.org/mysql_differences.html</a></li>
<li>Percona server &#8211; <a href="http://www.percona.com/software/percona-server/">http://www.percona.com/software/percona-server/</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.rackspace.com/blog/navigating-the-various-versions-of-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Content Delivery Network via Rackspace Cloud Files: c3414940.r40.cf0.rackcdn.com

 Served from: www.rackspace.com @ 2013-06-19 22:46:49 by W3 Total Cache -->