<?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; David Rocamora</title>
	<atom:link href="http://blog.controlgroup.com/author/drocamor/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; David Rocamora</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>Is H.264 the right choice for online video?</title>
		<link>http://blog.controlgroup.com/2010/02/15/is-h-264-the-right-choice-for-online-video/</link>
		<comments>http://blog.controlgroup.com/2010/02/15/is-h-264-the-right-choice-for-online-video/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 14:41:12 +0000</pubDate>
		<dc:creator>David Rocamora</dc:creator>
				<category><![CDATA[design solutions]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[video solutions]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://blog.controlgroup.com/?p=580</guid>
		<description><![CDATA[I wanted to add some thoughts to Chris&#8217;s post about Flash and HTML5. However I should preface this post by saying that HTML5 supporting video is really cool, both technically and because HTML5 is an open standard that anyone can implement for free. As we all know, for the last several years, Flash has been the de [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=580&subd=controlgroupblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>I wanted to add some thoughts to Chris&#8217;s <a href="http://blog.controlgroup.com/2010/02/03/love-em-or-hate-em-plugins-are-here-to-stay/">post about Flash and HTML5</a>. However I should preface this post by saying that HTML5 <a href="http://www.w3schools.com/html5/tag_video.asp">supporting video</a> is really cool, both technically and because HTML5 is an open standard that anyone can implement for free. As we all know, for the last several years, Flash has been the de facto choice for <a href="http://www.adobe.com/devnet/video/">online video delivery</a>. Flash support on different platforms has been pretty good, but end users still don&#8217;t have total flexibility depending on their OS. Until recently, Flash on Linux has been about a version behind the release for Windows or OS X. Even now, Adobe only releases a <a href="http://www.adobe.com/products/flashplayer/systemreqs/#os">player for x86</a>, and the x86_64 version is unsupported <a href="http://labs.adobe.com/downloads/flashplayer10.html">beta software</a>.</p>
<p><img class="alignright" style="margin-left:20px;margin-right:20px;border:0;" title="H.264 logo" src="http://images.apple.com/quicktime/technologies/h264/images/header_icon.png" alt="" width="102" height="163" />Everyone seems to be touting HTML5 video as the &#8220;open&#8221; alternative to the proprietary Flash plugin required for .flv playback in the browser. But how open is H.264, the codec that powers HTML5 video, and the current pick for encoding video for online delivery? Using <a href="http://en.wikipedia.org/wiki/H.264/MPEG-4_AVC">H.264</a> as the codec behind HTML5 video sours things a bit for me. H.264 is encumbered by software patents; to develop or distribute a player or encoder for H.264 you might have to pay a <a href="http://www.mpegla.com/main/programs/AVC/Pages/AgreementExpress.aspx">licensing fee to MPEG-LA</a>. Even though MPEG LA <a href="http://www.mpegla.com/Lists/MPEG%20LA%20News%20List/Attachments/226/n-10-02-02.pdf" target="_blank">announced last week</a> (PDF) that H.264 will remain fee-less for free internet video through 2016, this is not the same as being free or open. MPEG-LA can still go after people that produce the software to encode or decode H.264. And MPEG-LA is not just one organization, it&#8217;s a collection of patent holders that have their own agendas.</p>
<p>All this is a bit of a slap in the face to the open standards that power the web. Imagine if you had to pay a half million dollars to create or display JPEGs, GIFs, or HTML&#8230; The only people that would be able to afford to make software for the web would be huge companies. But what are our alternatives? Beyond <a href="http://www.theora.org/">Ogg Theora</a> and <a href="http://www.matroska.org/">Matroska</a>, the pickings are slim. These codecs are open and free, but not necessarily better than H.264. Plus it would be next to impossible to compete with the <a href="http://www.apple.com/quicktime/technologies/h264/">marketing machine of Apple</a> behind H.264.</p>
<p>Open and free standards have been what has made the Internet successful since its inception. I think it&#8217;s important that users understand this so that the Internet of the future cannot be controlled by corporations with enough cash to cover licensing fees.</p>
<br />Filed under: <a href='http://blog.controlgroup.com/category/design-solutions/'>design solutions</a>, <a href='http://blog.controlgroup.com/category/development/'>development</a>, <a href='http://blog.controlgroup.com/category/video-solutions/'>video solutions</a> Tagged: <a href='http://blog.controlgroup.com/tag/adobe/'>adobe</a>, <a href='http://blog.controlgroup.com/tag/apple/'>apple</a>, <a href='http://blog.controlgroup.com/tag/browsers/'>browsers</a>, <a href='http://blog.controlgroup.com/tag/development/'>development</a>, <a href='http://blog.controlgroup.com/tag/flash/'>flash</a>, <a href='http://blog.controlgroup.com/tag/flex/'>flex</a>, <a href='http://blog.controlgroup.com/tag/video/'>video</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/controlgroupblog.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/controlgroupblog.wordpress.com/580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/controlgroupblog.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/controlgroupblog.wordpress.com/580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/controlgroupblog.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/controlgroupblog.wordpress.com/580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/controlgroupblog.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/controlgroupblog.wordpress.com/580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/controlgroupblog.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/controlgroupblog.wordpress.com/580/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=580&subd=controlgroupblog&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.controlgroup.com/2010/02/15/is-h-264-the-right-choice-for-online-video/feed/</wfw:commentRss>
		<slash:comments>2</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://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://images.apple.com/quicktime/technologies/h264/images/header_icon.png" medium="image">
			<media:title type="html">H.264 logo</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>Testing Storage Performance with iozone</title>
		<link>http://blog.controlgroup.com/2009/08/03/testing-storage-performance-with-iozone/</link>
		<comments>http://blog.controlgroup.com/2009/08/03/testing-storage-performance-with-iozone/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 19:28:45 +0000</pubDate>
		<dc:creator>David Rocamora</dc:creator>
				<category><![CDATA[infrastructure]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[engineering]]></category>
		<category><![CDATA[enterprise]]></category>
		<category><![CDATA[integration]]></category>
		<category><![CDATA[SANs]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://blog.controlgroup.com/?p=416</guid>
		<description><![CDATA[As I&#8217;ve mentioned in previous posts about testing storage performance with lmdd and bonnie++, different applications require different characteristics from storage to provide the best performance. I&#8217;ve highlighted some tests that are good for large streaming files like video, and small file transactions like databases or mail servers. Today I want to look at a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=416&subd=controlgroupblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>As I&#8217;ve mentioned in previous posts about testing storage performance with <a href="http://blog.controlgroup.com/2009/06/08/testing-storage-performance-for-video-with-lmdd/">lmdd</a> and <a href="http://blog.controlgroup.com/2009/07/21/testing-storage-performance-with-bonnie/">bonnie++</a>, different applications require different characteristics from storage to provide the best performance. I&#8217;ve highlighted some tests that are good for large streaming files like video, and small file transactions like databases or mail servers. Today I want to look at a tool that runs a series of tests in many different ways to provide you with a holistic view of what the storage can and can&#8217;t do.</p>
<p>This tool is called <a href="http://www.iozone.org">iozone</a>. iozone is open source and runs on a ton of operating systems (including Windows). It runs several tests which can take some time to complete but provide the best overall view of the capabilities of a piece of storage. For instance, iozone runs a write test with files of different sizes and with different size records (the amount of data written at a time). It does this over and over again with writes, reads, random writes, random reads, and so forth. Since it&#8217;s running all these tests you can see what sorts of operations will have good performance and which ones will not perform so well. Check out the <a href="http://www.iozone.org/docs/IOzone_msword_98.pdf">iozone documentation here</a>.</p>
<p>One really great thing about iozone is that the output it generates can be easily placed in a spreadsheet program like Excel to generate a great 3d diagram describing your storage. Here&#8217;s a diagram I generated from some tests on a Linux server.</p>
<div id="attachment_418" class="wp-caption alignnone" style="width: 460px"><img class="size-full wp-image-418" title="Results of a write test with iozone" src="http://controlgroupblog.files.wordpress.com/2009/07/iozone_write.png?w=450&#038;h=296" alt="Results of a write test with iozone" width="450" height="296" /><p class="wp-caption-text">Results of a write test with iozone</p></div>
<p>This particular server performed quite well with large files and a record size around 1 MB (interesting to note, this is the same storage from the <a href="http://blog.controlgroup.com/2009/06/08/testing-storage-performance-for-video-with-lmdd/">lmdd post</a>. Notice that the parameters I tested with there are the same as the best write that this disk can do according to iozone!).</p>
<p>If you&#8217;ve been following my posts on storage performance testing I hope you&#8217;ve learned about some new tools that you can use to see what&#8217;s going on. I use these on every deployment to make sure we&#8217;re giving our clients solutions that they can depend for performance and reliability. As always, let me know if you have any questions about these tools. Happy testing!</p>
<br />Posted in infrastructure Tagged: database, engineering, enterprise, integration, SANs, server, storage <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/controlgroupblog.wordpress.com/416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/controlgroupblog.wordpress.com/416/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/controlgroupblog.wordpress.com/416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/controlgroupblog.wordpress.com/416/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/controlgroupblog.wordpress.com/416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/controlgroupblog.wordpress.com/416/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/controlgroupblog.wordpress.com/416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/controlgroupblog.wordpress.com/416/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/controlgroupblog.wordpress.com/416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/controlgroupblog.wordpress.com/416/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=416&subd=controlgroupblog&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.controlgroup.com/2009/08/03/testing-storage-performance-with-iozone/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/2009/07/iozone_write.png" medium="image">
			<media:title type="html">Results of a write test with iozone</media:title>
		</media:content>
	</item>
		<item>
		<title>Testing Storage Performance with bonnie++</title>
		<link>http://blog.controlgroup.com/2009/07/21/testing-storage-performance-with-bonnie/</link>
		<comments>http://blog.controlgroup.com/2009/07/21/testing-storage-performance-with-bonnie/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 15:07:35 +0000</pubDate>
		<dc:creator>David Rocamora</dc:creator>
				<category><![CDATA[infrastructure]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[engineering]]></category>
		<category><![CDATA[enterprise]]></category>
		<category><![CDATA[integration]]></category>
		<category><![CDATA[SANs]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://blog.controlgroup.com/?p=333</guid>
		<description><![CDATA[Last time I posted about checking disk performance with lmdd. lmdd is great for checking streaming throughput, but what if you have a different kind of application? Every application accesses storage in different ways: with video we need to be able to provide constant throughput when writing a lot of data to the disk, but [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=333&subd=controlgroupblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>Last time I posted about <a href="http://blog.controlgroup.com/2009/06/08/testing-storage-performance-for-video-with-lmdd/">checking disk performance with lmdd</a>. lmdd is great for checking streaming throughput, but what if you have a different kind of application? Every application accesses storage in different ways: with video we need to be able to provide constant throughput when writing a lot of data to the disk, but other applications may have different storage needs. For example, a database can make lots of very small changes to the data on disk in a short period of time. The best performing disk for a database will probably need to have very low seek time and good transactional performance.</p>
<p><a href="http://www.coker.com.au/bonnie++/">bonnie++</a> is a series of file system tests that focuses on small files. It was designed to behave like a mail server does, creating and dealing with lots of small files (emails). bonnie++ is easy to run and outputs a CSV file that you can view with something like Excel. With the bon_csv2html command you can quickly generate html pages from the CSVs.</p>
<p>Here&#8217;s the output from bonnie++ running on a server:</p>
<div id="attachment_409" class="wp-caption alignnone" style="width: 460px"><img class="size-full wp-image-409" title="bonnie++ Output" src="http://controlgroupblog.files.wordpress.com/2009/07/bonnie_xx_output.png?w=450&#038;h=145" alt="The HTML output of bonnie++ on a Linux Server" width="450" height="145" /><p class="wp-caption-text">The HTML output of bonnie++ on a Linux Server</p></div>
<p>At first glance the output can seem quite cryptic, but if we look close we can see that this provides us a great amount of information about latency and speed on different filesystem operations. I generally run this several times as I make changes to verify that the storage is providing the right performance characteristics. Tweaking a file system to make file system operations happen a few milliseconds faster may seem ridiculous, but in some environments it can make a huge difference.</p>
<p>Next time I&#8217;ll post about a tool that&#8217;s new to me but can test a disk in so many different ways I&#8217;m planning to run it on every system we install from now on.</p>
<br />Posted in infrastructure Tagged: database, engineering, enterprise, integration, SANs, server, storage <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/controlgroupblog.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/controlgroupblog.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/controlgroupblog.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/controlgroupblog.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/controlgroupblog.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/controlgroupblog.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/controlgroupblog.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/controlgroupblog.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/controlgroupblog.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/controlgroupblog.wordpress.com/333/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=333&subd=controlgroupblog&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.controlgroup.com/2009/07/21/testing-storage-performance-with-bonnie/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/2009/07/bonnie_xx_output.png" medium="image">
			<media:title type="html">bonnie++ Output</media:title>
		</media:content>
	</item>
		<item>
		<title>On Being Connected</title>
		<link>http://blog.controlgroup.com/2009/07/13/on-being-connected/</link>
		<comments>http://blog.controlgroup.com/2009/07/13/on-being-connected/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 20:28:33 +0000</pubDate>
		<dc:creator>David Rocamora</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[connectivity]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[history]]></category>

		<guid isPermaLink="false">http://blog.controlgroup.com/?p=364</guid>
		<description><![CDATA[I know the last time I posted here I said I&#8217;d be following up with another technical post, but instead I thought I&#8217;d share an experience I just had as I took a last minute trip for a client. Normally if I take a trip it&#8217;s no big deal. I can write a blog post [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=364&subd=controlgroupblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignright" style="width: 360px"><img title="Do Not Feed The Monkeys" src="http://farm4.static.flickr.com/3568/3667296940_800b2736b3.jpg" alt="" width="350" height="263" /><p class="wp-caption-text">Outside My Hotel in Malaysia – Do Not Feed The Monkeys!</p></div>
<p>I know the <a href="http://blog.controlgroup.com/2009/06/08/testing-storage-performance-for-video-with-lmdd/">last time I posted here</a> I said I&#8217;d be following up with another technical post, but instead I thought I&#8217;d share an experience I just had as I took a last minute trip for a client.</p>
<p>Normally if I take a trip it&#8217;s no big deal. I can write a blog post from where ever I go. My email is online, this blog is online, if I need to access something in my office I can just use our VPN to get connected. To use any of these I&#8217;d just need to have an Internet connection. Unfortunately, this wasn&#8217;t the case when last week I went to a fairly remote part of <a href="http://maps.google.com.my/">Malaysia</a>.</p>
<p>A few coworkers and I were trying to make last minute adjustments to a product that one of our clients is launching. At first I wondered why even send us out there when we can get remote access or talk someone through it on the phone. When I arrived onsite I realized why this wasn&#8217;t an option — getting connected is near impossible there. We could head to a coffee shop and get some free WiFi, but with over twenty hops to servers in the United States and a twelve hour time difference, getting anything done was difficult.</p>
<p>The lack of connectivity was challenging. One of my responsibilities was interfacing with the local IT department and writing some scripts to integrate the client&#8217;s system with existing systems and processes. I quickly realized how much I depend on online references and documentation. When you can barely get connected to look up the answer to a question about syntax you really have to use your head. Not to mention, each software build for the project is about 300 megabytes and getting this from our office in New York was difficult and time consuming.</p>
<p>The idea of ubiquitous Internet connectivity is something that we take for granted. As connection speeds get faster and more reliable we lose efficiencies that we once had. I learned that the Internet is really an extension of my knowledge and a valuable tool that I need to do my job. Being cut off from it was an interesting and overall positive experience. Solving every problem by thinking and working it through was difficult and took more time, but genuinely figuring things out for myself was very rewarding.</p>
<p>Towards the end of my time there we found a cell phone store that sold GSM modems and prepaid 3G SIM cards that allowed us to get connectivity. While this does make the job a lot easier, I&#8217;m glad I had the experience of being mostly cut off from the rest of the net — something that will surely happen less often as the world becomes better connected.</p>
<br />Posted in general Tagged: connectivity, email, history <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/controlgroupblog.wordpress.com/364/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/controlgroupblog.wordpress.com/364/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/controlgroupblog.wordpress.com/364/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/controlgroupblog.wordpress.com/364/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/controlgroupblog.wordpress.com/364/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/controlgroupblog.wordpress.com/364/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/controlgroupblog.wordpress.com/364/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/controlgroupblog.wordpress.com/364/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/controlgroupblog.wordpress.com/364/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/controlgroupblog.wordpress.com/364/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=364&subd=controlgroupblog&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.controlgroup.com/2009/07/13/on-being-connected/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://farm4.static.flickr.com/3568/3667296940_800b2736b3.jpg" medium="image">
			<media:title type="html">Do Not Feed The Monkeys</media:title>
		</media:content>
	</item>
		<item>
		<title>Testing Storage Performance for Video with lmdd</title>
		<link>http://blog.controlgroup.com/2009/06/08/testing-storage-performance-for-video-with-lmdd/</link>
		<comments>http://blog.controlgroup.com/2009/06/08/testing-storage-performance-for-video-with-lmdd/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 13:00:08 +0000</pubDate>
		<dc:creator>David Rocamora</dc:creator>
				<category><![CDATA[infrastructure]]></category>
		<category><![CDATA[video solutions]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[deployment]]></category>
		<category><![CDATA[engineering]]></category>
		<category><![CDATA[enterprise]]></category>
		<category><![CDATA[integration]]></category>
		<category><![CDATA[SANs]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://blog.controlgroup.com/?p=316</guid>
		<description><![CDATA[One of the unique things about how Control Group works is that our focus is much more involved than simply putting in a solution for a client and then moving on. We work with our clients to determine how they work, so we can design IT solutions that really fit their needs. Since we have [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=316&subd=controlgroupblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>One of the unique things about how Control Group works is that our focus is much more involved than simply putting in a solution for a client and then moving on. We work with our clients to determine how they work, so we can design IT solutions that really fit their needs. Since we have partnerships with a variety of vendors, we work with our clients to arrive at the best solutions for their business. This means we do quite a bit of research and planning before we begin a project — and then a great deal of testing during and after we install new hardware or software.</p>
<p>I do some work on implementing <a href="http://blog.controlgroup.com/2009/04/15/advantages-of-storage-networking/">storage systems</a> for our clients, and we&#8217;ve found that different applications have different storage requirements. For example a video post production facility — like the <a href="http://www.controlgroup.com/casestudy/17">facility at WWE</a> — generally needs lots of disk space that is very good at reading and writing large files at high speeds. The storage here needs to provide good streaming throughput, because high quality video files generally have high bit rates, and are being stored or played back from the disk in real-time for ingesting, editing, or playout. If the storage system is not fast enough to read or write the file in real-time, frames will be dropped. This can cause unsatisfactory media files, programs to crash, or audio and video to become out of sync.</p>
<div id="attachment_322" class="wp-caption aligncenter" style="width: 460px"><a rel="attachment wp-att-322" href="http://blog.controlgroup.com/2009/06/08/testing-storage-performance-for-video-with-lmdd/sunfire_x4150_closeup/"><img class="size-full wp-image-322" title="Sun Fire X4150" src="http://controlgroupblog.files.wordpress.com/2009/06/sunfire_x4150_closeup.jpg?w=450&#038;h=359" alt="A Sun Fire X4150 I recently configured. That's some serious storage." width="450" height="359" /></a><p class="wp-caption-text">10,000 RPM SAS disks. That&#39;s some serious storage.</p></div>
<p>Suboptimal read/write performance can become a huge problem. When we put in a new system this is something we need to test. I usually do the test with a tool called <strong>lmdd</strong>.</p>
<p>lmdd comes from the <a href="http://www.bitmover.com/lmbench/">lmbench</a> tools which are provided by Bitmover for benchmarking systems. lmdd is great for testing streaming bandwidth. In most of our engagements with video, we install a <a href="http://www.quantum.com/stornext">Stornext</a> or <a href="http://www.apple.com/xsan/">Xsan</a> filesystem so we&#8217;ll run our tests against this. lmdd will probably work on any filesystem that you can mount on your Mac or Linux computer (Leave a comment if you need a version for Mac OS X, I have one compiled).  lmdd lets us verify exactly what the maximum number of megabytes per second we can push through the storage and point us to where we need to make changes to the hardware or software configuration. I use lmdd like this :</p>
<blockquote><p>lmdd of=/path/to/test_file count=1g</p>
<p>lmdd if=/path/to/test_file</p></blockquote>
<p>The first tests write performance and the second tests read performance. More information about the syntax is available in the <a href="http://www.bitmover.com/lmbench/lmdd.8.html">manual page for lmdd</a>. The results of the command from a server I was testing looked like this:</p>
<blockquote><p>2147.4755 MB in 6.8003 secs, 315.7914 MB/sec</p></blockquote>
<p>lmdd is great because it&#8217;s easy to read. This result shows I could write to the filesystem at 315 megabytes per second. That&#8217;s really fast! This is from a test with a server with a lot of RAM and a special filesystem that took advantage of that cache. When I run it on my Macbook, I get a result like this:</p>
<blockquote><p>18342.6171 MB in 376.7685 secs, 48.6841 MB/sec</p></blockquote>
<p>So the next time you&#8217;re interested in how your storage is performing give lmdd a shot and let me know how it goes. If you&#8217;re looking for more information about storage performance testing then stay tuned; I&#8217;ll be posting about testing storage with tools that benchmark small reads and writes next.</p>
<br />Posted in infrastructure, video solutions Tagged: apple, deployment, engineering, enterprise, integration, SANs, server, storage, video <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/controlgroupblog.wordpress.com/316/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/controlgroupblog.wordpress.com/316/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/controlgroupblog.wordpress.com/316/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/controlgroupblog.wordpress.com/316/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/controlgroupblog.wordpress.com/316/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/controlgroupblog.wordpress.com/316/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/controlgroupblog.wordpress.com/316/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/controlgroupblog.wordpress.com/316/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/controlgroupblog.wordpress.com/316/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/controlgroupblog.wordpress.com/316/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=316&subd=controlgroupblog&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.controlgroup.com/2009/06/08/testing-storage-performance-for-video-with-lmdd/feed/</wfw:commentRss>
		<slash:comments>7</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/06/sunfire_x4150_closeup.jpg" medium="image">
			<media:title type="html">Sun Fire X4150</media:title>
		</media:content>
	</item>
		<item>
		<title>Advantages of Storage Networking</title>
		<link>http://blog.controlgroup.com/2009/04/15/advantages-of-storage-networking/</link>
		<comments>http://blog.controlgroup.com/2009/04/15/advantages-of-storage-networking/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 21:36:27 +0000</pubDate>
		<dc:creator>David Rocamora</dc:creator>
				<category><![CDATA[infrastructure]]></category>
		<category><![CDATA[video solutions]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[integration]]></category>
		<category><![CDATA[SANs]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://blog.controlgroup.com/?p=84</guid>
		<description><![CDATA[I was recently having a conversation with a friend and we both laughed when we thought back to the first five hundred megabyte hard drives that we had owned. Back then, the half-gigabyte drive was ridiculously expensive and physically huge. We both thought that it would be impossible to fill these drives up. This of course was not the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=84&subd=controlgroupblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p><!--StartFragment--></p>
<p class="MsoNormal"><span>I was recently having a conversation with a friend and we both laughed when we thought back to the first five hundred megabyte hard drives that we had owned. Back then, the half-gigabyte drive was ridiculously expensive and physically huge. We both thought that it would be impossible to fill these drives up.</span></p>
<p class="MsoNormal"><span> This of course was not the case. Now you&#8217;re lucky if an application can be installed in less than 500 MB, and as hard disk sizes grow, we find new ways to fill them up with applications, documents, and media. Digital files have become the most valued assets for most of our customers, so the organization, storage, and archiving of data is a serious concern.</span></p>
<p class="MsoNormal"><span> I find that the best way to evaluate storage technologies solutions for our clients is to step back and take a look at the problems the client is looking to solve and the priorities dictated by their business needs. Usually, our clients’ storage needs require a combination of performance, reliability, disaster recovery, scalability, and manageability. Fortunately technology has stepped up to the challenge to handle the increased need for larger, faster, and more reliable storage.</span></p>
<p class="MsoNormal"><span> <strong><span>Storage networking</span></strong><span> is a general term that encompasses many different technologies that provide excellent solutions to modern storage problems. A <strong>storage area network (SAN)</strong> is an architecture in which storage devices are connected in a high-speed, dedicated network and are presented to computers that are part of the same network. Using storage networking, we can accommodate our clients’ performance and reliability needs: by abstracting groups of hard drives as <strong>logical units (LUNs)</strong> we can stripe data across disks to increase speed and add redundancy by storing parity on the disks. This configuration will allow us to rebuild the LUN when a disk fails, without causing downtime or data loss.</span></span></p>
<p class="MsoNormal">
<p class="MsoNormal">
<div id="attachment_91" class="wp-caption alignleft" style="width: 310px"><a rel="attachment wp-att-91" href="http://blog.controlgroup.com/2009/04/15/advantages-of-storage-networking/example_san_logical_diagram/"><img class="size-medium wp-image-91" title="example_san_logical_diagram" src="http://controlgroupblog.files.wordpress.com/2009/04/example_san_logical_diagram.jpg?w=300&#038;h=197" alt="Example SAN Configuration for Final Cut Pro Editing" width="300" height="197" /></a><p class="wp-caption-text">Example SAN Configuration for Final Cut Pro Editing</p></div>
<p>A storage network abstracts the underlying hardware that provides storage services, providing some great advantages for disaster recovery. When we add tape libraries to a SAN we can make backups quickly and efficiently without slowing down the network or computers on it. We can also connect a SAN to another SAN that&#8217;s in a different building or even a different state. This allows us to easily replicate data to a secondary location so our clients can be up and running quickly if there is some kind of catastrophe in the data center.</p>
<p class="MsoNormal"><span>Even the largest SANs will eventually get filled up with data. What happens when it&#8217;s time to increase capacity? With traditional storage, the system is shut down, new equipment is installed, and the data is migrated. This typically involves downtime and runs the risk of data loss if something goes wrong. With a SAN expansion is no problem. Since the storage services are abstracted from the storage hardware it&#8217;s easy to add capacity or replace older equipment, in many cases involving no downtime.</span></p>
<p class="MsoNormal"><span> A SAN also provides centralized management for storage: administrators can look in one place to see the status of all storage in a data center.  This allows businesses to evaluate storage health and utilization, which can prevent problems and help plan for future growth.</span></p>
<p class="MsoNormal"><span> As data becomes a more and more important part of business strategy, it becomes critical for businesses to have larger, faster, and more reliable storage services to keep things operating smoothly. Storage networking is a core component of these strategies. I’ll continue posting about our thoughts and experiences with SAN solutions, and try to shed some light on the storage ecosystem as new technologies emerge.</span></p>
<p><!--EndFragment--></p>
<br />Posted in infrastructure, video solutions Tagged: apple, integration, SANs, storage, technology <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/controlgroupblog.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/controlgroupblog.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/controlgroupblog.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/controlgroupblog.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/controlgroupblog.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/controlgroupblog.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/controlgroupblog.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/controlgroupblog.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/controlgroupblog.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/controlgroupblog.wordpress.com/84/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=84&subd=controlgroupblog&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.controlgroup.com/2009/04/15/advantages-of-storage-networking/feed/</wfw:commentRss>
		<slash:comments>4</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/04/example_san_logical_diagram.jpg?w=300" medium="image">
			<media:title type="html">example_san_logical_diagram</media:title>
		</media:content>
	</item>
	</channel>
</rss>