<?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>Control Group Blog &#187; cloud</title>
	<atom:link href="http://blog.controlgroup.com/tag/cloud/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.controlgroup.com</link>
	<description></description>
	<lastBuildDate>Thu, 29 Jul 2010 18:15:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='blog.controlgroup.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/f388f3312831ad70ab2e3aac1d7acbc8?s=96&#038;d=http://s2.wp.com/i/buttonw-com.png</url>
		<title>Control Group Blog &#187; cloud</title>
		<link>http://blog.controlgroup.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.controlgroup.com/osd.xml" title="Control Group Blog" />
	<atom:link rel='hub' href='http://blog.controlgroup.com/?pushpress=hub'/>
		<item>
		<title>Automated Linux Server Deployment With Amazon EC2 and Puppet</title>
		<link>http://blog.controlgroup.com/2010/07/29/automated-linux-server-deployment-with-amazon-ec2-and-puppet/</link>
		<comments>http://blog.controlgroup.com/2010/07/29/automated-linux-server-deployment-with-amazon-ec2-and-puppet/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 18:02:49 +0000</pubDate>
		<dc:creator>David Rocamora</dc:creator>
				<category><![CDATA[infrastructure]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[deployment]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.controlgroup.com/?p=854</guid>
		<description><![CDATA[I wear a few different hats at Control Group. Very often I will join the team on projects that have something to do with post production, storage networking, product development and web application development. At a glance these things seem quite different. What do these very different projects have in common? Linux! I work with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=854&subd=controlgroupblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>I wear a few different hats at Control Group. Very often I will join the team on projects that have something to do with post production, storage networking, product development and web application development. At a glance these things seem quite different. What do these very different projects have in common? <a href="http://en.wikipedia.org/wiki/Linux">Linux!</a></p>
<div id="attachment_870" class="wp-caption alignleft" style="width: 212px"><img class="size-medium wp-image-870" title="linux-penguin" src="http://controlgroupblog.files.wordpress.com/2010/07/linux-penguin.jpeg?w=202&#038;h=240" alt="Tux the Linux Penguin" width="202" height="240" /><p class="wp-caption-text">Tux the Linux Penguin </p></div>
<p><a href="http://en.wikipedia.org/wiki/Linux"></a>I work with Linux quite a bit at CG and it comes up in some interesting places. Consistently we find that the largest and smallest systems we work with are running Linux. If it&#8217;s a large system, like a database or storage network, Linux can provide the stability, robustness, and uptime required to make the project a success. If it&#8217;s a very small system, like an embedded display or a custom purpose device, we choose Linux because of its flexibility.</p>
<p>Over the last year or so, we&#8217;ve had a need to spin up many more virtual computers than we used to. It&#8217;s necessary to create a handful of  computers for each project we work on and the number of projects that we are taking on at a time is growing. Tools like EC2 and <a href="http://www.vmware.com/">VMWare</a> have made it very easy for us to create new virtual computers, but what about managing them? For Linux there are some great solutions. In this blog post I would like to talk about how we&#8217;re using some of the tools to deal with the large number of machines we are managing in Amazon EC2 for ourselves and our clients.</p>
<h4>Cloud Control</h4>
<p>The first part of the system is <a title="Amazon's Elastic Compute Cloud" href="http://aws.amazon.com/ec2/">Amazon&#8217;s Elastic Compute Cloud</a> (or EC2 for short). I&#8217;ve written about EC2 <a href="http://blog.controlgroup.com/2009/08/07/a-look-at-amazons-elastic-load-balancer/">before</a>, but to be really brief about it: EC2 allows you to create computers on the Internet quickly and lets you pay by the hour for their use. The instances you create are virtual machines that run in a large <a title="Xen" href="http://www.xen.org/">Xen</a> based infrastructure that Amazon provides. To customize the software and configuration of the instances, Amazon lets you create snapshots of your computers (called Amazon Machine Images or AMIs) that you can launch new instances from.</p>
<p>It&#8217;s hard to say that making an AMI is difficult, it&#8217;s just a few keystrokes and a coffee break while the image is prepared and stored for your future use. When you begin to manage dozens and dozens of different images this becomes a problem. It became clear to us that we needed to have one AMI to manage, and build every computer from image dynamically. To do this we needed a way to pass specific information to each instance when it started up and then have a tool customize the instance based on the specific information about it. Amazon provides a method to pass specific information to an instance (it&#8217;s called user-data) and the good folks at <a title="Alestic" href="http://alestic.com/">Alestic</a> have made some great AMIs around it with some <a title="Alestic Documentation" href="http://alestic.com/2009/06/ec2-user-data-scripts">good documentation</a>.</p>
<h4>Enter the Puppet Master</h4>
<p><img class="alignright" title="Sock Puppet" src="http://familyhandycrafts.com/wp-content/uploads/2010/01/sockpuppet.jpg" alt="" width="180" height="232" />We have been using a tool called <a title="Puppet" href="http://www.puppetlabs.com/">Puppet</a> for nearly two years now to manage a handful of computers. We selected that to manage the whole lot of Linux computers that we were dealing with. Puppet allows us to describe how a computer should work in a general way. We can make collections of configurations for standard things so it&#8217;s easy to reuse what we create over and over again. Our Puppet configuration is stored in a <a title="Git version control system" href="http://git-scm.com/">Git repository</a> so many administrators and developers can collaborate on it and our server configurations are backed up and version controlled automatically.</p>
<h4>Bringing it all together</h4>
<p>Puppet decides what configuration to use for a computer based on its hostname. We use the EC2 user data to pass a new instance the address of a Puppet server and the hostname that the machine should assume. When it boots up it sets its hostname and checks in to receive the configuration that we&#8217;ve stored for it. All changes to the machine happen through Puppet so we don&#8217;t have to spend a lot of time SSHing in and customizing the machine. It&#8217;s also very easy for us to duplicate a machine for testing or whatever we need.</p>
<p>While we originally did this to make our lives easier as we manage more machines there turned out to be some really cool side effects:</p>
<ul>
<li><strong>Excellent Security: </strong>We don&#8217;t want to store sensitive information in Puppet. This means no passwords or secret stuff. To resolve this we require all developers and administrators to use key-based authentication to get access to the computers via SSH. This is very handy and it eliminates the need to remember passwords or for an administrator to have to reset passwords for users. Someday I would love to take the next step and have all of our users and machines be part of the <a title="Monkeysphere" href="http://web.monkeysphere.info/">Monkeysphere</a>.</li>
<li><strong>Accountability:</strong> All of our configuration is tracked in a Git repository so we can see the history about what has changed on certain hosts and who changed it. Change control occurs automatically with Puppet and it&#8217;s easy to examine and understand what has changed and why it changed.</li>
<li><strong>Repeatability: </strong>By storing all Linux computer configuration in a single place we can easily repeat what we did for one server on another. Puppet institutionalizes all of our Linux knowledge in one place and saves us time every time we have to create a new machine. If you want to see how someone has done something in the past there&#8217;s no more need to dig through emails or documentation, just look at the facts in the Puppet repository and even copy and paste it into your new configuration.</li>
<li><strong>Portability: </strong>We use Puppet to manage much more than just EC2 instances. Physical machines and virtual machines in our <a href="http://www.vmware.com/products/vsphere/esxi-and-esx/index.html">ESX</a> installation are managed this way too. It gives us one tool to take care of any Linux machine we deal with. Puppet also supports other operating systems. We&#8217;re looking to expand our use of it to Mac OS X machines and maybe even Windows sometime soon.</li>
</ul>
<p>There are certainly other ways to solve the problems we&#8217;re up against, but this is the way we chose. We did some extensive evaluation of <a title="Chef" href="http://opscode.com/">Chef</a> (which is a tool like Puppet) and we&#8217;ve used <a title="Rightscale" href="http://www.rightscale.com/">Rightscale</a> before. This sort of thing is becoming very important as we manage more and more computers. I expect we&#8217;ll see a lot of exciting products, techniques, and services in this space as time goes on.</p>
<p>If you have any questions or comments about our setup, or would like to discuss implementing something like this for your business, leave a comment or <a title="Contact Control Group" href="http://www.controlgroup.com/contact">get in touch with us</a>. We&#8217;d love to help.</p>
<br />Filed under: <a href='http://blog.controlgroup.com/category/infrastructure/'>infrastructure</a> Tagged: <a href='http://blog.controlgroup.com/tag/cloud/'>cloud</a>, <a href='http://blog.controlgroup.com/tag/deployment/'>deployment</a>, <a href='http://blog.controlgroup.com/tag/development/'>development</a>, <a href='http://blog.controlgroup.com/tag/linux/'>linux</a>, <a href='http://blog.controlgroup.com/tag/server/'>server</a>, <a href='http://blog.controlgroup.com/tag/storage/'>storage</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/controlgroupblog.wordpress.com/854/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/controlgroupblog.wordpress.com/854/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/controlgroupblog.wordpress.com/854/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/controlgroupblog.wordpress.com/854/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/controlgroupblog.wordpress.com/854/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/controlgroupblog.wordpress.com/854/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/controlgroupblog.wordpress.com/854/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/controlgroupblog.wordpress.com/854/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/controlgroupblog.wordpress.com/854/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/controlgroupblog.wordpress.com/854/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=854&subd=controlgroupblog&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.controlgroup.com/2010/07/29/automated-linux-server-deployment-with-amazon-ec2-and-puppet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99e758aabf068a2ff5103e3cc76eddfb?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">drocamor</media:title>
		</media:content>

		<media:content url="http://controlgroupblog.files.wordpress.com/2010/07/linux-penguin.jpeg?w=253" medium="image">
			<media:title type="html">linux-penguin</media:title>
		</media:content>

		<media:content url="http://familyhandycrafts.com/wp-content/uploads/2010/01/sockpuppet.jpg" medium="image">
			<media:title type="html">Sock Puppet</media:title>
		</media:content>
	</item>
		<item>
		<title>5 Gripes About Buzz. Or How Google Is Unstoppable.</title>
		<link>http://blog.controlgroup.com/2010/02/11/5-gripes-about-buzz-or-how-google-is-unstoppable/</link>
		<comments>http://blog.controlgroup.com/2010/02/11/5-gripes-about-buzz-or-how-google-is-unstoppable/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 17:02:31 +0000</pubDate>
		<dc:creator>Colin O'Donnell</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[google apps]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[messaging]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[social web]]></category>

		<guid isPermaLink="false">http://blog.controlgroup.com/?p=604</guid>
		<description><![CDATA[First off, Buzz has some serious potential. Google gained an incredible amount of ground on Facebook and Twitter with this launch, and I do sense a shark-jumping moment for Facebook. Once the Google App ecosystem takes off, and social games and e-commerce get integrated, there will be a huge erosion in Facebook market share.  People [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=604&subd=controlgroupblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p><span style="text-align:center; display: block;"><a href="http://blog.controlgroup.com/2010/02/11/5-gripes-about-buzz-or-how-google-is-unstoppable/"><img src="http://img.youtube.com/vi/yi50KlsCBio/2.jpg" alt="" /></a></span></p>
<p>First off, <a href="http://www.google.com/buzz">Buzz</a> has some serious potential. Google gained an incredible amount of ground on Facebook and Twitter with this launch, and I do sense a shark-jumping moment for Facebook. Once the <a href="http://mashable.com/2010/02/01/google-apps-store/">Google App</a> ecosystem takes off, and social games and e-commerce get integrated, there will be a huge erosion in Facebook market share.  People want one thing, one place to go, and Gmail is already mandatory.</p>
<ol>
<li>Lets start off easy here: Mobile. Google, you own the platform, how hard would it be to launch with an Android app? In the time it took to do the <a href="http://www.youtube.com/watch?v=m-kcVDNi6eg">marketing piece on the mobile site</a>, Google could have developed a full-fledged app. Instead I have an &#8220;above ground only&#8221; slow-loading mobile web page. <a href="http://blog.controlgroup.com/2010/02/03/love-em-or-hate-em-plugins-are-here-to-stay/">HTML5</a> isn&#8217;t quite here yet &#8211; and Android 1.6 is not supported.</li>
<li>Two way integration! Getting Tweets in Buzz is great, but I still have to go out to Twitter or TweetDeck to post. If I had the option to choose which networks my updates appeared on from within Buzz (Facebook, Twitter, LinkedIn, etc), I would never have to leave Gmail&#8230; except for&#8230;</li>
<li>Where is Facebook? They have a <a href="http://developers.facebook.com/">strong API</a> and a straightforward <a href="http://developers.facebook.com/connect.php">authentication service</a>. Connect to Facebook and never make me go there again. Aggregate and publish (see above).</li>
<li>Buzz for Biz. I know it&#8217;s coming for Google Apps, but get it going already! How about full integration with LinkedIn &#8211; a CRM app would be a really interesting mash-up, as well as bringing all my connections into my address book. No more stale email addresses or phone numbers.</li>
<li>OK, I saved crazy for last. <a href="http://www.google.com/profiles">Google Profile</a>. I am the strongest believer in an open information society – if everyone knows everything about everyone, then we are all equal. I understand that&#8217;s a little overboard, but why should I hide my information when it will only make the web more relevant to me, and get us to our ultimate destination quicker.  But with Buzz, your Google Profile went from obscurity to super relevant. So, quick inventory: Google has information about <em><a href="http://www.google.com/buzz">my friends</a>, </em><em><a href="http://www.google.com/history/">my browsing/search history</a></em> (not to mention <a href="http://code.google.com/speed/public-dns/">DNS info</a>), <em><a href="http://checkout.google.com/">my purchase history</a>, </em><em><a href="http://mail.google.com/">my communications</a>, </em>the <em><a href="http://reader.google.com">news</a> </em>I&#8217;m reading,<em> </em>and <em><a href="http://docs.google.com/">my documents</a>.</em> Now they want to know my age, sex, where I grew up? Are you crazy? Google is holding ALL the cards now. They keep repeating &#8220;<a href="http://investor.google.com/conduct.html">don&#8217;t be evil</a>&#8221; but you know what they say about absolute power&#8230; (did I mention<em> <a href="http://www.google.com/latitude">my location</a></em>?)</li>
</ol>
<p>If history is any indicator of the future, Google will evolve and add features and services. They have done so consistently since inception, and people will choose convenience above all else, including quality and privacy. And I guess I&#8217;m one of them. See you on Buzz.</p>
<p>And if you disagree, see you in the comments!</p>
<br />Filed under: <a href='http://blog.controlgroup.com/category/general/'>general</a> Tagged: <a href='http://blog.controlgroup.com/tag/cloud/'>cloud</a>, <a href='http://blog.controlgroup.com/tag/google-apps/'>google apps</a>, <a href='http://blog.controlgroup.com/tag/linkedin/'>linkedin</a>, <a href='http://blog.controlgroup.com/tag/messaging/'>messaging</a>, <a href='http://blog.controlgroup.com/tag/mobile/'>mobile</a>, <a href='http://blog.controlgroup.com/tag/social-web/'>social web</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/controlgroupblog.wordpress.com/604/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/controlgroupblog.wordpress.com/604/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/controlgroupblog.wordpress.com/604/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/controlgroupblog.wordpress.com/604/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/controlgroupblog.wordpress.com/604/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/controlgroupblog.wordpress.com/604/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/controlgroupblog.wordpress.com/604/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/controlgroupblog.wordpress.com/604/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/controlgroupblog.wordpress.com/604/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/controlgroupblog.wordpress.com/604/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=604&subd=controlgroupblog&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.controlgroup.com/2010/02/11/5-gripes-about-buzz-or-how-google-is-unstoppable/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<georss:point>40.712363 -74.008428</georss:point>
		<geo:lat>40.712363</geo:lat>
		<geo:long>-74.008428</geo:long>
		<media:content url="http://0.gravatar.com/avatar/eecba56bda13e616332d7807684bef95?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">colinodonnell</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/yi50KlsCBio/2.jpg" medium="image" />
	</item>
		<item>
		<title>We&#8217;re Now an Amazon Web Services Partner</title>
		<link>http://blog.controlgroup.com/2009/09/14/were-now-amazon-web-services-partners/</link>
		<comments>http://blog.controlgroup.com/2009/09/14/were-now-amazon-web-services-partners/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 12:30:49 +0000</pubDate>
		<dc:creator>Bob Birga</dc:creator>
				<category><![CDATA[infrastructure]]></category>
		<category><![CDATA[aws]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[partner]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://blog.controlgroup.com/?p=495</guid>
		<description><![CDATA[We at Control Group have believed for some time that Cloud Computing will change the landscape of how enterprise IT works. With this belief and a history of helping enterprises utilize the cloud, we are proud to announce that we have been selected to become official Amazon Web Services (AWS) partners. Working closely with Amazon [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=495&subd=controlgroupblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>We at Control Group have <a href="http://blog.controlgroup.com/2009/08/07/a-look-at-amazons-elastic-load-balancer/">believed</a> <a href="http://blog.controlgroup.com/2009/07/26/how-the-cloud-is-changing-it-services/">for</a> <a href="http://blog.controlgroup.com/2009/06/22/trading-data-centers-for-clouds/">some</a> <a href="http://blog.controlgroup.com/2009/08/28/managing-your-computing-energy-footprint/">time</a> that Cloud Computing will change the landscape of how enterprise IT works. With this belief and a history of helping enterprises utilize the cloud, we are proud to announce that we have been selected to become official <a href="http://aws.amazon.com/">Amazon Web Services</a> (AWS) partners.  Working closely with Amazon Web Services consultants we are able to provide cloud consulting development, integration and migration solutions for a wide range of industries.</p>
<p><a href="http://aws.amazon.com/"><img class="alignright size-full wp-image-496" style="margin-right:10px;margin-left:10px;" title="Amazon Web Services Logo" src="http://controlgroupblog.files.wordpress.com/2009/09/aws_logo_rgb.png?w=250&#038;h=97" alt="Amazon Web Services Logo" width="250" height="97" /></a>In a recent <a href="http://blog.controlgroup.com/2009/07/26/how-the-cloud-is-changing-it-services/">Cloudsourcing</a> event we held at our offices in the Woolworth Building we had the opportunity to meet many people interested in migrating to the cloud. The most common questions that evening seemed to revolve around “is the cloud secure?&#8221; and &#8220;will this work for my industry?” Being <a href="http://www.google.com/apps/intl/en/business/index.html">Google Apps partners</a> and now AWS partners we are able to address client concerns with confidence and provide solutions.</p>
<p>Finding cloud-based solutions and implementing those solutions on the enterprise level can be a challenging task as these are still relatively new technologies. Keeping this in mind, part of the process includes stepping down from the cloud and relying on our team of Project Managers, Account Managers and Engineers along with AWS Consultants. With a solid team we are able to guarantee that a client’s needs and expectations are met in a timely manner.</p>
<p>When you think about the potential for cloud computing, you start to realize the role AWS plays in this game. Cloud computing is just now starting to meet the needs of large corporations and the data center of the future may very well be cloud based. We look forward to forging ahead in this area with Amazon Web Services.</p>
<br />Posted in infrastructure Tagged: aws, cloud, partner, storage <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/controlgroupblog.wordpress.com/495/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/controlgroupblog.wordpress.com/495/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/controlgroupblog.wordpress.com/495/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/controlgroupblog.wordpress.com/495/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/controlgroupblog.wordpress.com/495/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/controlgroupblog.wordpress.com/495/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/controlgroupblog.wordpress.com/495/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/controlgroupblog.wordpress.com/495/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/controlgroupblog.wordpress.com/495/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/controlgroupblog.wordpress.com/495/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=495&subd=controlgroupblog&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.controlgroup.com/2009/09/14/were-now-amazon-web-services-partners/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d41dae93ce0f56af151c5657b4d66383?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Bob Birga</media:title>
		</media:content>

		<media:content url="http://controlgroupblog.files.wordpress.com/2009/09/aws_logo_rgb.png" medium="image">
			<media:title type="html">Amazon Web Services Logo</media:title>
		</media:content>
	</item>
		<item>
		<title>Managing Your Computing Energy Footprint</title>
		<link>http://blog.controlgroup.com/2009/08/28/managing-your-computing-energy-footprint/</link>
		<comments>http://blog.controlgroup.com/2009/08/28/managing-your-computing-energy-footprint/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 14:41:24 +0000</pubDate>
		<dc:creator>Pat Rafferty</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[engineering]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[green]]></category>
		<category><![CDATA[power]]></category>
		<category><![CDATA[printing]]></category>
		<category><![CDATA[EPEAT]]></category>

		<guid isPermaLink="false">http://blog.controlgroup.com/?p=471</guid>
		<description><![CDATA[As summer starts to wind down and the air conditioning is on less and less, your company&#8217;s computing equipment is likely resuming its role as the largest consumer of electricity in the office. And while there&#8217;s not much that can be done to change that, there are a variety of ways to reduce your energy [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=471&subd=controlgroupblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-484" style="border:0;" title="Green Control" src="http://controlgroupblog.files.wordpress.com/2009/08/greencontrol2.gif?w=202&#038;h=60" alt="Green Control" width="202" height="60" />As summer starts to wind down and the air conditioning is on less and less, your company&#8217;s computing equipment is likely resuming its role as the largest consumer of electricity in the office. And while there&#8217;s not much that can be done to change that, there are a variety of ways to reduce your energy use without compromising your company&#8217;s IT needs.</p>
<h2><strong>The Server Room</strong></h2>
<p>Annually, the single greatest consumer of electricity in your office is likely the server room. Between the power hungry server hardware, the UPS with its constant AC-to-DC conversion and the air conditioning running 24 hours a day, 7 days a week, 365.25 days a year, all of that electricity use quickly adds up.</p>
<p>Hands-down, the easiest ways to save energy in your server room is to make sure your server room&#8217;s HVAC is doing its job as efficiently as possible. That means keeping the door closed at all times (and of course making sure there&#8217;s a door in the first place!) (many offices forget this part), keeping the HVAC system well-maintained, and cooling as small of a space as possible.</p>
<p>When buying buying new server hardware, Control Group can help you make the most efficient choices possible… this means anything from buying the right server for the right job (that eight-core print server might be overkill), to outfitting your new server with green-friendly hard drives which consume less power than standard drives. Control Group is an EPEAT Partner Reseller— <a href="http://www.epeat.net">EPEAT</a> provides a &#8220;green&#8221; rating system for IT equipment based on a comprehensive criteria list.</p>
<p>The most efficient server room though, is no server room at all! As more and more businesses move aspects of their business to &#8220;<a href="http://blog.controlgroup.com/2009/06/22/trading-data-centers-for-clouds/">the cloud</a>,&#8221; they require less hardware onsite. Less hardware means lower electricity bills, which means money saved.</p>
<h2><strong>The Workstations</strong></h2>
<p>First off, if you still have any big bulky CRT monitors in your office, their time has most certainly come. They are big, ugly power hogs, and have no right to exist in 2009. No, not even on the intern&#8217;s computer in the janitorial closet. An LCD monitor will pay for itself in power consumption costs alone in under two years. When purchasing an LCD, consider looking into those which have LED-powered backlit displays. Not only do they consume even less power than LCDs using older CCFL technology, but they&#8217;re brighter, contain fewer harmful elements in their manufacturing process, and last longer to boot!</p>
<p><em>Pro-Tip: After you&#8217;ve replaced your CRT monitors, what do you do with them? Control Group works with <a href="http://www.perscholas.org/">Per Scholas</a>, which is a local organization that recycles and re-uses computer equipment and works with New York City schools to provide students with their own computers as well as training.</em></p>
<p>Another great example of a small change that can make a big difference would be to make it office policy to power down computers at the end of the day (or at least the end of the week). For even more energy savings, consider flipping the switch on that power strip your computer is plugged into on top of powering down.</p>
<p>And for those employees who say that shutting down hurts their productivity, tell them to use Windows&#8217; &#8220;hibernate&#8221; feature rather than the &#8220;shut down.&#8221; That will allow them to pick up right where they left off, with all of their AutoCAD windows and dozens of email drafts right where they left them.</p>
<h2><strong>The Office</strong></h2>
<p>One way Control Group saves energy around the office is that we have a &#8220;no personal printers&#8221; policy. We have three printers in the office: a black and white laser printer, and a color laser printer and a large format plotter to help us better support our architecture clients.</p>
<p>Not only does this centralized printing solution help save energy by avoiding having dozens of printers plugged in and on standby 24 hours a day, but it saves money on supplies—no more $18 ink cartridges—and saves us time from having to troubleshoot problematic printers (there&#8217;s a reason desktop printers are so cheap… they&#8217;re cheaply made and break constantly).</p>
<p>Perhaps most importantly, this printing setup also saves a lot of paper. Duplex printing (two-sided) is enabled on our laser printers and we have a dedicated &#8220;scrap paper&#8221; tray that we keep loaded with scrap paper, for those times when you need to print something but it doesn&#8217;t matter how it looks.</p>
<p>We may not be paperless yet, but we&#8217;re well on our way.</p>
<p>Finally, with all of the energy that your office is saving, consider moving over to wind power. Here in New York, ConEd offers a very competitive <a href="http://www.conedisonsolutions.com/business_wind_power.html">Wind Power for Business</a> package. It&#8217;s 100% renewable energy and it&#8217;s easy to switch over.</p>
<p>While wind power may be 10-15% more expensive than coal, depending on how much you&#8217;ve managed to cut your overall power consumption, it&#8217;s entirely possible your company is still spending less on electricity than before even while using wind power. And on top of that, you can tell your customers you&#8217;re ahead of your competitors in reducing your company&#8217;s impact on the environment.</p>
<br />Posted in general Tagged: cloud, engineering, EPEAT, green, power, printing <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/controlgroupblog.wordpress.com/471/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/controlgroupblog.wordpress.com/471/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/controlgroupblog.wordpress.com/471/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/controlgroupblog.wordpress.com/471/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/controlgroupblog.wordpress.com/471/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/controlgroupblog.wordpress.com/471/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/controlgroupblog.wordpress.com/471/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/controlgroupblog.wordpress.com/471/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/controlgroupblog.wordpress.com/471/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/controlgroupblog.wordpress.com/471/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=471&subd=controlgroupblog&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.controlgroup.com/2009/08/28/managing-your-computing-energy-footprint/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d4ba13650fc63f56efddea107aaf148d?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">pat</media:title>
		</media:content>

		<media:content url="http://controlgroupblog.files.wordpress.com/2009/08/greencontrol2.gif" medium="image">
			<media:title type="html">Green Control</media:title>
		</media:content>
	</item>
		<item>
		<title>A Look at Amazon&#8217;s Elastic Load Balancer</title>
		<link>http://blog.controlgroup.com/2009/08/07/a-look-at-amazons-elastic-load-balancer/</link>
		<comments>http://blog.controlgroup.com/2009/08/07/a-look-at-amazons-elastic-load-balancer/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 15:17:12 +0000</pubDate>
		<dc:creator>David Rocamora</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[infrastructure]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[aws]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[coffee]]></category>
		<category><![CDATA[data center]]></category>
		<category><![CDATA[ec2]]></category>
		<category><![CDATA[enterprise]]></category>
		<category><![CDATA[integration]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://blog.controlgroup.com/?p=452</guid>
		<description><![CDATA[We have been doing some work with with Amazon&#8217;s Elastic Computing Cloud (EC2) which allows us to create virtual machines in the cloud in a few seconds. These are great for hosting websites, and what&#8217;s cool about them is that if you get Slashdotted or experience a similar unexpected spike in traffic you can create [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=452&subd=controlgroupblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class="mceTemp">
<dl class="wp-caption alignleft">
<dt class="wp-caption-dt"><img class="size-medium wp-image-455" title="rubber band" src="http://controlgroupblog.files.wordpress.com/2009/08/rubber-band-ball1.jpg?w=280&#038;h=280" alt="The result of Amazon's Elastic Load Balancing?" width="280" height="280" /></dt>
</dl>
</div>
<p>We have been doing some work with with <a href="http://aws.amazon.com/ec2/">Amazon&#8217;s Elastic Computing Cloud</a> (EC2) which allows us to create virtual machines in the cloud in a few seconds. These are great for hosting websites, and what&#8217;s cool about them is that if you get <a href="http://slashdot.org/">Slashdotted</a> or experience a similar unexpected spike in traffic you can create new hosts immediately. Recently Amazon added a new service called <a href="http://aws.amazon.com/elasticloadbalancing/">Elastic Load Balancing</a> (ELB) which can distribute load across hosts. We&#8217;ve been looking at this for some of our recent development and infrastructure projects.</p>
<p>I just read this description of <a href="http://clouddevelopertips.blogspot.com/2009/07/elastic-in-elastic-load-balancing-elb.html">how ELB works</a> by Shlomo Swidler from his Cloud Developer Tips blog. It&#8217;s a great reference.</p>
<p>You pay for ELB by usage just like everything else at <a href="http://aws.amazon.com/">AWS</a>. From Amazon: &#8220;You are charged at $0.025 per hour for each Elastic Load Balancer, plus $0.008 per GB of data transferred through an Elastic Load Balancer.&#8221; For reference, on a deployment project in 2008 our Engineering team used a Cisco load balancer which I imagine cost a few thousand bucks.</p>
<p>Cost isn&#8217;t the only advantage. These can be created and destroyed quickly and remotely, allowing us to work more efficiently and spend <a href="http://blog.controlgroup.com/2009/06/22/trading-data-centers-for-clouds/">less time visiting data centers in the middle of nowhere</a>. This leads to improved quality of service for our clients as we can spend more time consulting on future technology growth plans and less time troubleshooting servers in cold, loud data centers.</p>
<p>This blog post brought to you by the iced coffee I am enjoying in the comfort and quiet of my office while deploying virtual machines!</p>
<br />Posted in development, infrastructure Tagged: amazon, aws, cloud, coffee, data center, ec2, enterprise, integration, server <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/controlgroupblog.wordpress.com/452/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/controlgroupblog.wordpress.com/452/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/controlgroupblog.wordpress.com/452/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/controlgroupblog.wordpress.com/452/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/controlgroupblog.wordpress.com/452/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/controlgroupblog.wordpress.com/452/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/controlgroupblog.wordpress.com/452/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/controlgroupblog.wordpress.com/452/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/controlgroupblog.wordpress.com/452/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/controlgroupblog.wordpress.com/452/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=452&subd=controlgroupblog&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.controlgroup.com/2009/08/07/a-look-at-amazons-elastic-load-balancer/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99e758aabf068a2ff5103e3cc76eddfb?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">drocamor</media:title>
		</media:content>

		<media:content url="http://controlgroupblog.files.wordpress.com/2009/08/rubber-band-ball1.jpg?w=300" medium="image">
			<media:title type="html">rubber band</media:title>
		</media:content>
	</item>
		<item>
		<title>How The Cloud is Changing IT Services</title>
		<link>http://blog.controlgroup.com/2009/07/26/how-the-cloud-is-changing-it-services/</link>
		<comments>http://blog.controlgroup.com/2009/07/26/how-the-cloud-is-changing-it-services/#comments</comments>
		<pubDate>Sun, 26 Jul 2009 16:13:29 +0000</pubDate>
		<dc:creator>Colin O'Donnell</dc:creator>
				<category><![CDATA[infrastructure]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[data center]]></category>
		<category><![CDATA[enterprise]]></category>
		<category><![CDATA[exchange]]></category>
		<category><![CDATA[google apps]]></category>
		<category><![CDATA[integration]]></category>
		<category><![CDATA[messaging]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://blog.controlgroup.com/?p=420</guid>
		<description><![CDATA[Were getting ready for an event with Google and Mozy that we have dubbed &#8220;CloudSourcing&#8221;, taking a note from Gartner and tweaking it a little. Tom Mills from Google and Sean Finnegan from Mozy will be giving an in-depth review of their offerings and how they fit into an agile, post-recession office technology strategy. I&#8217;ll be giving a brief [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=420&subd=controlgroupblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>Were getting ready for an event with <a href="http://www.google.com/apps/intl/en/business/index.html" target="_blank">Google</a> and <a href="http://mozy.com/pro/" target="_self">Mozy</a> that we have dubbed <a href="http://bit.ly/Cloudsourcing" target="_blank">&#8220;CloudSourcing&#8221;</a>, taking a note from <a href="http://blogs.gartner.com/thomas_bittman/2008/11/11/managing-cloudsourcing/" target="_blank">Gartner</a> and tweaking it a little.</p>
<p><a href="http://www.linkedin.com/in/tmillsjr" target="_blank">Tom Mills</a> from Google and <a href="http://www.linkedin.com/in/sfinnegan01" target="_blank">Sean Finnegan</a> from Mozy will be giving an in-depth review of their offerings and how they fit into an agile, post-recession office technology strategy.</p>
<p>I&#8217;ll be giving a brief overview of how I think we arrived at this point in IT and what it means for creative, innovative firms that are trying to do more with less.</p>
<p>In an effort to get my thoughts together and get some feedback, I&#8217;m using this blog post as a draft for the event.</p>
<p><a href="http://bit.ly/Cloudsourcing"><img class="size-full wp-image-433 alignnone" style="margin-top:10px;margin-bottom:10px;border:0;" title="CloudSourcing" src="http://controlgroupblog.files.wordpress.com/2009/07/cloudsourcing-blog-image.gif?w=609&#038;h=90" alt="CloudSourcing" width="609" height="90" /></a></p>
<p>Let me start off by giving a brief overview of our services, and then a little history about the evolution of our offerings:</p>
<p>We provide a number of technical services for our clients in the areas of infrastructure, application development, and industry-focused workflow consulting. As this is New York, we work with a number of creative firms; media, architecture, publishing, and design companies, as well as some key clients in the financial sector. We strive for long-term relationships with our clients, many of whom we&#8217;ve worked with for close to a decade. We have installed and managed hundreds of servers, network devices and application suites, but more recently we&#8217;ve been focusing on helping our clients select, migrate to, integrate, and manage Cloud-based services.</p>
<p>Since the 1990s and the introduction of pervasive bandwidth, we&#8217;ve gone through a number of permutations of the remote server/client model, and much has been written about the benefits and the irony of the shift back to the mainframe/thin client structure of the 1960s. Now everyone is talking about the future of &#8216;<a href="http://en.wikipedia.org/wiki/Cloud_computing" target="_blank">The Cloud</a>&#8216;; a vast array of computing resources, abstracted and presented as a single source to the consumer.</p>
<p>At the turn of the century, we found most small to mid-sized businesses with a pure Local Area Network (LAN), typically comprised of in-house mail – most likely Exchange – and a few other local services: file, print, etc.  A lot of these firms had an internal IT staff or a dedicated consultant to manage their servers, tape backup, networks, and desktops. Only a few were pushing the envelope by leveraging Application Service Providers (ASPs) to deliver back office services.</p>
<p>The risks with this situation were obvious. These systems mostly depended on a single Internet connection, a single building, and a single individual, prone to career changes and untimely vacations.  Remote access to these in-house services was expensive to do right and applications rarely worked as well remotely as they did in the office.</p>
<p>Over the next five years, we saw a gradual shift towards &#8216;Hosted Applications&#8217;. This typically came in the form of a service provider taking a LAN-based solution like <a href="http://www.microsoft.com/exchange/2007/default.mspx" target="_blank">Exchange</a> or <a href="http://sharepoint.microsoft.com/Pages/Default.aspx" target="_blank">SharePoint</a> out of the office and putting it in a data center. In conjunction with this change, we saw the IT services industry begin to shift its focus from in-house IT, or consultants, to <a href="http://en.wikipedia.org/wiki/Managed_services" target="_blank">managed services</a> – companies providing regular systems management remotely.</p>
<p>There were some benefits to this offering: critical applications were not dependent on intermittent Internet connections or over-heated server rooms. Flaky consultants were traded for predictable management services and cost became as regular as the electric bill.</p>
<p>But there were still problems. We had the same old model of doing things, only it was moved out of the business&#8217;s office and into the provider&#8217;s.  Services that were built for an onsite installation and LAN speeds were shifted to a remote location – not always producing the best results. Access to applications designed for the LAN was sometimes unacceptable because of bandwidth and latency. In a similarly narrow view of the problem, Managed Service companies focused on monitoring systems and patching software, maintaining the status quo, without looking at the big picture, or driving the business forward.</p>
<p>Now the next generation of IT services is coming along and delivering on the promise of on-demand, scalable solutions. These services are web-native, built for the Cloud and multi-tenant environments.</p>
<p>As services like <a href="http://googleblog.blogspot.com/" target="_blank">Google Apps</a> and <a href="http://mozy.com/blog/" target="_blank">Mozy</a> were built for the web – not re-purposed LAN applications – they deliver exceptional performance and remain very flexible. <a href="http://www.controlgroup.com/" target="_blank">Control Group</a> has designed our support and project services in a similar way. Our services are built to function efficiently remotely – scaling up when our clients need it, and going away when they don&#8217;t – and also to be flexible and innovative, driving business forward rather than maintaining the status quo.</p>
<p>Using the cloud paradigm, we act as a single source of technology for our clients. We help them run more efficient, profitable businesses by weaving an ever growing selection of web-based services, traditional IT, and industry expertise together, to provide an flexible, competitive business platform.</p>
<br />Posted in infrastructure Tagged: cloud, data center, enterprise, exchange, google apps, integration, messaging, storage <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/controlgroupblog.wordpress.com/420/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/controlgroupblog.wordpress.com/420/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/controlgroupblog.wordpress.com/420/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/controlgroupblog.wordpress.com/420/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/controlgroupblog.wordpress.com/420/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/controlgroupblog.wordpress.com/420/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/controlgroupblog.wordpress.com/420/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/controlgroupblog.wordpress.com/420/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/controlgroupblog.wordpress.com/420/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/controlgroupblog.wordpress.com/420/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=420&subd=controlgroupblog&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.controlgroup.com/2009/07/26/how-the-cloud-is-changing-it-services/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eecba56bda13e616332d7807684bef95?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">colinodonnell</media:title>
		</media:content>

		<media:content url="http://controlgroupblog.files.wordpress.com/2009/07/cloudsourcing-blog-image.gif" medium="image">
			<media:title type="html">CloudSourcing</media:title>
		</media:content>
	</item>
		<item>
		<title>Trading Data Centers For Clouds.</title>
		<link>http://blog.controlgroup.com/2009/06/22/trading-data-centers-for-clouds/</link>
		<comments>http://blog.controlgroup.com/2009/06/22/trading-data-centers-for-clouds/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 14:21:57 +0000</pubDate>
		<dc:creator>Colin O'Donnell</dc:creator>
				<category><![CDATA[infrastructure]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[aws]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[data center]]></category>
		<category><![CDATA[engineering]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://blog.controlgroup.com/?p=336</guid>
		<description><![CDATA[I was having a conversation recently with one of our consultants, David Rocamora, as our team broke down the contents of a start-up&#8217;s data center, when I came to the realization that we may have built our last data center. Now we don&#8217;t really build data centers, but we have racked a lot of servers, storage and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=336&subd=controlgroupblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignright" style="width: 252px"><img class="  " title="your data here" src="http://lh5.ggpht.com/_4JXgndN1GOI/RxN11PL1zzI/AAAAAAAAEJQ/oYvWqN3NT_w/s720/2007_07_21_16-34-54.JPG" alt="your data here." width="242" height="162" /><p class="wp-caption-text">Your Data Here</p></div>
<p>I was having a conversation recently with one of our consultants, <a title="Dave testing storage performance with lmdd" href="http://blog.controlgroup.com/2009/06/08/testing-storage-performance-for-video-with-lmdd/" target="_blank">David Rocamora</a>, as our team broke down the contents of a start-up&#8217;s data center, when I came to the realization that w<em>e may have built our last data center.</em></p>
<p>Now we don&#8217;t really <em>build </em>data centers, but we have racked a lot of servers, storage and network gear around the world in tier 1 data centers for our clients. With the change in the economy and the maturity of several cloud services, the data center that we know and love looks like it&#8217;s going the way of the wood pulp newspaper.</p>
<p>Certainly more data centers than ever are being built: <a title="Google's data center shipping container" href="http://www.datacenterknowledge.com/archives/2009/04/02/inside-a-google-data-center/" target="_blank">Google</a>, Microsoft, <a title="Apple's $1B Data Center" href="http://apple.slashdot.org/story/09/05/26/1815244/Apple-Plans-1-Billion-iDataCenter?from=rss" target="_blank">Apple</a>, and Amazon are soaking up gigawatts (petawatts?) of power like never before. But the days of dressing down in jeans and a sweatshirt and going out to New Jersey or Colorado to rack servers in an earsplitting, freezing cold warehouse of caged servers and blinking lights seems to be drawing to a close.</p>
<p><strong>Some numbers to consider:</strong></p>
<p>This &#8216;scaled down&#8217; dot com we were consolidating, had spent about $500,000 on a few racks of some amazing equipment (Sun, Check Point, etc) only to find out 4 months later they didn&#8217;t need it. Pennies on the dollar. The contract for the floor space, power, and bandwidth goes on for another 8 months and I bet you could buy a modest BMW for what it&#8217;s costing them.</p>
<p>Now a similar sized start-up we just started working with on a really innovative interactive image platform, is using the <a title="What is AWS?" href="http://aws.amazon.com/what-is-aws/" target="_blank">Amazon cloud</a> and <a title="RightScale Features" href="http://www.rightscale.com/products/features/">RightScale</a> and is spending about $50,000 a year on cloud services. No capital outlay.</p>
<p><strong>Flexibility?</strong></p>
<p>The cloud is infinitely more flexible, we can put servers in Europe in a matter of minutes, set up high availability zones in different regions around the country, and if they start to get swamped with business like we think they will, we&#8217;ll be able to turn up as many servers as they need in a few minutes time.</p>
<p>What if the dot com of 4 months ago took off? Order servers, spend capital. Put in a request for more bandwidth, more cage space. Days, maybe weeks go by. Then get out the jeans and sweatshirt and head over to the data center. Earplugs. Man, those servers are loud.</p>
<p>You get the picture. But this is happening so fast it&#8217;s amazing. Six months ago when the dot com was building its data center, the Amazon cloud was still in beta, with no SLA, and it wasn&#8217;t an option for a serious start up. Today, building a data center isn&#8217;t an option for a serious start-up.</p>
<p>Now we have availability zones, provisioning and monitoring tools, the ability to drop terabytes of data into the cloud — <a title="ship your data to AWS" href="http://aws.amazon.com/importexport/" target="_blank">shipped through FedEx</a>! But the real promise is the rich <a title="API Documentation" href="http://aws.amazon.com/documentation/" target="_blank">API</a> and the spirit of community innovation. Companies like RightScale are finding a niche in the cloud, developing something really valuable, and then selling it as a simple service that makes our lives so much easier.</p>
<p>It&#8217;s exciting to see this happen so fast.  To avoid being crushed by this wave, as an IT team, you need to really stay on top of it. IT in our part of the ecosystem is becoming more the art of selecting, deploying, integrating, managing and supporting cloud based services, and much less the craft of building serious web infrastructure.</p>
<p>It&#8217;s a little sad for the hardware geek in all of us, saying goodbye to the roar of the servers, putting down the Velcro ties and picking up some slick provisioning and automation scripts. But I think we could get used to deploying 50 servers in a few keystrokes from a quiet, comfortable seat in the office.</p>
<br />Posted in infrastructure Tagged: amazon, aws, cloud, data center, engineering, server, storage <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/controlgroupblog.wordpress.com/336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/controlgroupblog.wordpress.com/336/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/controlgroupblog.wordpress.com/336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/controlgroupblog.wordpress.com/336/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/controlgroupblog.wordpress.com/336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/controlgroupblog.wordpress.com/336/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/controlgroupblog.wordpress.com/336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/controlgroupblog.wordpress.com/336/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/controlgroupblog.wordpress.com/336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/controlgroupblog.wordpress.com/336/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=336&subd=controlgroupblog&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.controlgroup.com/2009/06/22/trading-data-centers-for-clouds/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eecba56bda13e616332d7807684bef95?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">colinodonnell</media:title>
		</media:content>

		<media:content url="http://lh5.ggpht.com/_4JXgndN1GOI/RxN11PL1zzI/AAAAAAAAEJQ/oYvWqN3NT_w/s720/2007_07_21_16-34-54.JPG" medium="image">
			<media:title type="html">your data here</media:title>
		</media:content>
	</item>
	</channel>
</rss>