<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>GigaOM &#187; fault tolerance</title>
	<atom:link href="http://gigaom.com/tag/fault-tolerance/feed/" rel="self" type="application/rss+xml" />
	<link>http://gigaom.com</link>
	<description></description>
	<lastBuildDate>Wed, 19 Jun 2013 06:55:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='gigaom.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/0db8f6557d022075dbbf010c54d46d93?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>GigaOM &#187; fault tolerance</title>
		<link>http://gigaom.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://gigaom.com/osd.xml" title="GigaOM" />
	<atom:link rel='hub' href='http://gigaom.com/?pushpress=hub'/>
		<item>
		<title>Netflix open sources tool for making cloud services play nice</title>
		<link>http://gigaom.com/2012/11/26/netflix-open-sources-tool-for-making-cloud-services-play-nice/</link>
		<comments>http://gigaom.com/2012/11/26/netflix-open-sources-tool-for-making-cloud-services-play-nice/#comments</comments>
		<pubDate>Mon, 26 Nov 2012 18:24:51 +0000</pubDate>
		<dc:creator>Derrick Harris</dc:creator>
				<category><![CDATA[Amazon Web Services]]></category>
		<category><![CDATA[APIs]]></category>
		<category><![CDATA[application development]]></category>
		<category><![CDATA[AWS: Reinvent]]></category>
		<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[distributed-systems]]></category>
		<category><![CDATA[fault tolerance]]></category>
		<category><![CDATA[iaas]]></category>
		<category><![CDATA[Netflix]]></category>

		<guid isPermaLink="false">http://gigaom.com/?p=587918</guid>
		<description><![CDATA[Netflix has forged a cottage industry building tools to fill gaps in Amazon's cloud infrastructure or otherwise add value to it. Now the company is open sourcing its Hystrix libraries, which manage interactions between the myriad distributed services that power its applications.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=587918&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Netflix, it seems, is to cloud computing what Google and Facebook are to distributed systems, generally. Today, Netflix has open sourced its latest technology for keeping its cloud-hosted applications running &#8212; a set of libraries, called Hystrix, that is designed to manage interactions between the myriad services that comprise the company&#8217;s distributed architecture. If you&#8217;re building service-oriented architectures in the Amazon Web Services cloud, it might be worth a look.</p>
<p>Netflix Engineer Ben Christensen <a href="http://techblog.netflix.com/2012/11/hystrix.html">explained Hystrix thusly in a blog post on Monday</a>:</p>
<blockquote><p>Hystrix is a library designed to control the interactions between these distributed services providing greater tolerance of latency and failure. Hystrix does this by isolating points of access between the services, stopping cascading failures across them, and providing fallback options, all of which improve the system&#8217;s overall resiliency.</p></blockquote>
<p>Hystrix actually stems from earlier work to add resilience to the Netflix API, the means by which many customer-facing applications access the services they need to run. As Christensen<a href="http://techblog.netflix.com/2012/02/fault-tolerance-in-high-volume.html"> explained in a February 2012 blog post,</a> services are distributed across thousands of instances in AWS, and if there are problems with those services &#8212; such as high latency or failed connections between them &#8212; it can wreak havoc on the Netflix API and seriously affect the performance of all the applications that depend on it.</p>
<div id="attachment_587953" class="wp-caption aligncenter" style="width: 614px"><a href="http://gigaom2.files.wordpress.com/2012/11/nflx-api.jpg"><img  title="nflx api" alt="" src="http://gigaom2.files.wordpress.com/2012/11/nflx-api.jpg?w=604&#038;h=511" height="511" width="604" class="size-large wp-image-587953" /></a><p class="wp-caption-text">Source: Netflix (<a href="https://speakerdeck.com/benjchristensen/performance-and-fault-tolerance-for-the-netflix-api-august-2012" rel="nofollow">https://speakerdeck.com/benjchristensen/performance-and-fault-tolerance-for-the-netflix-api-august-2012</a>)</p></div>
<p>And, as he notes in that February post, &#8220;Intermittent failure is guaranteed with this many variables, even if every dependency itself has excellent availability and uptime &#8230; Thus, it is a requirement of high volume, high availability applications to build fault tolerance into their architecture and not expect infrastructure to solve it for them.&#8221;</p>
<p><a href="http://gigaom.com/cloud/how-to-deal-with-cloud-failure-live-learn-fix-repeat/">Distributed systems are hard work to build and manage</a> &#8212; ask anyone at Yahoo, <a href="http://gigaom.com/cloud/how-google-is-using-openflow-to-lower-its-network-costs/">Google</a> or <a href="http://gigaom.com/cloud/how-facebook-brings-a-new-data-center-online/">Facebook</a> &#8212; and building distributed, service-oriented applications <em>on top</em> of those systems is probably no less difficult. Netflix has an even more-novel challenge because it opted to host all of its applications and services in the cloud, which provides some great tools for maximizing uptime but also some new layers of complexity in application architecture. The company&#8217;s focus on building resilient apps has been core to <a href="http://gigaom.com/cloud/once-again-netflix-shows-how-to-avoid-a-cloud-meltdown/">its ability to survive most of AWS&#8217;s cloud outages</a> with little or no significant downtime.</p>
<p>In fact, Obama for America CTO Harper Reed <a href="http://gigaom.com/cloud/how-obamas-tech-team-helped-deliver-the-2012-election/">told me during a post-election interview</a> that Netflix tools and techniques helped the president&#8217;s AWS-hosted applications stay up and running even during three outages between late June and Nov. 6. Netflix has also open-sourced its <a href="http://gigaom.com/cloud/netflix-open-sources-eureka-to-fill-gap-in-amazons-cloud/">Eureka load-balancing technology</a>, its Edda <a href="http://gigaom.com/cloud/netflix-open-sources-dynamic-query-goodness-for-amazon-cloud/">dynamic querying tool</a>, its <a href="http://gigaom.com/cloud/netflix-open-sources-asgard-cloud-deployment-smarts/">Asgard management console</a> and <a href="http://gigaom.com/cloud/netflix-open-sources-cloud-testing-chaos-monkey/">its lauded Chaos Monkey</a> for testing application resilience.</p>
<p>It&#8217;s no surprise then that Netflix is something of a shining star at the <a href="https://reinvent.awsevents.com/">AWS: Reinvent</a> user conference in Las Vegas this week (CEO Reed Hastings will take the stage long with numerous engineers), prompting some to refer to it jokingly as a Netflix technology conference. Not that it&#8217;s an insult to anybody &#8212; Amazon and other infrastructure-as-a-service providers rent virtual servers, networks and management tools, but it takes cutting-edge users to engineer apps that can make the most of them.</p>
<br />  <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=587918&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" /><p><a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=987016"><img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=987016" /></a></p><p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=cloud&utm_medium=editorial&utm_campaign=auto3&utm_term=587918+netflix-open-sources-tool-for-making-cloud-services-play-nice&utm_content=dharrisstructure">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2012/04/infrastructure-q1-cloud-and-big-data-woo-the-enterprise/?utm_source=cloud&utm_medium=editorial&utm_campaign=auto3&utm_term=587918+netflix-open-sources-tool-for-making-cloud-services-play-nice&utm_content=dharrisstructure">Infrastructure Q1: Cloud and big data woo enterprises</a></li><li><a href="http://pro.gigaom.com/2012/06/cloud-computing-infrastructure-2012-and-beyond/?utm_source=cloud&utm_medium=editorial&utm_campaign=auto3&utm_term=587918+netflix-open-sources-tool-for-making-cloud-services-play-nice&utm_content=dharrisstructure">Cloud computing infrastructure: 2012 and beyond</a></li><li><a href="http://pro.gigaom.com/2012/01/how-amazons-dynamodb-is-rattling-the-big-data-and-cloud-markets/?utm_source=cloud&utm_medium=editorial&utm_campaign=auto3&utm_term=587918+netflix-open-sources-tool-for-making-cloud-services-play-nice&utm_content=dharrisstructure">Amazon’s DynamoDB: rattling the cloud market</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/2012/11/26/netflix-open-sources-tool-for-making-cloud-services-play-nice/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:thumbnail url="http://gigaom2.files.wordpress.com/2012/11/hystrix-logo.png?w=150" />
		<media:content url="http://gigaom2.files.wordpress.com/2012/11/hystrix-logo.png?w=150" medium="image">
			<media:title type="html">hystrix-logo</media:title>
		</media:content>

		<media:content url="http://0.gravatar.com/avatar/9e48ffa0913f65c577727457dd63023f?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">dharrisstructure</media:title>
		</media:content>

		<media:content url="http://gigaom2.files.wordpress.com/2012/11/nflx-api.jpg?w=604" medium="image">
			<media:title type="html">nflx api</media:title>
		</media:content>
	</item>
	</channel>
</rss>
