<?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>Techwag &#187; Cloud computing</title>
	<atom:link href="http://www.techwag.com/tag/cloud-computing/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techwag.com</link>
	<description>Our world is an amazingly cool place, let&#039;s explore it together</description>
	<lastBuildDate>Wed, 09 Jan 2013 14:03:58 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5</generator>
		<item>
		<title>How to Synch S3 Buckets in AWS and design for failover</title>
		<link>http://www.techwag.com/2012/06/how-to-synch-s3-buckets-in-aws-and-design-for-failover/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-synch-s3-buckets-in-aws-and-design-for-failover</link>
		<comments>http://www.techwag.com/2012/06/how-to-synch-s3-buckets-in-aws-and-design-for-failover/#comments</comments>
		<pubDate>Sat, 30 Jun 2012 13:30:03 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[Amazon Elastic Compute Cloud]]></category>
		<category><![CDATA[Amazon S3]]></category>
		<category><![CDATA[Amazon Web Services]]></category>
		<category><![CDATA[AWS]]></category>
		<category><![CDATA[Cloud computing]]></category>
		<category><![CDATA[Elastic Load Balancing]]></category>
		<category><![CDATA[Netflix]]></category>

		<guid isPermaLink="false">http://www.techwag.com/?p=272</guid>
		<description><![CDATA[News of last night’s problems with the Virginia Data Centers power system taking down sites like Netflix and Pinterestshows that sometimes not programming for fail over or data center failure is a pretty foolish thing to do. Especially with costs somewhat reasonable per gigabyte in Amazon’s S3 system. Anyone who does not program for fail [...]]]></description>
				<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.techwag.com%2F2012%2F06%2Fhow-to-synch-s3-buckets-in-aws-and-design-for-failover%2F' data-shr_title='How+to+Synch+S3+Buckets+in+AWS+and+design+for+failover'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.techwag.com%2F2012%2F06%2Fhow-to-synch-s3-buckets-in-aws-and-design-for-failover%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.techwag.com%2F2012%2F06%2Fhow-to-synch-s3-buckets-in-aws-and-design-for-failover%2F' data-shr_title='How+to+Synch+S3+Buckets+in+AWS+and+design+for+failover'></a><a class='shareaholic-tweetbutton' data-shr_count='horizontal' data-shr_href='http%3A%2F%2Fwww.techwag.com%2F2012%2F06%2Fhow-to-synch-s3-buckets-in-aws-and-design-for-failover%2F' data-shr_title='How+to+Synch+S3+Buckets+in+AWS+and+design+for+failover'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetTop Automatic --><div class="shr-publisher-272"></div><p>News of last night’s problems with the Virginia Data Centers power system<a href="http://venturebeat.com/2012/06/29/amazon-outage-netflix-instagram-pinterest/" target="_blank"> taking down sites like Netflix and Pinterest</a>shows that sometimes not programming for fail over</p>
<div class="wp-caption alignright" style="width: 195px"><a href="http://www.crunchbase.com/company/netflix" target="_blank"><img class="zemanta-img-inserted zemanta-img-configured" title="Image representing Netflix as depicted in Crun..." src="http://www.crunchbase.com/assets/images/resized/0001/7200/17200v1-max-450x450.png" alt="Image representing Netflix as depicted in Crun..." width="185" height="64" /></a><p class="wp-caption-text">Image via CrunchBase</p></div>
<p>or data center failure is a pretty foolish thing to do. Especially with costs somewhat reasonable per gigabyte in Amazon’s S3 system.</p>
<p>Anyone who does not program for fail over in any system takes foolish risks with their computing systems and their companies.</p>
<p>So synching S3 buckets is fairly easy, and there is no reason not to do it, you can cut your own custom script that will determine all the contents in an S3 bucket and make sure that even though the data centers are somewhat isolated ensure the contents are the same in each S3 bucket. You can use a freeware/minimal cost software like <a href="http://s3tools.org/s3cmd-sync" target="_blank">S3CMD from S3 tools</a> to help you out if you need a baseline system command set to do this. Or you can manually do an object check between S3 buckets using an EC2 instance as a master controller for the S3 buckets. The EC2 instances should be able to talk to each other using the public interface without having to get an IP lease from AWS to do so.</p>
<p>You should also be load balancing between regions, doing a simple health check and using cloud watch to ensure that once the parameters are met for an outage for the world to be notified that one data center is down. Load balancing is a necessary process if you want to program for fail over.</p>
<p>Elastic Load Balancing that comes as part of AWS is a good way to ensure that regions are healthy, and that an outage in one region will not influence or impact the good working conditions of the company that is using AWS. <a href="http://aws.amazon.com/elasticloadbalancing/" target="_blank">On the ELB page on Amazon they state</a>:</p>
<blockquote><p>Elastic Load Balancing can detect the health of Amazon EC2 instances. When it detects unhealthy load-balanced Amazon EC2 instances, it no longer routes traffic to those Amazon EC2 instances and spreads the load across the remaining healthy Amazon EC2 instances.</p>
<p>Using Elastic Load Balancing, you can distribute incoming traffic across your Amazon EC2 instances in a single Availability Zone or multiple Availability Zones. Elastic Load Balancing automatically scales its request handling capacity in response to incoming application traffic.</p></blockquote>
<p>You have to use S3, a master EC2 in each availability region to perform the automation for each region, Elastic Load Balancing, and software like S3CMD to make all this work. You will probably spend the better part of an afternoon setting this up, but failure to take into account an outage in any region is simply poor cloud computing or normal computing practice. There will always be disasters regardless of how stable any cloud computing solution seems, and you must architect for failover for every system you design and develop regardless of the platform.</p>
<p>Netflix, Pinterest and others who were down because they were only in the Virginia data center need to program for failover, and if they lost business or customers because of it, then they need to go back and reevaluate their AWS dependencies and work out a decent failover process.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles</h6>
<ul class="zemanta-article-ul zemanta-article-ul-image" style="margin-left: 0px;">
<li class="zemanta-article-ul-li-image zemanta-article-ul-li" style="overflow: hidden; list-style: none outside none; margin-top: 10px;"><a href="http://www.datacenterknowledge.com/archives/2012/06/29/another-outage-amazon-cloud/" target="_blank"><img style="padding: 0px; margin: 0px 10px 10px 0px; border: 0px none; display: block; float: left;" src="http://i.zemanta.com/97385144_80_80.jpg" alt="" /></a><a style="display: block;" href="http://www.datacenterknowledge.com/archives/2012/06/29/another-outage-amazon-cloud/" target="_blank">More Problems for Amazon EC2 Cloud</a><span style="display: block; font-size: 12px; margin: 10px 0px;">(datacenterknowledge.com)</span>
<div style="clear: both;">
<hr style="margin: 0px;" />
</div>
</li>
<li class="zemanta-article-ul-li-image zemanta-article-ul-li" style="overflow: hidden; list-style: none outside none; margin-top: 10px;"><a href="http://www.agilesysadmin.net/ec2-outage-lessons" target="_blank"><img style="padding: 0px; margin: 0px 10px 10px 0px; border: 0px none; display: block; float: left;" src="http://i.zemanta.com/noimg_17_80_80.jpg" alt="" /></a><a style="display: block;" href="http://www.agilesysadmin.net/ec2-outage-lessons" target="_blank">Amazon EC2 outage lessons</a><span style="display: block; font-size: 12px; margin: 10px 0px;">(agilesysadmin.net)</span>
<div style="clear: both;">
<hr style="margin: 0px;" />
</div>
</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/?px"><img class="zemanta-pixie-img" style="float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=2c7e56c0-91b2-4b56-ac2e-d81ac32d312e" alt="Enhanced by Zemanta" /></a></div>
<!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.techwag.com/2012/06/how-to-synch-s3-buckets-in-aws-and-design-for-failover/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Master Switch by Tim Wu book review</title>
		<link>http://www.techwag.com/2012/03/the-master-switch-by-tim-wu-book-review/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-master-switch-by-tim-wu-book-review</link>
		<comments>http://www.techwag.com/2012/03/the-master-switch-by-tim-wu-book-review/#comments</comments>
		<pubDate>Fri, 16 Mar 2012 17:49:46 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[AT&T]]></category>
		<category><![CDATA[Cloud computing]]></category>
		<category><![CDATA[Disruptive technology]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Sheet music]]></category>
		<category><![CDATA[Tim Wu]]></category>

		<guid isPermaLink="false">http://www.techwag.com/?p=164</guid>
		<description><![CDATA[It is not often that you read a book that simply makes sense, and Tim Wu strings together a series of events evocative of the old “connections” TV show. Tim paints a picture of the difficulties that companies have cannibalizing current product lines and products in favor of the next big thing. By using AT&#38;T [...]]]></description>
				<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.techwag.com%2F2012%2F03%2Fthe-master-switch-by-tim-wu-book-review%2F' data-shr_title='The+Master+Switch+by+Tim+Wu+book+review'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.techwag.com%2F2012%2F03%2Fthe-master-switch-by-tim-wu-book-review%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.techwag.com%2F2012%2F03%2Fthe-master-switch-by-tim-wu-book-review%2F' data-shr_title='The+Master+Switch+by+Tim+Wu+book+review'></a><a class='shareaholic-tweetbutton' data-shr_count='horizontal' data-shr_href='http%3A%2F%2Fwww.techwag.com%2F2012%2F03%2Fthe-master-switch-by-tim-wu-book-review%2F' data-shr_title='The+Master+Switch+by+Tim+Wu+book+review'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetTop Automatic --><div class="shr-publisher-164"></div><p>It is not often that you read a book that simply makes sense, and Tim Wu</p>
<div class="wp-caption alignright" style="width: 290px"><a href="http://commons.wikipedia.org/wiki/File:Twu.jpg" target="_blank"><img class="zemanta-img-inserted zemanta-img-configured" title="English: Picture of Tim Wu" src="http://upload.wikimedia.org/wikipedia/commons/3/3d/Twu.jpg" alt="English: Picture of Tim Wu" width="280" height="350" /></a><p class="wp-caption-text">Image via Wikipedia</p></div>
<p>strings together a series of events evocative of the old “connections” TV show. Tim paints a picture of the difficulties that companies have cannibalizing current product lines and products in favor of the next big thing. By using AT&amp;T and other companies throughout his book, you can see how difficult it would be for a manager to back the unproven “next big thing” when the current product set is still making tons of money and is very profitable. The picture that he portrays shows that companies are naturally disinclined to support technologies, processes, and ideas that are disruptive to profitable products.</p>
<p>&nbsp;</p>
<p>We can see this with Microsoft struggling with Cloud Computing, and the Music and Movie industries having such a difficult time moving to a viable digital model in the internet era. The music industry has railed against every change in technology since the player piano and sheet music saying that it would decimate sales, only to find a working economic model that would allow them to be successful selling sheet music and player piano roles. This book will leave anyone transfixed, and has information for people who are familiar with disruptive technologies as a product line as well as general people who have an interest in how disruptive ideas eventually work their way into the mainstream, even it takes 40 some odd years as it did with the voice message machine that we take for granted today.</p>
<p>&nbsp;</p>
<p>This book is truly 5 of 5 stars, I sat down and read it in one sitting unable to put it down. Well worth reading for all levels of interest from managers to employees, nonprofessionals to experts there is something here for everyone. Tim writes an eloquent book about technology, corporate and business model disruption, and why companies have a hard time working with disruptive ideas that might not be the next big thing. Moreover Tim points out why a disruptive idea might be more suited to smaller companies who can afford high risks, rather than a tried and true blue company that has different ideas of business lines and profit models.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://virtualnotes.wordpress.com/2012/03/15/embrace-disruption/" target="_blank">Embrace Disruption</a> (virtualnotes.wordpress.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.staygolinks.com/the-app-internet-disruptive-technology-for-google-search.htm" target="_blank">The App Internet &#8211; Disruptive Technology For Google Search</a> (staygolinks.com)</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=0de144c9-f624-45a8-af94-9ebf79a84bbb" alt="Enhanced by Zemanta" /></a></div>
<!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.techwag.com/2012/03/the-master-switch-by-tim-wu-book-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Book on Cloud Computing</title>
		<link>http://www.techwag.com/2012/03/new-book-on-cloud-computing/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=new-book-on-cloud-computing</link>
		<comments>http://www.techwag.com/2012/03/new-book-on-cloud-computing/#comments</comments>
		<pubDate>Tue, 06 Mar 2012 17:36:43 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Business-to-Business]]></category>
		<category><![CDATA[Cloud computing]]></category>
		<category><![CDATA[E-Commerce]]></category>
		<category><![CDATA[Elastic Block Storage]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Virtual Private Cloud]]></category>

		<guid isPermaLink="false">http://www.techwag.com/?p=14</guid>
		<description><![CDATA[In case you have been wondering what has been keeping me busy, the InfoSec Institute out of Chicago has requested that I write down everything I know about Cloud Computing, and this is turning into an interesting project. As I am nearing my deadline, and finishing up the book on Advanced Cloud Computing for ISI, [...]]]></description>
				<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.techwag.com%2F2012%2F03%2Fnew-book-on-cloud-computing%2F' data-shr_title='New+Book+on+Cloud+Computing'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.techwag.com%2F2012%2F03%2Fnew-book-on-cloud-computing%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.techwag.com%2F2012%2F03%2Fnew-book-on-cloud-computing%2F' data-shr_title='New+Book+on+Cloud+Computing'></a><a class='shareaholic-tweetbutton' data-shr_count='horizontal' data-shr_href='http%3A%2F%2Fwww.techwag.com%2F2012%2F03%2Fnew-book-on-cloud-computing%2F' data-shr_title='New+Book+on+Cloud+Computing'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetTop Automatic --><div class="shr-publisher-14"></div><div class="wp-caption alignright" style="width: 310px"><a href="http://commons.wikipedia.org/wiki/File:Cloud_computing_types.svg" target="_blank"><img class="zemanta-img-inserted zemanta-img-configured " style="margin: 10px;" title="English: Diagram showing three main types of c..." src="http://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Cloud_computing_types.svg/300px-Cloud_computing_types.svg.png" alt="English: Diagram showing three main types of c..." width="300" height="178" /></a><p class="wp-caption-text">Image via Wikipedia</p></div>
<p>In case you have been wondering what has been keeping me busy, the InfoSec Institute out of Chicago has requested that I write down everything I know about Cloud Computing, and this is turning into an interesting project.</p>
<p>As I am nearing my deadline, and finishing up the book on Advanced Cloud Computing for ISI, I am realizing just how little people really know about setting up and maintaining a cloud computing infrastructure. While people get ideas of virtualization, when you look at virtualized NIC cards, or Virtualized Memory Caches, a lot of folks have no idea what to do with them. Amazon provides some amazingly cool stuff to work with, but dealing with atomic components like GPU’s and CPU’s for a render farm and what works best is a “best guess” for people in how to use them.</p>
<p>The research part of this has been very interesting, because there is such a lack of data on some of the Amazon Cloud Computing components. Amazon of course has an excellent set of white papers on the subject, but little if any real examples in the real world how someone used cloud computing to do something very cool using various components of Amazon’s cloud computing resources.</p>
<p>Looking at things like Amazon’s High Performance computing stack (which would make an awesome render farm for a video game or video company), I would like to see more real world examples of how it has been used, and used to save money or time. Using atomic components for EBS (Elastic Block Storage) like putting an additional NIC card on the EBS system. Or the dangers of using EBS rather than S3, EBS is meant to be temporary while S3 is meant to be more permanent.</p>
<p>Then there are the security implications to S3 that I think some folks forgot about or didn’t realize what they were working with so you could programmatically drunkards walk through someone’s S3 volume without them even knowing about what you were doing. Logging in S3 in some of the real world examples I have seen drew blank stares because they didn’t realize you could log the events on one S3 bucket to another S3 bucket.</p>
<p>That is why I am having so much fun with this book, there are a lot of very cool things you can do, but there are a lot of interesting ways of mucking things up so that you do not get what you were expecting. The state of cloud computing architecture is still fairly primitive even if we are years into the idea, tools are obscure or shoehorned into working in a cloud environment rather than being built from the ground up to be compatible with the cloud environment. And yes that statement alone should get vendors angry with me wanting to assert my statement. But selling a network based IDS/IPS system for the cloud is an interesting prospect given that a company does not have direct access to the network, and cannot really put an IDS/IPS inline to the network even when using a Virtual Private Cloud, the best place for an inline IDS/IPS is still going to be at the company at the entry point for the VPN, not in the Amazon web space.</p>
<p>In all there are a lot of cool things you can do, but there are also a lot of changes in how we think about what we are doing in the cloud. I hope you will be interested in the book when it comes out, because I think it is going to pretty much so rock, and raise interesting questions, and offer interesting solutions to a wide range of issues with cloud computing.</p>
<p>&nbsp;</p>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.speedofcreativity.org/2012/03/05/why-is-cloud-computing-significant-for-college-faculty/" target="_blank">Why is cloud computing significant for college faculty?</a> (speedofcreativity.org)</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=75f4ac47-7bf5-48dc-9e4a-12e81d8b4324" alt="Enhanced by Zemanta" /></a></div>
<!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.techwag.com/2012/03/new-book-on-cloud-computing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
