<?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>SiliconANGLE &#187; rackspace</title>
	<atom:link href="http://siliconangle.com/blog/tag/rackspace/feed/" rel="self" type="application/rss+xml" />
	<link>http://siliconangle.com</link>
	<description>Computer Science meets Social Science</description>
	<lastBuildDate>Fri, 25 May 2012 14:06:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<cloud domain='siliconangle.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>		<item>
		<title>Rackspace Open-Sources A Node.js Library for Creating and Parsing XML Documents</title>
		<link>http://devopsangle.com/2012/05/09/rackspace-open-sources-a-node-js-library-for-creating-and-parsing-xml-documents/</link>
		<comments>http://devopsangle.com/2012/05/09/rackspace-open-sources-a-node-js-library-for-creating-and-parsing-xml-documents/#comments</comments>
		<pubDate>Wed, 09 May 2012 16:32:29 +0000</pubDate>
		<dc:creator>Alex Williams</dc:creator>
				<category><![CDATA[DevOpsANGLE]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[MaaS]]></category>
		<category><![CDATA[node.js]]></category>
		<category><![CDATA[nodelementree]]></category>
		<category><![CDATA[rackspace]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://siliconangle.com/?p=103498</guid>
		<description><![CDATA[The issues that come with connecting the legacy enterprise to the cloud mean dealing with heavyweight technologies such as XML. To that end, Rackspace developers have built and open-sourced a library for creating XML documents called &#8220;node-elementtree,&#8221; a Node.js Library &#8230; <a href="http://devopsangle.com/2012/05/09/rackspace-open-sources-a-node-js-library-for-creating-and-parsing-xml-documents/">Continue reading <span class="meta-nav">&#8594;</span></a><p><table width="80%" border="0" align="center" cellpadding="3" cellspacing="3">
  <tr>
    <td bgcolor="#FFFF99"><center>
      <p><a href="http://devopsangle.com/2012/05/09/rackspace-open-sources-a-node-js-library-for-creating-and-parsing-xml-documents/">Rackspace Open-Sources A Node.js Library for Creating and Parsing XML Documents</a> is a post from: <a href="http://siliconangle.com">SiliconANGLE</a>
<br />
        We're now available on the Kindle! <a href="http://www.amazon.com/gp/product/B004J17FSQ?ie=UTF8&tag=si00e-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B004J17FSQ">Subscribe today</a>. </p>
    </center></td>
  </tr>
</table>
</p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://siliconangle.com/servicesangle/blog/2011/11/18/engine-yard-labs-launches-with-node-js-support/nodejs_logo_light/" rel="attachment wp-att-80253"><img class="alignright size-medium wp-image-80253" title="Node.js logo" src="http://siliconangle.com/files/2011/11/Nodejs_logo_light-300x102.png" alt="Node.js logo" width="300" height="102" /></a>The issues that come with connecting the legacy enterprise to the cloud mean dealing with heavyweight technologies such as XML. To that end, Rackspace developers have built and open-sourced a library for creating XML documents called &#8220;node-elementtree,&#8221; a Node.js Library to build and parse XML documents.</p>
<p><a href="http://www.tomaz.me/">Tomaz Muraus</a> writes on the <a href="http://www.rackspace.com/blog/node-elementtree-node-js-library-to-build-and-parse-xml-documents/">Rackspace blog</a> that none of the developers really care for XML but they have to support it as some of its API customers still use it. They prefer JSON instead, the chosen lightweight service for developers everywhere.</p>
<p>The need for node-elementtree came as Rackspace started building out a monitoring-as-a-service (MaaS) platform. As more data moves to cloud environments there is an interdependency that IT needs to understand. MaaS is intended to help in that effort.</p>
<p>Rackspace developers found that there wasn’t a good library available for creating XML documents. So the team decided to build their own.</p>
<p>The group decided to model its library on the Python-based ElementTree, an API for parsing XML. According to the<a href="http://docs.python.org/library/xml.etree.elementtree.html"> Python.org</a> site, the Element Tree API &#8220;is a flexible container object, designed to store hierarchical data structures in memory.&#8221;</p>
<p>The Rackspace blog post provides examples for <a href="https://gist.github.com/2632179">creating</a> and <a href="https://gist.github.com/2554353">parsing </a>XML documents.</p>
<p>Rackspace uses node-elementtree for MaaS in two places:</p>
<blockquote><p>1. Sending usage documents to an Atom Hopper instance<br />
2. Returning a response to the API user which has requested a response format to be XML</p>
<p>In the second case we actually use it in combination with our validation and serialization framework called Swiz. We use Swiz to define field types and validators for every object in the system. When a user hits our API and requests XML, Swiz serializes the response using the object definition and node-elementtree library.</p></blockquote>
<p>Rackspace has in recent months also contributed  <a href="http://www.rackspace.com/blog/rackspace-open-sources-whiskey-a-test-framework/" target="_blank">Whiskey, a  Node.js test framework</a> and the <a href="http://www.rackspace.com/blog/rackspace-contributes-cassandra-cql-driver-for-node-js/" target="_blank">Cassandra CQL driver</a>, a driver for Node.js.</p>
<p>There is a recognition that XML has to be dealt with as API customers still use it. node-elementtree offers a modern way to build and parse XML documents in an environment more friendly to a new generation of developers.</p>
<p><table width="80%" border="0" align="center" cellpadding="3" cellspacing="3">
  <tr>
    <td bgcolor="#FFFF99"><center>
      <p><a href="http://devopsangle.com/2012/05/09/rackspace-open-sources-a-node-js-library-for-creating-and-parsing-xml-documents/">Rackspace Open-Sources A Node.js Library for Creating and Parsing XML Documents</a> is a post from: <a href="http://siliconangle.com">SiliconANGLE</a>
<br />
        We're now available on the Kindle! <a href="http://www.amazon.com/gp/product/B004J17FSQ?ie=UTF8&tag=si00e-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B004J17FSQ">Subscribe today</a>. </p>
    </center></td>
  </tr>
</table>
</p>
<h2  class="related_post_title">In the same vein:</h2><ul class="related_post"><li><a href="http://siliconangle.com/servicesangle/blog/2012/01/06/rackspace-open-sources-dreadnot-a-devops-deployment-tool-written-in-node-js/" title="Rackspace Open Sources Dreadnot, a DevOps Deployment Tool Written in Node.js">Rackspace Open Sources Dreadnot, a DevOps Deployment Tool Written in Node.js</a></li><li><a href="http://siliconangle.com/servicesangle/blog/2011/12/13/infographic-the-most-popular-tools-and-services-among-developers/" title="Infographic: The Most Popular Tools and Services Among Developers">Infographic: The Most Popular Tools and Services Among Developers</a></li><li><a href="http://siliconangle.com/blog/2009/09/16/we-dont-need-cloud-standards-yet/" title="We Don&#8217;t Need Cloud Standards (Yet)">We Don&#8217;t Need Cloud Standards (Yet)</a></li><li><a href="http://siliconangle.com/blog/2012/05/14/three-years-of-kickstarter-a-rewarding-history/" title="Three Years of Kickstarter: A Rewarding History">Three Years of Kickstarter: A Rewarding History</a></li><li><a href="http://devopsangle.com/2012/05/10/tacoconf-ride-a-bike-eat-tacos-and-learn-how-to-run-your-own-cultureconf/" title="TacoConf: Ride a Bike, Eat Tacos and Learn How to Run Your Own &#8220;CultureConf&#8221;">TacoConf: Ride a Bike, Eat Tacos and Learn How to Run Your Own &#8220;CultureConf&#8221;</a></li><li><a href="http://siliconangle.com/blog/2012/05/09/adaptly-raises-10-5m-as-facebook-ecosystem-faces-rival-in-pinterest/" title="Adaptly Raises $10.5M as Facebook Ecosystem Faces Rival in Pinterest">Adaptly Raises $10.5M as Facebook Ecosystem Faces Rival in Pinterest</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://devopsangle.com/2012/05/09/rackspace-open-sources-a-node-js-library-for-creating-and-parsing-xml-documents/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Re-Invent Cloud Computing with IBM Solutions [Video]</title>
		<link>http://siliconangle.com/blog/2012/05/04/re-invent-cloud-computing-with-ibm-solutions-video/</link>
		<comments>http://siliconangle.com/blog/2012/05/04/re-invent-cloud-computing-with-ibm-solutions-video/#comments</comments>
		<pubDate>Fri, 04 May 2012 17:19:45 +0000</pubDate>
		<dc:creator>Saroj Kar</dc:creator>
				<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[CloudANGLE]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[#theCube]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[IBM PureSystems]]></category>
		<category><![CDATA[IBM SmartCloud]]></category>
		<category><![CDATA[public cloud]]></category>
		<category><![CDATA[pure systems]]></category>
		<category><![CDATA[rackspace]]></category>
		<category><![CDATA[rackspace cloud]]></category>
		<category><![CDATA[Wikibon]]></category>
		<category><![CDATA[Wikibon.org]]></category>

		<guid isPermaLink="false">http://siliconangle.com/?p=102927</guid>
		<description><![CDATA[Randy Arseneau, Platform Strategy Consultant at IBM responsible for go-to market strategy formulation, global storage platform sales enablement, portfolio positioning and analyst relations, stopped theCube not too long ago to give his take on the future of cloud computing.  He &#8230; <a href="http://siliconangle.com/blog/2012/05/04/re-invent-cloud-computing-with-ibm-solutions-video/">Continue reading <span class="meta-nav">&#8594;</span></a><p><table width="80%" border="0" align="center" cellpadding="3" cellspacing="3">
  <tr>
    <td bgcolor="#FFFF99"><center>
      <p><a href="http://siliconangle.com/blog/2012/05/04/re-invent-cloud-computing-with-ibm-solutions-video/">Re-Invent Cloud Computing with IBM Solutions [Video]</a> is a post from: <a href="http://siliconangle.com">SiliconANGLE</a>
<br />
        We're now available on the Kindle! <a href="http://www.amazon.com/gp/product/B004J17FSQ?ie=UTF8&tag=si00e-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B004J17FSQ">Subscribe today</a>. </p>
    </center></td>
  </tr>
</table>
</p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://siliconangle.com/blog/2012/05/04/re-invent-cloud-computing-with-ibm-solutions-video/screen-shot-2012-05-04-at-8-28-38-am/" rel="attachment wp-att-103031"><img class="alignright size-medium wp-image-103031" title="Screen shot 2012-05-04 at 8.28.38 AM" src="http://siliconangle.com/files/2012/05/Screen-shot-2012-05-04-at-8.28.38-AM-300x178.png" alt="" width="300" height="178" /></a>Randy Arseneau, Platform Strategy Consultant at IBM responsible for go-to market strategy formulation, global storage platform sales enablement, portfolio positioning and analyst relations, stopped theCube not too long ago to give his take on the future of cloud computing.  He also discussed IBM&#8217;s role in the cloud, and the growing concerns around security. He <a href="http://siliconangle.tv/video/2012-year-cloud">shared his insight</a> with Wikibon.org founder Dave Vellante (see full video below).</p>
<p>Arseneau expressed his view on the future of cloud computing in response to Vellante’s perspective on industry adoption of cloud computing.  Going by the latest signs, “we believe 2012 is going to the year of the cloud,&#8221; Arseneau says. The cloud is going to be become the standard mechanism for the delivering and consumption of information.”</p>
<p>On his company role in providing cloud services to industries, Arseneau said IBM is capable of designing systems to bring the benefits of cloud computing while avoiding the security and risk for small, medium to large sized businesses.</p>
<blockquote><p>“IBM thinks cloud is fundamentally about very efficient, very agile, easy to provision, easy to manage, scalable, cost effective infrastructure that can be adapted at very granular level, can be optimized for workload, policy driven across wide user cases and workload and can be managed very easily.”</p></blockquote>
<p>Arseneau <a href="http://siliconangle.tv/video/cloud-no-longer-just-buzzword">noted</a> that early cloud adopters were not very knowledgeable and most believed public cloud services from companies like Amazon, Rackspace and others were commercial and consumer oriented platforms that lack security, aren&#8217;t scalable and are tedious to implement. But with the evolution of the technology, people&#8217;s mindsets are changing.</p>
<p>The interview then turned to the concerns on security of cloud computing, a key concern for businesses looking to adopt cloud tools and services.</p>
<p>Looking at an <a href="http://siliconangle.tv/video/can-ibm-solve-security-challenges-cloud">IBM initiative</a> to solve this problem, Arseneau note&#8217;s Big Blue&#8217;s expertise in introducing new technology, and is now providing the &#8220;best and most comprehensive&#8221; cloud service offerings to date. IBM is now offering enterprises of all sizes a way to host enterprise-class, cost-saving and security-rich cloud solutions that aide in business growth and productivity.</p>
<p>IBM plays a major role as cloud architectures and usage models.  For one, <a href="http://servicesangle.com/blog/2012/05/02/how-services-providers-can-benefit-from-ibms-new-patterns-technology/">IBM SmartCloud</a> allows users to create, update, maintain and even scale an enterprise-wide system in a cost effective way without the need to purchase new hardware.  And the new <a href="http://www.ibm.com/developerworks/expert/try.html">PureApplications System</a> provides more <a href="http://siliconangle.com/blog/2012/05/03/automate-your-virtual-cloud-with-ibm-systems-video/">automation</a> for the network based computing devices.</p>
<p style="text-align: center;"><code><object id="clip_embed_player_flash" width="425" height="255" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowScriptAccess" value="always" /><param name="allowNetworking" value="all" /><param name="allowFullScreen" value="true" /><param name="flashvars" value="auto_play=true&amp;start_volume=25&amp;title=2012: Year of The Cloud&amp;channel=nicefishfilms&amp;archive_id=316597879&amp;consumer_key=4fuaMvjaiK4BDHOkwHgk1A" /><param name="src" value="http://www.justin.tv/widgets/archive_embed_player.swf" /><embed id="clip_embed_player_flash" width="425" height="255" type="application/x-shockwave-flash" src="http://www.justin.tv/widgets/archive_embed_player.swf" allowScriptAccess="always" allowNetworking="all" allowFullScreen="true" flashvars="auto_play=true&amp;start_volume=25&amp;title=2012: Year of The Cloud&amp;channel=nicefishfilms&amp;archive_id=316597879&amp;consumer_key=4fuaMvjaiK4BDHOkwHgk1A" /></object></code></p>
<p><table width="80%" border="0" align="center" cellpadding="3" cellspacing="3">
  <tr>
    <td bgcolor="#FFFF99"><center>
      <p><a href="http://siliconangle.com/blog/2012/05/04/re-invent-cloud-computing-with-ibm-solutions-video/">Re-Invent Cloud Computing with IBM Solutions [Video]</a> is a post from: <a href="http://siliconangle.com">SiliconANGLE</a>
<br />
        We're now available on the Kindle! <a href="http://www.amazon.com/gp/product/B004J17FSQ?ie=UTF8&tag=si00e-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B004J17FSQ">Subscribe today</a>. </p>
    </center></td>
  </tr>
</table>
</p>
<h2  class="related_post_title">In the same vein:</h2><ul class="related_post"><li><a href="http://siliconangle.com/blog/2012/05/03/automate-your-virtual-cloud-with-ibm-systems-video/" title="Automate Your Virtual Cloud with IBM Systems [Video]">Automate Your Virtual Cloud with IBM Systems [Video]</a></li><li><a href="http://siliconangle.com/blog/2012/05/01/ibm-leaders-discuss-impact-and-vision-of-ibm-storage-portfolio-video/" title="IBM Leaders Discuss Impact and Vision of IBM Storage Portfolio [Video]">IBM Leaders Discuss Impact and Vision of IBM Storage Portfolio [Video]</a></li><li><a href="http://siliconangle.com/blog/2012/04/18/ibm-earnings-reflect-on-big-blues-storage-strategy/" title="IBM Earnings Reflect On Big Blue&#8217;s Storage Strategy">IBM Earnings Reflect On Big Blue&#8217;s Storage Strategy</a></li><li><a href="http://siliconangle.com/blog/2011/06/24/openstack-set-for-stardom-supporters-join-the-ride/" title="OpenStack Set for Stardom, Supporters Join the Ride">OpenStack Set for Stardom, Supporters Join the Ride</a></li><li><a href="http://siliconangle.com/blog/2011/06/15/hp-has-tablet-strategy-for-device-control-panels-says-wikibon-cto-david-floyer/" title="HP Has Tablet Strategy for Device Control Panels, says Wikibon CTO David Floyer">HP Has Tablet Strategy for Device Control Panels, says Wikibon CTO David Floyer</a></li><li><a href="http://siliconangle.com/blog/2011/02/21/2011-cloud-trend-going-mainstream-as-businesses-seek-cheap-scalability/" title="2011 Cloud Trend: Going Mainstream As Businesses Seek Cheap Scalability">2011 Cloud Trend: Going Mainstream As Businesses Seek Cheap Scalability</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://siliconangle.com/blog/2012/05/04/re-invent-cloud-computing-with-ibm-solutions-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>This Week in the Cloud: Rackspace, Big Data and Titanium 2.0</title>
		<link>http://siliconangle.com/blog/2012/04/20/this-week-in-the-cloud-rackspace-big-data-and-titanium-2-0/</link>
		<comments>http://siliconangle.com/blog/2012/04/20/this-week-in-the-cloud-rackspace-big-data-and-titanium-2-0/#comments</comments>
		<pubDate>Fri, 20 Apr 2012 19:40:23 +0000</pubDate>
		<dc:creator>Maria Deutscher</dc:creator>
				<category><![CDATA[Big Data]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[HP]]></category>
		<category><![CDATA[MemeConnect]]></category>
		<category><![CDATA[MobileANGLE]]></category>
		<category><![CDATA[app management console]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[openstack]]></category>
		<category><![CDATA[rackspace]]></category>
		<category><![CDATA[round-up]]></category>

		<guid isPermaLink="false">http://siliconangle.com/?p=101196</guid>
		<description><![CDATA[This week in the cloud was a fairly unusual one, in that we have seen not one but three big announcements marketing the convergence of at least two trends in the cloud. First up is Rackspace’s news.  The web host &#8230; <a href="http://siliconangle.com/blog/2012/04/20/this-week-in-the-cloud-rackspace-big-data-and-titanium-2-0/">Continue reading <span class="meta-nav">&#8594;</span></a><p><table width="80%" border="0" align="center" cellpadding="3" cellspacing="3">
  <tr>
    <td bgcolor="#FFFF99"><center>
      <p><a href="http://siliconangle.com/blog/2012/04/20/this-week-in-the-cloud-rackspace-big-data-and-titanium-2-0/">This Week in the Cloud: Rackspace, Big Data and Titanium 2.0</a> is a post from: <a href="http://siliconangle.com">SiliconANGLE</a>
<br />
        We're now available on the Kindle! <a href="http://www.amazon.com/gp/product/B004J17FSQ?ie=UTF8&tag=si00e-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B004J17FSQ">Subscribe today</a>. </p>
    </center></td>
  </tr>
</table>
</p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://siliconangle.com/blog/2012/04/09/computers-need-a-social-network-the-cloud-says-eucalyptus-ceo-marten-mickos/cloud_computing-2/" rel="attachment wp-att-99473"><img class="alignright size-medium wp-image-99473" title="cloud_computing" src="http://siliconangle.com/files/2012/04/cloud_computing-300x204.png" alt="" width="300" height="204" /></a>This week in the cloud was a fairly unusual one, in that we have seen not one but three big announcements marketing the convergence of at least two trends in the cloud.</p>
<p>First up is Rackspace’s news.  The web host revealed a massive commitment to OpenStack, an initiative it conceived only two years, by <a href="http://servicesangle.com/blog/2012/04/16/rackspace-puts-openstack-where-its-mouth-is-with-new-services/">migrating its flagship services to the platform</a>. In 24 months OpenStack managed to build an ecosystem with hundreds of partners, produce five different versions and become one of the largest cloud companies’ solution of choice.</p>
<p>The update stirred a lot of buzz, and not just from the blogosphere. Several companies jumped on the bandwagon, including Nicria and Infochimps. The latter announced right off the bat that a huge chunk of its big data portfolio – its management, provisioning and visualization offerings – support OpenStack, and as a result, the Rackspace Cloud.</p>
<p>The third item comes from Appcelerator, the mobile development solutions maker. It launched the <a href="../blog/2012/04/17/appcelerator-unveils-titanium-2-0-highlights-cloud-integration/">second version of its popular Titanium platform</a>, with the biggest addition being a new tool that saves web developers a lot of time. It does that by automating a big portion of the backend coding that goes along with writing an app. Titanium 2.0 just so happens to support all the major frameworks and languages, with a cross-platform API due to arrive in a few months’ time.</p>
<p>Last but not least is the personal cloud news from Hewlett-Packard, which is also getting involved with mobile.  The company is targeting the enterprise with t<a href="../blog/2012/04/18/hp-killing-two-birds-with-one-app-store/">wo new products that complement each other </a> -  an app management console and testing environment, in addition to a data manager that allows employees to access corporate information more effectively.</p>
<p><table width="80%" border="0" align="center" cellpadding="3" cellspacing="3">
  <tr>
    <td bgcolor="#FFFF99"><center>
      <p><a href="http://siliconangle.com/blog/2012/04/20/this-week-in-the-cloud-rackspace-big-data-and-titanium-2-0/">This Week in the Cloud: Rackspace, Big Data and Titanium 2.0</a> is a post from: <a href="http://siliconangle.com">SiliconANGLE</a>
<br />
        We're now available on the Kindle! <a href="http://www.amazon.com/gp/product/B004J17FSQ?ie=UTF8&tag=si00e-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B004J17FSQ">Subscribe today</a>. </p>
    </center></td>
  </tr>
</table>
</p>
<h2  class="related_post_title">In the same vein:</h2><ul class="related_post"><li><a href="http://siliconangle.com/blog/2011/06/24/openstack-set-for-stardom-supporters-join-the-ride/" title="OpenStack Set for Stardom, Supporters Join the Ride">OpenStack Set for Stardom, Supporters Join the Ride</a></li><li><a href="http://siliconangle.com/blog/2011/02/21/2011-cloud-trend-going-mainstream-as-businesses-seek-cheap-scalability/" title="2011 Cloud Trend: Going Mainstream As Businesses Seek Cheap Scalability">2011 Cloud Trend: Going Mainstream As Businesses Seek Cheap Scalability</a></li><li><a href="http://siliconangle.com/blog/2012/05/18/this-week-in-the-cloud-new-services-home-organization-and-virtual-gaming/" title="This Week in the Cloud: New Services, Home Organization and Virtual Gaming">This Week in the Cloud: New Services, Home Organization and Virtual Gaming</a></li><li><a href="http://siliconangle.com/blog/2012/04/17/nicira-latest-to-join-rackspace-openstack-buzz/" title="Nicira Latest to Join Rackspace-OpenStack Buzz">Nicira Latest to Join Rackspace-OpenStack Buzz</a></li><li><a href="http://siliconangle.com/blog/2012/04/17/infochimps-an-early-supporter-of-openstacked-rackspace-cloud/" title="Infochimps an Early Supporter of OpenStacked RackSpace Cloud">Infochimps an Early Supporter of OpenStacked RackSpace Cloud</a></li><li><a href="http://servicesangle.com/blog/2012/04/12/openstack-foundation-gets-funded-with-help-from-att-hp-ibm-and-more/" title="OpenStack Foundation Gets Funded With Help From AT&#038;T, HP, IBM and More">OpenStack Foundation Gets Funded With Help From AT&#038;T, HP, IBM and More</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://siliconangle.com/blog/2012/04/20/this-week-in-the-cloud-rackspace-big-data-and-titanium-2-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nicira Latest to Join Rackspace-OpenStack Buzz</title>
		<link>http://siliconangle.com/blog/2012/04/17/nicira-latest-to-join-rackspace-openstack-buzz/</link>
		<comments>http://siliconangle.com/blog/2012/04/17/nicira-latest-to-join-rackspace-openstack-buzz/#comments</comments>
		<pubDate>Tue, 17 Apr 2012 17:00:50 +0000</pubDate>
		<dc:creator>Maria Deutscher</dc:creator>
				<category><![CDATA[Big Data]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[MemeConnect]]></category>
		<category><![CDATA[nicira]]></category>
		<category><![CDATA[opencloud OS]]></category>
		<category><![CDATA[openstack]]></category>
		<category><![CDATA[rackspace]]></category>

		<guid isPermaLink="false">http://siliconangle.com/?p=100681</guid>
		<description><![CDATA[Yesterday cloud host Rackspace crossed a fairly major milestone, and the same can be said of the OpenStack initiative that kicked off just two years ago. The company said that the Rackspace Cloud service is now powered by the open &#8230; <a href="http://siliconangle.com/blog/2012/04/17/nicira-latest-to-join-rackspace-openstack-buzz/">Continue reading <span class="meta-nav">&#8594;</span></a><p><table width="80%" border="0" align="center" cellpadding="3" cellspacing="3">
  <tr>
    <td bgcolor="#FFFF99"><center>
      <p><a href="http://siliconangle.com/blog/2012/04/17/nicira-latest-to-join-rackspace-openstack-buzz/">Nicira Latest to Join Rackspace-OpenStack Buzz</a> is a post from: <a href="http://siliconangle.com">SiliconANGLE</a>
<br />
        We're now available on the Kindle! <a href="http://www.amazon.com/gp/product/B004J17FSQ?ie=UTF8&tag=si00e-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B004J17FSQ">Subscribe today</a>. </p>
    </center></td>
  </tr>
</table>
</p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://siliconangle.com/blog/2012/02/07/niciras-fresh-take-on-network-as-a-service-not-quite-ready-to-rival-cisco/niciralogo/" rel="attachment wp-att-90501"><img class="alignright size-full wp-image-90501" title="niciralogo" src="http://siliconangle.com/files/2012/02/niciralogo.jpg" alt="" width="284" height="284" /></a>Yesterday cloud host <a href="rackspace.com">Rackspace</a> crossed a fairly major milestone, and the same can be said of the OpenStack initiative that kicked off just two years ago. The company said that the Rackspace Cloud service is <a href="http://servicesangle.com/blog/2012/04/16/rackspace-puts-openstack-where-its-mouth-is-with-new-services/">now powered by the open cloud OS</a>, a move that is already proving to be a very significant one for the ecosystem.</p>
<p><a href="http://nicira.com/">Nicira</a> is one of the companies involved in this push and can be partially credited with the creation of Cloud Networking, a new VLAN-as-a-service.  The offering is based on OpenStack Quantum, a so-called vSwitch component, and Nicira’s Network Virtualization Platform (NVP).  The latter connects to the platform via a plug-in.</p>
<blockquote><p>“Nicira not only makes truly flexible multi-tenant clouds possible, it makes the economics incredibly compelling,&#8221; said John Engates, chief technology officer at Rackspace.</p>
<p>&#8220;Combining our award-winning Fanatical Support(R) with OpenStack Quantum and Nicira, we can now deploy and configure a secure private network and fully-featured cloud in seconds, a promise that is very powerful for enterprises large and small.&#8221;</p></blockquote>
<p>OpenStack is in the center of the open-source cloud trend, and as the brainchild of Rackspace and NASA, this joint effort is what eventually what put this vision on the table. The difference between now and two years ago adds up to several generations of the software and a few hundred partners, including <a href="http://siliconangle.com/blog/2012/04/17/infochimps-an-early-supporter-of-openstacked-rackspace-cloud/">Infochimps</a>.</p>
<p>This particular tidbit is notable thanks to the fact Infochimps managed to release an announcement of its own right after Rackspace’s big update.  The big data firm said it has extended API-based support to the OpenStack-powered cloud services across a big chunk of its portfolio.  That includes the Infochimps Platform, the Dashpot virtualization layer that’s designed to run on top of it, and the Ironfan provisioning tool.</p>
<p><table width="80%" border="0" align="center" cellpadding="3" cellspacing="3">
  <tr>
    <td bgcolor="#FFFF99"><center>
      <p><a href="http://siliconangle.com/blog/2012/04/17/nicira-latest-to-join-rackspace-openstack-buzz/">Nicira Latest to Join Rackspace-OpenStack Buzz</a> is a post from: <a href="http://siliconangle.com">SiliconANGLE</a>
<br />
        We're now available on the Kindle! <a href="http://www.amazon.com/gp/product/B004J17FSQ?ie=UTF8&tag=si00e-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B004J17FSQ">Subscribe today</a>. </p>
    </center></td>
  </tr>
</table>
</p>
<h2  class="related_post_title">In the same vein:</h2><ul class="related_post"><li><a href="http://siliconangle.com/blog/2012/04/20/this-week-in-the-cloud-rackspace-big-data-and-titanium-2-0/" title="This Week in the Cloud: Rackspace, Big Data and Titanium 2.0">This Week in the Cloud: Rackspace, Big Data and Titanium 2.0</a></li><li><a href="http://siliconangle.com/blog/2012/04/17/infochimps-an-early-supporter-of-openstacked-rackspace-cloud/" title="Infochimps an Early Supporter of OpenStacked RackSpace Cloud">Infochimps an Early Supporter of OpenStacked RackSpace Cloud</a></li><li><a href="http://servicesangle.com/blog/2012/04/12/openstack-foundation-gets-funded-with-help-from-att-hp-ibm-and-more/" title="OpenStack Foundation Gets Funded With Help From AT&#038;T, HP, IBM and More">OpenStack Foundation Gets Funded With Help From AT&#038;T, HP, IBM and More</a></li><li><a href="http://servicesangle.com/blog/2012/04/03/citrix-gives-cloudstack-to-the-apache-software-foundation-and-turns-its-back-on-openstack/" title="Citrix Gives Cloudstack to the Apache Software Foundation and Turns its Back on OpenStack">Citrix Gives Cloudstack to the Apache Software Foundation and Turns its Back on OpenStack</a></li><li><a href="http://siliconangle.com/blog/2012/01/19/piston-cloud-launches-openstack-distro/" title="Piston Cloud Launches OpenStack Distro">Piston Cloud Launches OpenStack Distro</a></li><li><a href="http://siliconangle.com/servicesangle/rackspace-launches-openstack-private-cloud/" title="Rackspace Launches OpenStack Private Cloud">Rackspace Launches OpenStack Private Cloud</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://siliconangle.com/blog/2012/04/17/nicira-latest-to-join-rackspace-openstack-buzz/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Infochimps an Early Supporter of OpenStacked RackSpace Cloud</title>
		<link>http://siliconangle.com/blog/2012/04/17/infochimps-an-early-supporter-of-openstacked-rackspace-cloud/</link>
		<comments>http://siliconangle.com/blog/2012/04/17/infochimps-an-early-supporter-of-openstacked-rackspace-cloud/#comments</comments>
		<pubDate>Tue, 17 Apr 2012 13:40:43 +0000</pubDate>
		<dc:creator>Maria Deutscher</dc:creator>
				<category><![CDATA[Big Data]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[MemeConnect]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[hadoop ecosystem]]></category>
		<category><![CDATA[infochimps]]></category>
		<category><![CDATA[market place operator]]></category>
		<category><![CDATA[openstack]]></category>
		<category><![CDATA[rackspace]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://siliconangle.com/?p=100585</guid>
		<description><![CDATA[Big data marketplace operator (and app maker) Infochimps is now up-to-date with two of the most buzzed-about trends in IT. This week Rackspace announced that about two years after it fired up the OpenStack project with the support of NASA &#8230; <a href="http://siliconangle.com/blog/2012/04/17/infochimps-an-early-supporter-of-openstacked-rackspace-cloud/">Continue reading <span class="meta-nav">&#8594;</span></a><p><table width="80%" border="0" align="center" cellpadding="3" cellspacing="3">
  <tr>
    <td bgcolor="#FFFF99"><center>
      <p><a href="http://siliconangle.com/blog/2012/04/17/infochimps-an-early-supporter-of-openstacked-rackspace-cloud/">Infochimps an Early Supporter of OpenStacked RackSpace Cloud</a> is a post from: <a href="http://siliconangle.com">SiliconANGLE</a>
<br />
        We're now available on the Kindle! <a href="http://www.amazon.com/gp/product/B004J17FSQ?ie=UTF8&tag=si00e-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B004J17FSQ">Subscribe today</a>. </p>
    </center></td>
  </tr>
</table>
</p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://siliconangle.com/blog/2012/04/17/infochimps-an-early-supporter-of-openstacked-rackspace-cloud/platform-dashboard-graphic-2/" rel="attachment wp-att-100643"><img class="alignright size-medium wp-image-100643" title="platform-dashboard-graphic" src="http://siliconangle.com/files/2012/04/platform-dashboard-graphic1-300x178.png" alt="" width="300" height="178" /></a>Big data marketplace operator (and app maker) Infochimps is now up-to-date with two of the most buzzed-about trends in IT.</p>
<p>This week Rackspace announced that about two years after it fired up the OpenStack project with the support of NASA and a few others, their Rackspace Cloud – the company’s flagship service &#8211; is now powered by the young project. In that two-year period OpenStack has seen a total of five releases and hundreds of partners.</p>
<p>The cloud OS’s achievement list managed to grow even longer immediately after Rackspace’s announcement, when Infochimps revealed it now supports the former’s hosting service via the OpenStack API. This is another push on behalf of the Hadoop ecosystem into the cloud; the big data munching engine can now be deployed on yet another platform (see the video <a href="http://vimeo.com/40336084">here</a>).</p>
<blockquote><p>“Rackspace customers running the new OpenStack-based Rackspace Cloud Servers can quickly and easily spin up Hadoop clusters to power their big data applications in as little as 20 minutes with a single command using the Infochimps Platform. With the power of Ironfan, Infochimps’ open source provisioning tool, and Dashpot, Infochimps’ visualization and operations dashboard, customers can easily monitor and manage their Big Data operations on an ongoing basis, or leave it to Infochimps to manage it on the Rackspace Cloud for them.”</p></blockquote>
<p>Dashpot is a pretty new addition to Infochimps’ portfolio. It was <a href="../blog/2012/04/10/infochimps-rounds-out-platform-with-dashpot/">launched</a> just last week, dubbed as a tool that runs on top of Platform and supplements it with the addition of several elements. Among these are some pretty extensive (real-time) visualization features that make data available in a simplified format far and beyond just the IT department. In addition, Dashpot also rounds out usability and cloud management in the admin panel, making itself a welcomed addition there as well.</p>
<p><table width="80%" border="0" align="center" cellpadding="3" cellspacing="3">
  <tr>
    <td bgcolor="#FFFF99"><center>
      <p><a href="http://siliconangle.com/blog/2012/04/17/infochimps-an-early-supporter-of-openstacked-rackspace-cloud/">Infochimps an Early Supporter of OpenStacked RackSpace Cloud</a> is a post from: <a href="http://siliconangle.com">SiliconANGLE</a>
<br />
        We're now available on the Kindle! <a href="http://www.amazon.com/gp/product/B004J17FSQ?ie=UTF8&tag=si00e-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B004J17FSQ">Subscribe today</a>. </p>
    </center></td>
  </tr>
</table>
</p>
<h2  class="related_post_title">In the same vein:</h2><ul class="related_post"><li><a href="http://siliconangle.com/blog/2012/04/20/this-week-in-the-cloud-rackspace-big-data-and-titanium-2-0/" title="This Week in the Cloud: Rackspace, Big Data and Titanium 2.0">This Week in the Cloud: Rackspace, Big Data and Titanium 2.0</a></li><li><a href="http://siliconangle.com/blog/2012/04/17/nicira-latest-to-join-rackspace-openstack-buzz/" title="Nicira Latest to Join Rackspace-OpenStack Buzz">Nicira Latest to Join Rackspace-OpenStack Buzz</a></li><li><a href="http://servicesangle.com/blog/2012/04/12/openstack-foundation-gets-funded-with-help-from-att-hp-ibm-and-more/" title="OpenStack Foundation Gets Funded With Help From AT&#038;T, HP, IBM and More">OpenStack Foundation Gets Funded With Help From AT&#038;T, HP, IBM and More</a></li><li><a href="http://servicesangle.com/blog/2012/04/03/citrix-gives-cloudstack-to-the-apache-software-foundation-and-turns-its-back-on-openstack/" title="Citrix Gives Cloudstack to the Apache Software Foundation and Turns its Back on OpenStack">Citrix Gives Cloudstack to the Apache Software Foundation and Turns its Back on OpenStack</a></li><li><a href="http://siliconangle.com/blog/2012/01/19/piston-cloud-launches-openstack-distro/" title="Piston Cloud Launches OpenStack Distro">Piston Cloud Launches OpenStack Distro</a></li><li><a href="http://siliconangle.com/servicesangle/rackspace-launches-openstack-private-cloud/" title="Rackspace Launches OpenStack Private Cloud">Rackspace Launches OpenStack Private Cloud</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://siliconangle.com/blog/2012/04/17/infochimps-an-early-supporter-of-openstacked-rackspace-cloud/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>OpenStack Foundation Gets Funded With Help From AT&amp;T, HP, IBM and More</title>
		<link>http://servicesangle.com/blog/2012/04/12/openstack-foundation-gets-funded-with-help-from-att-hp-ibm-and-more/</link>
		<comments>http://servicesangle.com/blog/2012/04/12/openstack-foundation-gets-funded-with-help-from-att-hp-ibm-and-more/#comments</comments>
		<pubDate>Thu, 12 Apr 2012 21:01:50 +0000</pubDate>
		<dc:creator>Matt Weinberger</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[ServicesANGLE]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[cloud infrastructure]]></category>
		<category><![CDATA[cloud standards]]></category>
		<category><![CDATA[openstack]]></category>
		<category><![CDATA[OpenStack Foundation]]></category>
		<category><![CDATA[rackspace]]></category>

		<guid isPermaLink="false">http://siliconangle.com/?p=100101</guid>
		<description><![CDATA[In a move to build buzz ahead of next week&#8217;s OpenStack Conference here in San Francisco, eighteen major technology companies have announced their intent to become paying members of the OpenStack Foundation, the open source cloud platform&#8217;s governing body. AT&#38;T, Canonical, &#8230; <a href="http://servicesangle.com/blog/2012/04/12/openstack-foundation-gets-funded-with-help-from-att-hp-ibm-and-more/">Continue reading <span class="meta-nav">&#8594;</span></a><p><table width="80%" border="0" align="center" cellpadding="3" cellspacing="3">
  <tr>
    <td bgcolor="#FFFF99"><center>
      <p><a href="http://servicesangle.com/blog/2012/04/12/openstack-foundation-gets-funded-with-help-from-att-hp-ibm-and-more/">OpenStack Foundation Gets Funded With Help From AT&#038;T, HP, IBM and More</a> is a post from: <a href="http://siliconangle.com">SiliconANGLE</a>
<br />
        We're now available on the Kindle! <a href="http://www.amazon.com/gp/product/B004J17FSQ?ie=UTF8&tag=si00e-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B004J17FSQ">Subscribe today</a>. </p>
    </center></td>
  </tr>
</table>
</p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://siliconangle.com/blog/2010/08/30/openstack-launches-ipad-app-based-on-rackspace-cloud-pro/openstacklogo-290x300/" rel="attachment wp-att-21428"><img class="alignright size-full wp-image-21428" title="OpenStackLogo-290x300" src="http://siliconangle.com/files/2010/08/OpenStackLogo-290x300.jpg" alt="" width="290" height="300" /></a>In a move to build buzz ahead of next week&#8217;s OpenStack Conference here in San Francisco, eighteen major technology companies have announced their intent to become paying members of the OpenStack Foundation, the open source cloud platform&#8217;s governing body. AT&amp;T, Canonical, HP, IBM, Nebula, Rackspace, Red Hat, and SUSE will become Platinum members once the foundation launches, while Cisco, ClearPath, Cloudscaling, Dell, DreamHost, ITRI, Mirantis, Morphlabs, NetApp, and Piston Cloud Computing will be Gold.</p>
<p>Previously, project co-founder Rackspace Hosting was picking up OpenStack&#8217;s tab, which the <a href="http://wiki.openstack.org/Governance/Foundation/Funding?highlight=%28funding%29">official wiki</a> places at around between $4 and 5 million dollars annually. But the OpenStack Foundation is seeking to raise around that same amount from these new members ($500,000/year from Platinum members, .025% of annual revenues with a minimum of $20,000 and a maximum of $500,000 from Gold members), taking governance further out of Rackspace&#8217;s hands and putting it back with the community.</p>
<p>All eighteen of these members have a proven commitment to the OpenStack platform, with each a code contributor to last week&#8217;s <a href="http://servicesangle.com/blog/2012/04/05/openstack-answers-citrix-defection-with-its-strongest-release/">major &#8220;Essex&#8221; release</a>. Needless to say, they all plan on continuing to add their expertise to OpenStack in the future.</p>
<p>The OpenStack Foundation is still a more-or-less hypothetical body: These first confirmed members will take point on the legal issues around creating specific bylaws based around the existing general framework, with draft charters up for community review as the process goes on.</p>
<p>The goal is to have a charter ratified by both the Rackspace Board and the OpenStack Community before the end of the third quarter of 2012. Oh, and an important side-note: You don&#8217;t have to be a multi-million dollar corporation to vote, and OpenStack Foundation membership is free for individuals.</p>
<p>In what <a href="http://www.zdnet.com/blog/open-source/openstack-vs-cloudstack-the-beginning-of-the-open-source-cloud-wars/10763">some pundits</a> are already starting to call a <a href="http://siliconangle.com/blog/2012/04/05/fail-or-pivot-citrix-doing-the-open-source-two-step-dance-aligns-with-apache/">&#8220;war&#8221; between OpenStack and the recently open-sourced Apache CloudStack project</a> (I remain to be convinced of any meaningful competition between the two), this kind of financial support is a major edge. And it goes a long way towards freeing the project from what some industry-watchers see as Rackspace&#8217;s iron grip.</p>
<p>But I&#8217;m hopeful that the funding and the support can accelerate OpenStack&#8217;s maturity cycle quickly enough that we start to see some real enterprise adoption (HP Converged Cloud notwithstanding) sooner rather than later, or else the growing popularity of proprietary clouds like Amazon EC2 could end this party before it&#8217;s begun.</p>
<p><table width="80%" border="0" align="center" cellpadding="3" cellspacing="3">
  <tr>
    <td bgcolor="#FFFF99"><center>
      <p><a href="http://servicesangle.com/blog/2012/04/12/openstack-foundation-gets-funded-with-help-from-att-hp-ibm-and-more/">OpenStack Foundation Gets Funded With Help From AT&#038;T, HP, IBM and More</a> is a post from: <a href="http://siliconangle.com">SiliconANGLE</a>
<br />
        We're now available on the Kindle! <a href="http://www.amazon.com/gp/product/B004J17FSQ?ie=UTF8&tag=si00e-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B004J17FSQ">Subscribe today</a>. </p>
    </center></td>
  </tr>
</table>
</p>
<h2  class="related_post_title">In the same vein:</h2><ul class="related_post"><li><a href="http://siliconangle.com/blog/2012/01/19/piston-cloud-launches-openstack-distro/" title="Piston Cloud Launches OpenStack Distro">Piston Cloud Launches OpenStack Distro</a></li><li><a href="http://siliconangle.com/blog/2011/04/27/openstack-a-smart-business-move-for-rackspace-speeds-into-year-2/" title="OpenStack a Smart Business Move for RackSpace, Speeds Into Year 2">OpenStack a Smart Business Move for RackSpace, Speeds Into Year 2</a></li><li><a href="http://siliconangle.com/blog/2011/02/21/2011-cloud-trend-going-mainstream-as-businesses-seek-cheap-scalability/" title="2011 Cloud Trend: Going Mainstream As Businesses Seek Cheap Scalability">2011 Cloud Trend: Going Mainstream As Businesses Seek Cheap Scalability</a></li><li><a href="http://siliconangle.com/blog/2011/02/03/openstack-launches-bexar-code-release/" title="OpenStack Steady on Update Releases, Bexar Widens the Cloud">OpenStack Steady on Update Releases, Bexar Widens the Cloud</a></li><li><a href="http://siliconangle.com/blog/2010/08/30/openstack-launches-ipad-app-based-on-rackspace-cloud-pro/" title="OpenStack Launches iPad App, Based on Rackspace Cloud Pro">OpenStack Launches iPad App, Based on Rackspace Cloud Pro</a></li><li><a href="http://siliconangle.com/blog/2010/08/11/rackspace-report-email-sender/" title="Rackspace Knows What Kind of Email Sender You Are: Funny Report">Rackspace Knows What Kind of Email Sender You Are: Funny Report</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://servicesangle.com/blog/2012/04/12/openstack-foundation-gets-funded-with-help-from-att-hp-ibm-and-more/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 Reasons Why a VMware/Rackspace Acquisition Would be Bad for Customers</title>
		<link>http://servicesangle.com/blog/2012/04/05/3-reasons-why-a-vmwarerackspace-acquisition-would-be-bad-for-customers/</link>
		<comments>http://servicesangle.com/blog/2012/04/05/3-reasons-why-a-vmwarerackspace-acquisition-would-be-bad-for-customers/#comments</comments>
		<pubDate>Thu, 05 Apr 2012 20:14:48 +0000</pubDate>
		<dc:creator>Klint Finley</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[ServicesANGLE]]></category>
		<category><![CDATA[consolidation]]></category>
		<category><![CDATA[rackspace]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://siliconangle.com/?p=99152</guid>
		<description><![CDATA[Rumors have surfaced again that someone is trying to buy Rackspace. This time, according to The VAR Guy, rumors have been floating around that VMware is considering purchasing Rackspace to neutralize the perceived threat that the OpenStack project poses to &#8230; <a href="http://servicesangle.com/blog/2012/04/05/3-reasons-why-a-vmwarerackspace-acquisition-would-be-bad-for-customers/">Continue reading <span class="meta-nav">&#8594;</span></a><p><table width="80%" border="0" align="center" cellpadding="3" cellspacing="3">
  <tr>
    <td bgcolor="#FFFF99"><center>
      <p><a href="http://servicesangle.com/blog/2012/04/05/3-reasons-why-a-vmwarerackspace-acquisition-would-be-bad-for-customers/">3 Reasons Why a VMware/Rackspace Acquisition Would be Bad for Customers</a> is a post from: <a href="http://siliconangle.com">SiliconANGLE</a>
<br />
        We're now available on the Kindle! <a href="http://www.amazon.com/gp/product/B004J17FSQ?ie=UTF8&tag=si00e-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B004J17FSQ">Subscribe today</a>. </p>
    </center></td>
  </tr>
</table>
</p>
]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-37787" title="rackspace" src="http://siliconangle.com/files/2011/01/rackspace-300x300.gif" alt="" width="300" height="300" /> Rumors have surfaced again that someone is trying to buy Rackspace. This time, according to <a href="http://www.thevarguy.com/2012/03/20/vmware-worried-about-rackspace-openstack-cloud-gains/">The VAR Guy</a>, rumors have been floating around that VMware is considering purchasing Rackspace to neutralize the perceived threat that the OpenStack project poses to VMware&#8217;s vSphere and vCloud. It&#8217;s not the first time acquisition rumors have floated, Dell is often cited as a suitor, but as The VAR Guy notes, Rackspace has always said it&#8217;s not for sale.</p>
<p>The VAR Guy doesn&#8217;t think a VMware acquisition of VMware is likely. First of all, Rackspace doesn&#8217;t control OpenStack &#8211; there are over 100 different companies now behind the project. And possibly more importantly, VMware would end up competing with many of its existing cloud service partners. Combined with Rackspace&#8217;s general resistance to acquisitions, I have to agree it&#8217;s unlikely. But I can&#8217;t dismiss the possibility out of hand because:</p>
<p>1) VMware has been investing in its own public cloud offering with the <a>Cloud Foundry platform-as-a-service</a>. Meanwhile, Amazon Web Serivces has been <a>expanding its own PaaS-like offering Elastic Beanstalk</a>. AWS is building out its PaaS capabilities, but VMware has no public infrastructure-as-a-service offering.</p>
<p>2) Although there is now a huge number of companies supporting OpenStack, Rackspace has always been the most important company behind the project. Now that Citrix <a>seems to be turning its back on the project</a>, the project is vulnerable despite large companies like HP and AT&amp;T paying lip service to OpenStack. As <a href="http://siliconangle.com/blog/2011/08/29/will-vmware%E2%80%99s-new-cloud-plans-cripple-openstack/">John Furrier has pointed out</a>, signing on to support OpenStack doesn&#8217;t necessarily mean that much.</p>
<p>3) Let&#8217;s face it: it wouldn&#8217;t be the first time a vendor has gone into competition with its service partners.</p>
<p>4) Despite its leadership&#8217;s opposition to a takeover, Rackspace&#8217;s status as a public company means anything is possible.</p>
<p>I doubt this acquisition will happen, and I hope it doesn&#8217;t. It would be bad for customers in a number of ways.</p>
<h2>First Things First</h2>
<p>Why does Rackspace matter to the CIO? Today many CIOs are considering moving to the public cloud to curb their CAPEX costs, but the real advantage may be in the ability to more easily deliver applications to mobile workers. Either way, there remain risks involved: such as security, <a href="http://servicesangle.com/blog/2012/04/03/are-you-available-cloud-uptime-a-year-after-the-great-amazon-web-services-outage/">availability</a> and compliance.</p>
<p>Rackspace is a leading provider of public cloud services, and VMware is a major provider of the underlying software that goes into making cloud architectures. Major changes for either vendor could have a big affect on the marketplace that trickles down to customers thinking about making the jump to the cloud.</p>
<h2>AWS/Vmware Duopoly</h2>
<p>There are plenty of PaaS and IaaS vendors out there besides AWS, Rackspace and Cloud Foundry. But AWS currently <a href="http://huanliu.wordpress.com/2012/03/13/amazon-data-center-size/">seems to take the lion&#8217;s share of IaaS business</a>, and hosts a huge number of third party PaaS services. Rackspace seems to hold its own IaaS market, and could be considered AWS&#8217; closest competitor. Meanwhile, <a href="http://servicesangle.com/blog/2012/03/21/gartner-server-virtualization-trends-competitors-threaten-vmwares-reign/">VMware takes the lion&#8217;s share of the hypervisor market</a> and is a player in the emerging PaaS market. A VMware/Rackspace combination would be a formidable force in the market, and would make it harder for Joyent et al. to compete. That could lead to even more consolidation and less competition. That means higher prices and less favorable SLAs for CIOs.</p>
<h2>Less Competition for the Open Cloud</h2>
<p>Make no mistake: Rackspace pulling out of OpenStack would be very bad for the project. It might not be enough to kill OpenStack altogether, but it would definitely hobble it. And if Rackspace left the project, would Dell and Canonical stick around or move to Plan B? Plan B for Dell would very likely be VMware, and Eucalyptus for Canonical.</p>
<p>Since <a href="http://servicesangle.com/blog/2012/03/22/amazon-web-services-eucalyptus-partner-for-private-cloud-portability/">Eucalyptus is now partnered with Amazon Web Services</a> it could prematurely become the de facto standard for open cloud infrastructures if OpenStack is out of the picture. There&#8217;s still hope in <a href="http://www.joyent.com/products/smartdatacenter/">Joyent&#8217;s SmartDataCenter</a> and <a href="http://servicesangle.com/blog/2012/04/03/citrix-gives-cloudstack-to-the-apache-software-foundation-and-turns-its-back-on-openstack/">Citrix&#8217;s CloudStack</a>, and with the market so young it would be a shame for one project to gain a monopoly before the its competitors have a chance to gain traction.</p>
<p>In essence, if vendors standardize on a less favorable solution, CIOs are stuck paying for it and supporting it, or building something else in house.</p>
<h2>Migration Pains</h2>
<p>Rackspace&#8217;s Linux servers run on Xen. If VMware acquired Rackspace it would likely want to migrate servers to VMware, which could not only cause service disruptions but also raise costs for Rackspace customers.</p>
<p>Customers weren&#8217;t happy when <a href="http://www.readwriteweb.com/cloud/2011/05/rackspace-shutting-down-sliceh.php">Rackspace merged Slicehost into Rackspace Cloud</a>. I can only imagine how customers will react to being forced out of Rackspace into some new VMware IaaS.</p>
<p><table width="80%" border="0" align="center" cellpadding="3" cellspacing="3">
  <tr>
    <td bgcolor="#FFFF99"><center>
      <p><a href="http://servicesangle.com/blog/2012/04/05/3-reasons-why-a-vmwarerackspace-acquisition-would-be-bad-for-customers/">3 Reasons Why a VMware/Rackspace Acquisition Would be Bad for Customers</a> is a post from: <a href="http://siliconangle.com">SiliconANGLE</a>
<br />
        We're now available on the Kindle! <a href="http://www.amazon.com/gp/product/B004J17FSQ?ie=UTF8&tag=si00e-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B004J17FSQ">Subscribe today</a>. </p>
    </center></td>
  </tr>
</table>
</p>
<h2  class="related_post_title">In the same vein:</h2><ul class="related_post"><li><a href="http://siliconangle.com/servicesangle/blog/2012/03/21/gartner-server-virtualization-trends-competitors-threaten-vmwares-reign/" title="Gartner Server Virtualization Trends: Competitors Threaten VMware&#8217;s Reign">Gartner Server Virtualization Trends: Competitors Threaten VMware&#8217;s Reign</a></li><li><a href="http://siliconangle.com/blog/2012/05/24/vmware-extends-desktop-virtualization-portfolio-with-wanova/" title="VMware Extends Desktop Virtualization Portfolio with Wanova">VMware Extends Desktop Virtualization Portfolio with Wanova</a></li><li><a href="http://siliconangle.com/blog/2012/05/24/louisville-gas-electric-chooses-vblock-infrastructure-vmware-for-vdi-system/" title="Louisville Gas &amp; Electric Chooses Vblock Infrastructure, VMware for VDI System">Louisville Gas &amp; Electric Chooses Vblock Infrastructure, VMware for VDI System</a></li><li><a href="http://servicesangle.com/blog/2012/05/21/emc-acquires-syncplicity-a-move-to-blur-the-private-and-public-cloud/" title="EMC Acquires Syncplicity &#8211; A Move to Blur the Private and Public Cloud">EMC Acquires Syncplicity &#8211; A Move to Blur the Private and Public Cloud</a></li><li><a href="http://siliconangle.com/blog/2012/05/16/vmware-unveils-vfabric-suite-5-1-with-new-add-ons/" title="VMware Unveils vFabric Suite 5.1 With New Add Ons">VMware Unveils vFabric Suite 5.1 With New Add Ons</a></li><li><a href="http://siliconangle.com/blog/2012/05/09/view-5-1-gets-a-boost-with-ilio-vmware-to-improve-cloud-suite/" title="View 5.1 Gets a Boost with ILIO, VMware to Improve Cloud Suite">View 5.1 Gets a Boost with ILIO, VMware to Improve Cloud Suite</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://servicesangle.com/blog/2012/04/05/3-reasons-why-a-vmwarerackspace-acquisition-would-be-bad-for-customers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The New School of Storage: Scality Rides the Unstructured Data Wave</title>
		<link>http://siliconangle.com/blog/2012/04/05/the-new-school-of-storage-scality-rides-the-unstructured-data-wave/</link>
		<comments>http://siliconangle.com/blog/2012/04/05/the-new-school-of-storage-scality-rides-the-unstructured-data-wave/#comments</comments>
		<pubDate>Thu, 05 Apr 2012 18:44:09 +0000</pubDate>
		<dc:creator>Alex Williams</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[StorageANGLE]]></category>
		<category><![CDATA[dell]]></category>
		<category><![CDATA[emc atmos]]></category>
		<category><![CDATA[new school of storage]]></category>
		<category><![CDATA[Nirvanix]]></category>
		<category><![CDATA[organic ring storage]]></category>
		<category><![CDATA[rackspace]]></category>
		<category><![CDATA[Scality]]></category>

		<guid isPermaLink="false">http://siliconangle.com/?p=92655</guid>
		<description><![CDATA[The new school of storage is like any new artistic genre or intellectual movement. It grows out of organic disruption. It&#8217;s the offshoot of chaos, having its own impact on our culture and way of life. For our purposes, data &#8230; <a href="http://siliconangle.com/blog/2012/04/05/the-new-school-of-storage-scality-rides-the-unstructured-data-wave/">Continue reading <span class="meta-nav">&#8594;</span></a><p><table width="80%" border="0" align="center" cellpadding="3" cellspacing="3">
  <tr>
    <td bgcolor="#FFFF99"><center>
      <p><a href="http://siliconangle.com/blog/2012/04/05/the-new-school-of-storage-scality-rides-the-unstructured-data-wave/">The New School of Storage: Scality Rides the Unstructured Data Wave</a> is a post from: <a href="http://siliconangle.com">SiliconANGLE</a>
<br />
        We're now available on the Kindle! <a href="http://www.amazon.com/gp/product/B004J17FSQ?ie=UTF8&tag=si00e-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B004J17FSQ">Subscribe today</a>. </p>
    </center></td>
  </tr>
</table>
</p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://siliconangle.com/blog/2011/05/30/carbonite-and-dropbox-security-business-models-and-back-up-economics/cloud-storage-puzzle/" rel="attachment wp-att-51955"><img class="alignright size-medium wp-image-51955" title="cloud-storage-puzzle" src="http://siliconangle.com/files/2011/05/cloud-storage-puzzle-290x300.jpg" alt="" width="290" height="300" /></a>The new school of storage is like any new artistic genre or intellectual movement. It grows out of organic disruption. It&#8217;s the offshoot of chaos, having its own impact on our culture and way of life. For our purposes, data is the disruptor. The chaos is in the technology stack and the innovators are the upstarts of the new school of storage.</p>
<p>Disruption tends to surface the ugly side of who we are. The older, more established players will often hide their illnesses and appeal to the power barons.  The young turn to the community. The trick is to build a community who know the old way may work but would prefer to adopt something new that is relevant to today&#8217;s workloads. Get enough momentum and the strategy can prove disruptive in itself.  Succeed and you will most likely get acquired. If lucky, your technology will become a standard for the market.</p>
<h2>The Scality Approach</h2>
<p><a href="http://scality.com">Scality</a> is a two-year-old startup that represents this new school of storage.  They appeal to the early adopters, the ones who want to learn about the new stuff and are willing to buy it, too.</p>
<p>The trick for Scality? Patience and persistence. It will take years to mature before the most advanced storage systems see wide scale adoption.</p>
<p>Scality has to take this approach. Just look at its latest news. It&#8217;s exciting and new. And that&#8217;s the problem. Most IT buyers don&#8217;t want to to buy the exciting and new storage technology.</p>
<p>Scality&#8217;s technology cuts to the heart of the issue that companies face with unstructured data.  As Scality points out in its news, unstructured data now represents the bulk of storage required by service providers and large enterprises. At the current pace, unstructured data will soon reach 80% of all storage requirements.</p>
<p>Scality&#8217;s organic ring storage creates a &#8220;distributed, dynamic table that scales by placing the data in containers that are not constrained by the limitations of file-based storage systems.&#8221; The system, according to the company, scales and adapts to different storage requirements. Scality executives see this as similar to the way organic systems adapt and replenish themselves. It&#8217;s designed to fail, a hallmark of Web scale systems. With Scality, the applications continue to function when servers fail. The load is distributed elsewhere to different parts of the ring storage network.</p>
<p>With RING Organic Storage 4.0, Scality is furthering its claim that distributed storage will replace network attached storage (NAS) as the need for scale continues to grow.</p>
<p><a href="http://siliconangle.com/blog/2012/04/05/the-new-school-of-storage-scality-rides-the-unstructured-data-wave/jeromel1/" rel="attachment wp-att-99183"><img class="alignright size-full wp-image-99183" title="jeromeL1" src="http://siliconangle.com/files/2012/04/jeromeL1.jpg" alt="" width="100" height="150" /></a>Scality CEO Jérôme Lecat says it can handle hot data, deliver a cost of ownership comparable with Web infrastructures and a management system far simpler than NAS.</p>
<p>Enterprise Strategy Group had this to say :</p>
<blockquote><p>Until now, object storage could deliver the scalability, but not the performance. Standard response times for object-based storage are in the hundreds of milliseconds to full seconds, much too slow for today’s cloud-based services. In comparison, ESG testing demonstrated that Scality object storage on Intel Xeon servers  equipped with Intel Enterprise SSDs and low-latency 10GbE network environment delivers 4-10 millisecond performance—10 times faster than other scale-out systems. The Scality solution delivers scalable object storage in which performance is never a barrier. Users can solve any performance problem with this architecture just by selecting the right number and types of server nodes and disk.</p></blockquote>
<p>The demands that data places on an infrastructure means companies of all varieties are re-examining their storage needs and looking at new technologies like those from Scality.</p>
<p><a href="http://siliconangle.com/blog/2012/02/15/everything-you-need-to-know-about-hp-gen8-including-it-job-landscape-video/screen-shot-2012-02-15-at-4-35-04-pm/" rel="attachment wp-att-91825"><img class="size-thumbnail wp-image-91825 alignleft" title="David Floyer HP Gen8 theCube Las Vegas 2012" src="http://siliconangle.com/files/2012/02/Screen-shot-2012-02-15-at-4.35.04-PM-150x150.png" alt="" width="150" height="150" /></a><a href="http://wikibon.org">Wikibon</a> Co-Founder David Floyer made the point in an interview yesterday that persistent storage will be the most pressing issue over the next four to five years for IT buyers.  The enti</p>
<p>re stack is changing. Apple, Microsoft and other massive device makers are forcing shifts. x86 processors or ARM &#8211; which will be most important? Apps are at the center of the battle with their proliferation and huge appetite for data.</p>
<p>All of this change means a huge opportunity for companies like Scality and the rest, including <a href="http://caringo.com">Caringo</a>, <a href="http://www.cleversafe.com/">Clever Safe</a> and fresh entrants such as <a href="http://basho.com">Basho</a>, which recently introduced <a href="http://siliconangle.com/blog/2012/03/27/nosql-company-basho-unveils-new-cloud-storage-software/"> Riak CS,</a> a new software platform for building multitenant cloud storage systems. The big guns like <a href="http://www.emc.com/storage/atmos/atmos.htm">EMC Atmos</a> <a href="http://www.nirvanix.com/">Nirvanix</a>, <a href="http://www.dell.com/us/enterprise/p/powervault-dx6000/pd">Dell</a>, <a href="http://aws.amazon.com/s3/">Amazon Web Services S3</a> and <a href="http://www.rackspace.com/cloud/cloud_hosting_products/files/">Rackspace Cloud Files</a>  also play in this market as does Gluster, the open-source startup acquired last year by Red Hat, now known as<a href="http://www.redhat.com/products/storage/"> Red Hat Storage</a>.</p>
<p>These companies all have an opportunity, considering the massive influx of big data and the impact it has on how companies keep their data, share it, integrate into apps to do analysis or otherwise.</p>
<p>&#8220;The change in the stack is profound,&#8221; Floyer said.</p>
<p>Scality is designed for consumer services. Time Warner Cable is building out on Scality to manage its email infrastructure. Email storage is not rocket science. Most of it is archiving. But it is also one of the most demanding of applications due to its unstructured nature. An email can be very small, a few kilobytes in size or very big as in a 20 megabyte attachment. People expect real-time results that can&#8217;t be had with a SAN as effectively as they can get with distributed storage that horizontally scales. TWC has more than one petabyte of data. It is growing 40% a year. For TWC, it just became economically impractical to store email on high-end SAN machines.</p>
<p>Lecat says the company wins these kinds of deals by connecting with communities that understands the innovations that come with distributed storage. And these are early days in the market.  In Lecat&#8217;s view, the shift will take ten years. It is just the beginning of that shift so it makes no sense to waste time with people conditioned over the past 20 years to believe that storage products from EMC or NetApp are the only answer.</p>
<p>But many enterprise and storage architects will go with the technology they know so well. It may not make sense to invest in legacy storage technology. But often these customers have long established relationships with well-known providers. And these providers have massive marketing budgets to convince their customers that they need to invest in the cloud and other buzz words.</p>
<p>&#8220;Our technology is very different than what EMC or or VCE does.&#8221; Lecat said. &#8220;What we do from a market standpoint &#8211; we find these people that realize that EMC is not giving them the entire picture.&#8221;&#8216;</p>
<p>An EMC spokesperson declined to comment for this story.</p>
<h2>Still Not Cool Enough?</h2>
<p>But is Scality next generation enough? <a href="http://dreamhost.com/">Dreamhost</a> is spinning out its storage technology into a separate company. The storage technology is based on <a href="http://ceph.newdream.net/">Ceph,</a> a new distributed file system developed by Dreamhost Founder Sage Weil. Ceph is getting considerable attention and is being discussed as an alternative replacement for OpenStack Swift storage.</p>
<p><a href="http://dreamhost.com/dreamhost-looks-to-crush-cloud-storage-rivals-with-ceph/">The 451 Group published a short report about Ceph late last month.</a> It cited Ceph&#8217;s scale-out architecture and its ability to provide file, block and object storage. It is expected to attract interest from service providers and enterprise providers looking to build out cloud storage services. The Ceph software has attracted a fairly large following for its flexibility and scalability.</p>
<p>Companies like<a href="http://www.parallels.com/"> Parallels Software</a> are looking at Ceph as an alternative to Scality, which is perceived by some as a first generation technology in the vein of Amazon S3.</p>
<p>&#8220;Scality is a first generation of public storage,&#8221; said James Bottomley, CTO of Server Virtualization for Parallels. &#8220;It realistically looks like s3 storage. The main problem we see is it does not support sufficient updating of the objects of the image in a virtualized environment.&#8221;</p>
<p>But when pressed, Bottomley said this is something that no one company can claim has a clear advantage. Scality may lack that capability but so does most of the competition.</p>
<p>As 451 points out, the growing success of Amazon&#8217;s S3 and EBS cloud storage services is putting pressure on service providers and enterprises to build out their own offerings.</p>
<p>But the greater challenge? Having the patience and persistence to drive its presence in the market by connecting with early adopters.</p>
<h2>Challenges for the The New School</h2>
<p>The members of the new school of storage face a challenge. And that&#8217;s convincing the market that data in itself has a value of one.</p>
<p>Shared data? As Floyer points out, the value of data scales the more you share. Your data sets go far further when aggregated with data sets from other organizations. It&#8217;s far richer in scope.</p>
<p>&#8220;You need apps that can manage vast amounts of data,&#8221; Floyer said. &#8220;Object storage becomes central to that.&#8221;</p>
<p><table width="80%" border="0" align="center" cellpadding="3" cellspacing="3">
  <tr>
    <td bgcolor="#FFFF99"><center>
      <p><a href="http://siliconangle.com/blog/2012/04/05/the-new-school-of-storage-scality-rides-the-unstructured-data-wave/">The New School of Storage: Scality Rides the Unstructured Data Wave</a> is a post from: <a href="http://siliconangle.com">SiliconANGLE</a>
<br />
        We're now available on the Kindle! <a href="http://www.amazon.com/gp/product/B004J17FSQ?ie=UTF8&tag=si00e-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B004J17FSQ">Subscribe today</a>. </p>
    </center></td>
  </tr>
</table>
</p>
<h2  class="related_post_title">In the same vein:</h2><ul class="related_post"><li><a href="http://siliconangle.com/blog/2011/03/08/cloud-connect-conference-begins-with-openstack-initiative/" title="Cloud Connect Conference Begins With OpenStack Initiative">Cloud Connect Conference Begins With OpenStack Initiative</a></li><li><a href="http://siliconangle.com/blog/2011/02/16/search-big-data-and-beyond/" title="Search, Big Data and Beyond">Search, Big Data and Beyond</a></li><li><a href="http://siliconangle.com/blog/2011/01/13/from-scale-out-to-big-data-to-the-cloud/" title="From Scale-Out to Big Data to the Cloud">From Scale-Out to Big Data to the Cloud</a></li><li><a href="http://siliconangle.com/blog/2010/11/02/is-rackspace-dells-cloud-acquisition/" title="Is Rackspace Dell&#8217;s Cloud Acquisition?">Is Rackspace Dell&#8217;s Cloud Acquisition?</a></li><li><a href="http://siliconangle.com/blog/2009/09/16/we-dont-need-cloud-standards-yet/" title="We Don&#8217;t Need Cloud Standards (Yet)">We Don&#8217;t Need Cloud Standards (Yet)</a></li><li><a href="http://devopsangle.com/2012/05/09/rackspace-open-sources-a-node-js-library-for-creating-and-parsing-xml-documents/" title="Rackspace Open-Sources A Node.js Library for Creating and Parsing XML Documents">Rackspace Open-Sources A Node.js Library for Creating and Parsing XML Documents</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://siliconangle.com/blog/2012/04/05/the-new-school-of-storage-scality-rides-the-unstructured-data-wave/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Citrix Gives Cloudstack to the Apache Software Foundation and Turns its Back on OpenStack</title>
		<link>http://servicesangle.com/blog/2012/04/03/citrix-gives-cloudstack-to-the-apache-software-foundation-and-turns-its-back-on-openstack/</link>
		<comments>http://servicesangle.com/blog/2012/04/03/citrix-gives-cloudstack-to-the-apache-software-foundation-and-turns-its-back-on-openstack/#comments</comments>
		<pubDate>Tue, 03 Apr 2012 12:00:35 +0000</pubDate>
		<dc:creator>Alex Williams</dc:creator>
				<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[ServicesANGLE]]></category>
		<category><![CDATA[Amazon web services]]></category>
		<category><![CDATA[citrix]]></category>
		<category><![CDATA[CloudStack]]></category>
		<category><![CDATA[openstack]]></category>
		<category><![CDATA[rackspace]]></category>

		<guid isPermaLink="false">http://siliconangle.com/?p=98673</guid>
		<description><![CDATA[Citrix is turning Cloudstack over to the Apache Software Foundation and aligning closely with Amazon Web Services in a move that will force the very green OpenStack movement to take another look at its governance model. The move by Citrix &#8230; <a href="http://servicesangle.com/blog/2012/04/03/citrix-gives-cloudstack-to-the-apache-software-foundation-and-turns-its-back-on-openstack/">Continue reading <span class="meta-nav">&#8594;</span></a><p><table width="80%" border="0" align="center" cellpadding="3" cellspacing="3">
  <tr>
    <td bgcolor="#FFFF99"><center>
      <p><a href="http://servicesangle.com/blog/2012/04/03/citrix-gives-cloudstack-to-the-apache-software-foundation-and-turns-its-back-on-openstack/">Citrix Gives Cloudstack to the Apache Software Foundation and Turns its Back on OpenStack</a> is a post from: <a href="http://siliconangle.com">SiliconANGLE</a>
<br />
        We're now available on the Kindle! <a href="http://www.amazon.com/gp/product/B004J17FSQ?ie=UTF8&tag=si00e-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B004J17FSQ">Subscribe today</a>. </p>
    </center></td>
  </tr>
</table>
</p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://servicesangle.com/blog/2012/04/03/citrix-gives-cloudstack-to-the-apache-software-foundation-and-turns-its-back-on-openstack/cloudstackicon/" rel="attachment wp-att-98692"><img class="alignright size-full wp-image-98692" title="cloudstackicon" src="http://siliconangle.com/files/2012/04/cloudstackicon.png" alt="" width="205" height="200" /></a><a href="http://citrix.com">Citrix</a> is turning <a href="http://www.citrix.com/English/ps2/products/product.asp?contentID=2314749">Cloudstack</a> over to the Apache Software Foundation and aligning closely with Amazon Web Services in a move that will force the very green OpenStack movement to take another look at its governance model.</p>
<p>The move by Citrix is a coup of sorts for AWS. The companies have no official partnership but Citrix will make Cloudstack fully compatible. Citrix move will force the entire market to consider if it should open its cloud infrasrtucture to the Seattle book purveryor turned server rental titan. That means Microsoft, VMware and any other service provider will need to consider this if they want to be a player with AWS in a market worth billions if not trillions in revenues.</p>
<p>The irony is rich, isn&#8217;t it?  Enterprise and public cloud services providers have obsessed over the past two years about differentiating from AWS. And now they may have no choice but to align with them.</p>
<p>Citrix acquired Cloud.com last year and changed it into what is now<a href="http://www.cloudstack.org/"> Cloudstack</a>. It makes grandiose claims about its deployments &#8211; tens of thousands of servers, billions in revenues from the customers that have deployed it. But its future is with AWS. It will be 100% complaint with the AWS infrastructure.</p>
<p>Citrix will remain somewhat active in OpenStack with support for virtualization and networking. But <a href="http://www.citrix.com/English/ne/news/news.asp?newsID=2311980">Project Olympus</a> is dead. That was Citrix cloud infrastructure based on OpenStack that it announced last Spring.</p>
<p>Krishnan Subramanian is the founder of the newly launched <a href="http://rishidot.com/">Rishidot Research</a> and a recognized expert in the still nascent cloud computing movement. He says the move adds momentum to standardizing around AWS. He believes the market is too young for standards, though, and therefore creates an imbalance.</p>
<p>The move also puts OpenStack on the defensive. It could force OpenStack to change its governance model and make the foundation more equitable</p>
<p>Rackspace launched OpenStack with NASA in 2010. By contributing its Swift storage technology, Rackspace had considerable influence.  But without a foundation,  there were soon questions about it being impartial. Rick Clark was one of the founding members and served as chief architect for OpenStack. He <a href="http://www.readwriteweb.com/cloud/2011/03/questions-about-openstack---is.php">resigned </a>after the OpenStack Governance model underwent changes without community participation.</p>
<p>In recent months, OpenStack has adopted a governance structure that critics say gives too much influence to the top tier contributors, leaving the smaller companies feeling like they lack a voice.</p>
<p>There have been technical concerns, too. To date, there have been no major OpenStack deployments. The clock is ticking.</p>
<h2>Services Angle</h2>
<p>This news affects every services provider on the planet. Citrix is unquestionably the underdog. As <a href="http://www.cloudscaling.com/blog/cloud-computing/citrix-joins-apache-and-contributes-cloudstack-bold-move-or-brash-decision/">Randy Bias</a> points out, Citrix spent $500 million on its investments in XenSource four years back and Cloud. com this past year cost it about $200 million. In the meantime, competitor <a href="http://eucalyptus.com">Eucalyptus Systems</a> has shown why it is winning. It rebuilt its infrastructure for high availability and fortified its partnership with AWS.  Citrix had to do something. Aligning with AWS made the most sense.  And it could be the difference if the OpenStack movement does not correct its governance issues.</p>
<p>The implications are even more significant for the outsiders looking in. OpenStack does not have an AWS API and so it has to depend on its developer community to build out a federated cloud. Neither VMware nor Microsoft have AWS APIs. Now they have to consider what to do.</p>
<p>The costs to build out cloud infrastructure can cost you plenty if you go with an enterprise cloud services provider. Go with AWS and it&#8217;s comparatively pennies on the dollar. It&#8217;s why OpenStack has to be an alternative. It&#8217;s role is critical right now. AWS has the potential to get too big and too dominating. To combat it, OpenStack has to do a better job of governance. If it can do that, then even the enterprise cloud services providers will win. They need an alternative to AWS for public cloud services that fit with private cloud offerings. If OpenStack doesn&#8217;t exist then they have no other options. And that does nothing for the overall health of the market.</p>
<p><table width="80%" border="0" align="center" cellpadding="3" cellspacing="3">
  <tr>
    <td bgcolor="#FFFF99"><center>
      <p><a href="http://servicesangle.com/blog/2012/04/03/citrix-gives-cloudstack-to-the-apache-software-foundation-and-turns-its-back-on-openstack/">Citrix Gives Cloudstack to the Apache Software Foundation and Turns its Back on OpenStack</a> is a post from: <a href="http://siliconangle.com">SiliconANGLE</a>
<br />
        We're now available on the Kindle! <a href="http://www.amazon.com/gp/product/B004J17FSQ?ie=UTF8&tag=si00e-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B004J17FSQ">Subscribe today</a>. </p>
    </center></td>
  </tr>
</table>
</p>
<h2  class="related_post_title">In the same vein:</h2><ul class="related_post"><li><a href="http://siliconangle.com/blog/2012/04/25/linux-foundations-cloudopen-conference-bridging-open-source-cloudbig-data-communities/" title="Linux Foundation&#8217;s CloudOpen Conference Bridging Open Source Cloud/Big Data Communities">Linux Foundation&#8217;s CloudOpen Conference Bridging Open Source Cloud/Big Data Communities</a></li><li><a href="http://servicesangle.com/blog/2012/04/05/openstack-answers-citrix-defection-with-its-strongest-release/" title="OpenStack Answers Citrix Defection with its Strongest Release">OpenStack Answers Citrix Defection with its Strongest Release</a></li><li><a href="http://siliconangle.com/servicesangle/citrix-fulfills-promise-extends-cloudstack-offerings-to-vmware-oracle/" title="Citrix Fulfills Promise, Extends CloudStack Offerings to VMware, Oracle">Citrix Fulfills Promise, Extends CloudStack Offerings to VMware, Oracle</a></li><li><a href="http://siliconangle.com/blog/2011/08/29/citrix-opens-up-the-cloud-for-vmware-customers/" title="Citrix Opens Up the Cloud for VMware Customers">Citrix Opens Up the Cloud for VMware Customers</a></li><li><a href="http://siliconangle.com/servicesangle/a-first-birthday-for-openstack-adoption-is-next/" title="A First Birthday for OpenStack &#8211; Adoption is Next">A First Birthday for OpenStack &#8211; Adoption is Next</a></li><li><a href="http://siliconangle.com/blog/2011/07/12/citrix-bets-on-infrastructure-2-0-with-cloud-com-buy/" title="Citrix Bets On Infrastructure 2.0 with Cloud.com Buy  ">Citrix Bets On Infrastructure 2.0 with Cloud.com Buy  </a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://servicesangle.com/blog/2012/04/03/citrix-gives-cloudstack-to-the-apache-software-foundation-and-turns-its-back-on-openstack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gartner Server Virtualization Trends: Competitors Threaten VMware&#8217;s Reign</title>
		<link>http://siliconangle.com/servicesangle/blog/2012/03/21/gartner-server-virtualization-trends-competitors-threaten-vmwares-reign/</link>
		<comments>http://siliconangle.com/servicesangle/blog/2012/03/21/gartner-server-virtualization-trends-competitors-threaten-vmwares-reign/#comments</comments>
		<pubDate>Wed, 21 Mar 2012 23:54:55 +0000</pubDate>
		<dc:creator>Matt Weinberger</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[ServicesANGLE]]></category>
		<category><![CDATA[citrix]]></category>
		<category><![CDATA[Gartner Research]]></category>
		<category><![CDATA[Hyper-V]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[rackspace]]></category>
		<category><![CDATA[Red Hat]]></category>
		<category><![CDATA[server virtualization]]></category>
		<category><![CDATA[Terremark]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[vSphere]]></category>

		<guid isPermaLink="false">http://siliconangle.com/?p=97069</guid>
		<description><![CDATA[In a blog post, Gartner analyst Tom Bittman identifies the top server virtualization trends to watch out for in 2012 as the market matures. Short version: VMware&#8217;s dominance in this space is threatened as competitive choices mature and customers begin &#8230; <a href="http://siliconangle.com/servicesangle/blog/2012/03/21/gartner-server-virtualization-trends-competitors-threaten-vmwares-reign/">Continue reading <span class="meta-nav">&#8594;</span></a><p><table width="80%" border="0" align="center" cellpadding="3" cellspacing="3">
  <tr>
    <td bgcolor="#FFFF99"><center>
      <p><a href="http://siliconangle.com/servicesangle/blog/2012/03/21/gartner-server-virtualization-trends-competitors-threaten-vmwares-reign/">Gartner Server Virtualization Trends: Competitors Threaten VMware&#8217;s Reign</a> is a post from: <a href="http://siliconangle.com">SiliconANGLE</a>
<br />
        We're now available on the Kindle! <a href="http://www.amazon.com/gp/product/B004J17FSQ?ie=UTF8&tag=si00e-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B004J17FSQ">Subscribe today</a>. </p>
    </center></td>
  </tr>
</table>
</p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://siliconangle.com/blog/2010/08/10/zimbra-gets-the-full-vmware-treatment-stacking-the-cloud/vmware-logo/" rel="attachment wp-att-19454"><img class="alignright size-medium wp-image-19454" title="vmware logo" src="http://siliconangle.com/files/2010/08/vmware-logo-300x86.png" alt="" width="300" height="86" /></a>In a <a href="http://blogs.gartner.com/thomas_bittman/2012/03/21/top-five-server-virtualization-trends-2012/">blog post</a>, Gartner analyst Tom Bittman identifies the top server virtualization trends to watch out for in 2012 as the market matures. Short version: VMware&#8217;s dominance in this space is threatened as competitive choices mature and customers begin to fear the ramifications of getting locked into its ecosystem.</p>
<p>Here are Bittman&#8217;s points, distilled:</p>
<ol>
<li><strong>Competitive Choices Mature:</strong> Bittman doesn&#8217;t name names, but he does acknowledge that VMware&#8217;s competition in server virtualization is rapidly maturing, and that price is starting to become a key differentiator. In other words, virtualization environments like Citrix Xen, Microsoft Hyper-V and <a href="http://servicesangle.com/blog/2012/02/22/red-hats-kvm-overtakes-xen-and-service-providers-lead-the-way/">especially Red Hat KVM</a> are catching up in both feature set and popularity to VMware vSphere. Enterprises currently using VMware for virtualization are unlikely to switch, but those who are just starting to look have an increasing number of completely valid options, and VMware is no longer as surefire a bet.</li>
<li><strong>Second Sourcing Grows: </strong>Okay, so as I said, businesses aren&#8217;t moving away from VMware environments. But they are setting up second, internal virtualization environments and taking the competition for a test-drive to attempt to avoid putting all their eggs in one basket. There&#8217;s not much by way of multi-environment, heterogeneous virtualization management yet, but as this second sourcing trend grows, the interest in such a solution is as well.</li>
<li><strong>Pricing Models in Flux: </strong>As the <a href="http://servicesangle.com/blog/2011/08/03/vmware-adjusts-vsphere-5-licensing-launch-saved/">controversy over the VMware vSphere 5 licensing model in mid-2011</a> proved, there&#8217;s plenty of room for innovation in virtualization licensing schemes. That matter only gets worse as hybrid and private cloud deployments become more commonplace. Watch out for plenty of chatter around price models.</li>
<li><strong>Penetration and Saturation: </strong>For a Gartner VP, it takes Bittman a while to get to a statistic: Virtualization is at 50% penetration, and competition is going to drive prices down and down. Conversely, as virtualization usage rises, server vendors are going to see a downtick in their own businesses until this trend slows down.</li>
<li><strong>Cloud Service Providers Are Placing Bets: </strong>IaaS vendors are fully aware of this virtualization trend, and are scrambling to make their own infrastructures compatible with desirable host environments so that businesses can on-ramp virtualized workloads to their clouds. The options for a cloud service provider, as Bittman sees it, are to either build your own (limiting appeal), buy into the virtualization technology used by enterprises (risking commoditization) or invest in tools that connect the two (which could get complex). And these cloud providers are starting to make their investments. For instance, <a href="http://www.rackspace.com">Rackspace</a> uses Citrix Xen and XenServer for its cloud server instances, while Verizon subsidiary <a href="http://www.terremark.com">Terremark</a> has thrown in with VMware vSphere.</li>
</ol>
<h2>Services Angle</h2>
<p>As Bittman himself notes in the conclusion to his blog entry, just because the market is maturing doesn&#8217;t mean it&#8217;s done shaking up. There&#8217;s going to be some turmoil, and I&#8217;m sure some melodrama, as cloud service providers continue to throw in with one vendor or another for server virtualization. It would behoove the CIO to pay attention to the market, and, as ever, make choices based on actual value and not the name on the box.</p>
<p><table width="80%" border="0" align="center" cellpadding="3" cellspacing="3">
  <tr>
    <td bgcolor="#FFFF99"><center>
      <p><a href="http://siliconangle.com/servicesangle/blog/2012/03/21/gartner-server-virtualization-trends-competitors-threaten-vmwares-reign/">Gartner Server Virtualization Trends: Competitors Threaten VMware&#8217;s Reign</a> is a post from: <a href="http://siliconangle.com">SiliconANGLE</a>
<br />
        We're now available on the Kindle! <a href="http://www.amazon.com/gp/product/B004J17FSQ?ie=UTF8&tag=si00e-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B004J17FSQ">Subscribe today</a>. </p>
    </center></td>
  </tr>
</table>
</p>
<h2  class="related_post_title">In the same vein:</h2><ul class="related_post"><li><a href="http://siliconangle.com/blog/2012/05/02/microsofts-hyper-v-3-0-will-make-virtualization-an-interesting-fight/" title="Microsoft’s Hyper-V 3.0 Will Make Virtualization an Interesting Fight">Microsoft’s Hyper-V 3.0 Will Make Virtualization an Interesting Fight</a></li><li><a href="http://siliconangle.com/servicesangle/blog/2012/02/15/48-hours-later-and-6-new-and-updated-versions-of-the-private-cloud/" title="48 Hours Later and 6 New and Updated Versions of the Private Cloud">48 Hours Later and 6 New and Updated Versions of the Private Cloud</a></li><li><a href="http://siliconangle.com/servicesangle/citrix-fulfills-promise-extends-cloudstack-offerings-to-vmware-oracle/" title="Citrix Fulfills Promise, Extends CloudStack Offerings to VMware, Oracle">Citrix Fulfills Promise, Extends CloudStack Offerings to VMware, Oracle</a></li><li><a href="http://siliconangle.com/servicesangle/vmware-staves-off-microsoft-hyper-v-seeks-uk-government-contracts/" title="VMware Staves Off Microsoft Hyper-V, Seeks UK Government Contracts">VMware Staves Off Microsoft Hyper-V, Seeks UK Government Contracts</a></li><li><a href="http://siliconangle.com/blog/2011/01/21/towards-cost-efficient-zero-client-hardware-vdi-integrates-with-vmware-microsoft-citrix/" title="Towards Cost-Efficient &#8220;Zero Client&#8221; Hardware, VDI Integrates with VMware, Microsoft, Citrix">Towards Cost-Efficient &#8220;Zero Client&#8221; Hardware, VDI Integrates with VMware, Microsoft, Citrix</a></li><li><a href="http://siliconangle.com/blog/2010/11/23/quest-software-release-automates-on-vmware-esx-microsoft-hyper-v/" title="Quest Software Release Automates on VMware ESX, Microsoft Hyper-V">Quest Software Release Automates on VMware ESX, Microsoft Hyper-V</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://siliconangle.com/servicesangle/blog/2012/03/21/gartner-server-virtualization-trends-competitors-threaten-vmwares-reign/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/

Page Caching using disk: basic
Object Caching 3629/4107 objects using apc

Served from: siliconangle.com @ 2012-05-25 08:13:07 -->
