<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Control Group &#187; server</title>
	<atom:link href="http://blog.controlgroup.com/tag/server/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.controlgroup.com</link>
	<description>Technology for Big Ideas.</description>
	<lastBuildDate>Tue, 31 Jan 2012 15:14:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<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[cloud]]></category>
		<category><![CDATA[deployment]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[storage]]></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 [...]]]></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=253" 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>

<div class="jwsharethis">
Share this: 
<a target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fblog.controlgroup.com%2F2010%2F07%2F29%2Fautomated-linux-server-deployment-with-amazon-ec2-and-puppet%2F&amp;title=Automated+Linux+Server+Deployment+With+Amazon+EC2+and+Puppet">
<img src="/wp-content/themes/journalist/images/share_icons/digg.png" alt="Share this page via Digg this" />
</a>
<a target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fblog.controlgroup.com%2F2010%2F07%2F29%2Fautomated-linux-server-deployment-with-amazon-ec2-and-puppet%2F&amp;t=Automated+Linux+Server+Deployment+With+Amazon+EC2+and+Puppet">
<img src="/wp-content/themes/journalist/images/share_icons/facebook.png" alt="Share this page via Facebook" />
</a>
<a target="_blank" href="http://twitter.com/home?status=I+like+http%3A%2F%2Fblog.controlgroup.com%2F2010%2F07%2F29%2Fautomated-linux-server-deployment-with-amazon-ec2-and-puppet%2F&amp;title=Automated+Linux+Server+Deployment+With+Amazon+EC2+and+Puppet">
<img src="/wp-content/themes/journalist/images/share_icons/twitter.png" alt="Share this page via Twitter" />
</a>
<a target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&url=http%3A%2F%2Fblog.controlgroup.com%2F2010%2F07%2F29%2Fautomated-linux-server-deployment-with-amazon-ec2-and-puppet%2F&title=Automated+Linux+Server+Deployment+With+Amazon+EC2+and+Puppet&source=Control+Group+Blog">
<img src="/wp-content/themes/journalist/images/share_icons/linkedin.png" alt="Share this with Linked in" />
</a>
</div>]]></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>1</slash:comments>
		</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 [...]]]></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=300" 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>

<div class="jwsharethis">
Share this: 
<a target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fblog.controlgroup.com%2F2009%2F08%2F07%2Fa-look-at-amazons-elastic-load-balancer%2F&amp;title=A+Look+at+Amazon%26%238217%3Bs+Elastic+Load+Balancer">
<img src="/wp-content/themes/journalist/images/share_icons/digg.png" alt="Share this page via Digg this" />
</a>
<a target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fblog.controlgroup.com%2F2009%2F08%2F07%2Fa-look-at-amazons-elastic-load-balancer%2F&amp;t=A+Look+at+Amazon%26%238217%3Bs+Elastic+Load+Balancer">
<img src="/wp-content/themes/journalist/images/share_icons/facebook.png" alt="Share this page via Facebook" />
</a>
<a target="_blank" href="http://twitter.com/home?status=I+like+http%3A%2F%2Fblog.controlgroup.com%2F2009%2F08%2F07%2Fa-look-at-amazons-elastic-load-balancer%2F&amp;title=A+Look+at+Amazon%26%238217%3Bs+Elastic+Load+Balancer">
<img src="/wp-content/themes/journalist/images/share_icons/twitter.png" alt="Share this page via Twitter" />
</a>
<a target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&url=http%3A%2F%2Fblog.controlgroup.com%2F2009%2F08%2F07%2Fa-look-at-amazons-elastic-load-balancer%2F&title=A+Look+at+Amazon%26%238217%3Bs+Elastic+Load+Balancer&source=Control+Group+Blog">
<img src="/wp-content/themes/journalist/images/share_icons/linkedin.png" alt="Share this with Linked in" />
</a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.controlgroup.com/2009/08/07/a-look-at-amazons-elastic-load-balancer/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</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[SAN]]></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 [...]]]></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" 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>

<div class="jwsharethis">
Share this: 
<a target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fblog.controlgroup.com%2F2009%2F08%2F03%2Ftesting-storage-performance-with-iozone%2F&amp;title=Testing+Storage+Performance+with+iozone">
<img src="/wp-content/themes/journalist/images/share_icons/digg.png" alt="Share this page via Digg this" />
</a>
<a target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fblog.controlgroup.com%2F2009%2F08%2F03%2Ftesting-storage-performance-with-iozone%2F&amp;t=Testing+Storage+Performance+with+iozone">
<img src="/wp-content/themes/journalist/images/share_icons/facebook.png" alt="Share this page via Facebook" />
</a>
<a target="_blank" href="http://twitter.com/home?status=I+like+http%3A%2F%2Fblog.controlgroup.com%2F2009%2F08%2F03%2Ftesting-storage-performance-with-iozone%2F&amp;title=Testing+Storage+Performance+with+iozone">
<img src="/wp-content/themes/journalist/images/share_icons/twitter.png" alt="Share this page via Twitter" />
</a>
<a target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&url=http%3A%2F%2Fblog.controlgroup.com%2F2009%2F08%2F03%2Ftesting-storage-performance-with-iozone%2F&title=Testing+Storage+Performance+with+iozone&source=Control+Group+Blog">
<img src="/wp-content/themes/journalist/images/share_icons/linkedin.png" alt="Share this with Linked in" />
</a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.controlgroup.com/2009/08/03/testing-storage-performance-with-iozone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</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[SAN]]></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 [...]]]></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" 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>

<div class="jwsharethis">
Share this: 
<a target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fblog.controlgroup.com%2F2009%2F07%2F21%2Ftesting-storage-performance-with-bonnie%2F&amp;title=Testing+Storage+Performance+with+bonnie%2B%2B">
<img src="/wp-content/themes/journalist/images/share_icons/digg.png" alt="Share this page via Digg this" />
</a>
<a target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fblog.controlgroup.com%2F2009%2F07%2F21%2Ftesting-storage-performance-with-bonnie%2F&amp;t=Testing+Storage+Performance+with+bonnie%2B%2B">
<img src="/wp-content/themes/journalist/images/share_icons/facebook.png" alt="Share this page via Facebook" />
</a>
<a target="_blank" href="http://twitter.com/home?status=I+like+http%3A%2F%2Fblog.controlgroup.com%2F2009%2F07%2F21%2Ftesting-storage-performance-with-bonnie%2F&amp;title=Testing+Storage+Performance+with+bonnie%2B%2B">
<img src="/wp-content/themes/journalist/images/share_icons/twitter.png" alt="Share this page via Twitter" />
</a>
<a target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&url=http%3A%2F%2Fblog.controlgroup.com%2F2009%2F07%2F21%2Ftesting-storage-performance-with-bonnie%2F&title=Testing+Storage+Performance+with+bonnie%2B%2B&source=Control+Group+Blog">
<img src="/wp-content/themes/journalist/images/share_icons/linkedin.png" alt="Share this with Linked in" />
</a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.controlgroup.com/2009/07/21/testing-storage-performance-with-bonnie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</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 10:21:57 +0000</pubDate>
		<dc:creator>Colin ODonnell</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 [...]]]></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>

<div class="jwsharethis">
Share this: 
<a target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fblog.controlgroup.com%2F2009%2F06%2F22%2Ftrading-data-centers-for-clouds%2F&amp;title=Trading+Data+Centers+For+Clouds.">
<img src="/wp-content/themes/journalist/images/share_icons/digg.png" alt="Share this page via Digg this" />
</a>
<a target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fblog.controlgroup.com%2F2009%2F06%2F22%2Ftrading-data-centers-for-clouds%2F&amp;t=Trading+Data+Centers+For+Clouds.">
<img src="/wp-content/themes/journalist/images/share_icons/facebook.png" alt="Share this page via Facebook" />
</a>
<a target="_blank" href="http://twitter.com/home?status=I+like+http%3A%2F%2Fblog.controlgroup.com%2F2009%2F06%2F22%2Ftrading-data-centers-for-clouds%2F&amp;title=Trading+Data+Centers+For+Clouds.">
<img src="/wp-content/themes/journalist/images/share_icons/twitter.png" alt="Share this page via Twitter" />
</a>
<a target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&url=http%3A%2F%2Fblog.controlgroup.com%2F2009%2F06%2F22%2Ftrading-data-centers-for-clouds%2F&title=Trading+Data+Centers+For+Clouds.&source=Control+Group+Blog">
<img src="/wp-content/themes/journalist/images/share_icons/linkedin.png" alt="Share this with Linked in" />
</a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.controlgroup.com/2009/06/22/trading-data-centers-for-clouds/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</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[SAN]]></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 [...]]]></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" 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>

<div class="jwsharethis">
Share this: 
<a target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fblog.controlgroup.com%2F2009%2F06%2F08%2Ftesting-storage-performance-for-video-with-lmdd%2F&amp;title=Testing+Storage+Performance+for+Video+with+lmdd">
<img src="/wp-content/themes/journalist/images/share_icons/digg.png" alt="Share this page via Digg this" />
</a>
<a target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fblog.controlgroup.com%2F2009%2F06%2F08%2Ftesting-storage-performance-for-video-with-lmdd%2F&amp;t=Testing+Storage+Performance+for+Video+with+lmdd">
<img src="/wp-content/themes/journalist/images/share_icons/facebook.png" alt="Share this page via Facebook" />
</a>
<a target="_blank" href="http://twitter.com/home?status=I+like+http%3A%2F%2Fblog.controlgroup.com%2F2009%2F06%2F08%2Ftesting-storage-performance-for-video-with-lmdd%2F&amp;title=Testing+Storage+Performance+for+Video+with+lmdd">
<img src="/wp-content/themes/journalist/images/share_icons/twitter.png" alt="Share this page via Twitter" />
</a>
<a target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&url=http%3A%2F%2Fblog.controlgroup.com%2F2009%2F06%2F08%2Ftesting-storage-performance-for-video-with-lmdd%2F&title=Testing+Storage+Performance+for+Video+with+lmdd&source=Control+Group+Blog">
<img src="/wp-content/themes/journalist/images/share_icons/linkedin.png" alt="Share this with Linked in" />
</a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.controlgroup.com/2009/06/08/testing-storage-performance-for-video-with-lmdd/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Alligator Servus Spotted in the Wild</title>
		<link>http://blog.controlgroup.com/2009/05/15/alligator-servus-spotted-in-the-wild/</link>
		<comments>http://blog.controlgroup.com/2009/05/15/alligator-servus-spotted-in-the-wild/#comments</comments>
		<pubDate>Fri, 15 May 2009 12:00:07 +0000</pubDate>
		<dc:creator>Charlie Miller</dc:creator>
				<category><![CDATA[infrastructure]]></category>
		<category><![CDATA[engineering]]></category>
		<category><![CDATA[omg]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://blog.controlgroup.com/?p=180</guid>
		<description><![CDATA[Thanks to Ivan for sending this one our way. Note the detailed labeling on all hardware in the rack&#8230; We&#8217;ve got a real treat for you today folks. Thanks to the tireless work of our expert trackers, we&#8217;ve managed to photograph the elusive North American Server Room Gator (Alligator Servus). We&#8217;re not the first to find [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to Ivan for sending this one our way. Note the detailed labeling on <strong>all hardware</strong> in the rack&#8230;</p>
<p>We&#8217;ve got a real treat for you today folks. Thanks to the tireless work of our expert trackers, we&#8217;ve managed to photograph the elusive North American Server Room Gator (Alligator Servus). We&#8217;re not the first to find her though as she&#8217;s been tagged for tracking purposes.</p>
<div id="attachment_179" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-179 " title="Alligator Servus" src="http://controlgroupblog.files.wordpress.com/2009/05/img00010.jpg" alt="Alligator Servus spotted in the wild! Note the detailed labeling." width="450" height="337" /><p class="wp-caption-text">Alligator Servus spotted in the wild. Note the detailed labeling.</p></div>
<p>At 1&#8217;1&#8243;, she&#8217;s a healthy beauty. Apparently she&#8217;s pregnant since it looks like she&#8217;s nesting on her traditional nursery, the <a href="http://en.wikipedia.org/wiki/Autoloader_(data_storage_device)">autoloader</a>. Be careful though, they tend to be rather vicious when with young. Hopefully she&#8217;ll be able to hunt down enough snack food remnants to raise a healthy brood.</p>

<div class="jwsharethis">
Share this: 
<a target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fblog.controlgroup.com%2F2009%2F05%2F15%2Falligator-servus-spotted-in-the-wild%2F&amp;title=Alligator+Servus+Spotted+in+the+Wild">
<img src="/wp-content/themes/journalist/images/share_icons/digg.png" alt="Share this page via Digg this" />
</a>
<a target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fblog.controlgroup.com%2F2009%2F05%2F15%2Falligator-servus-spotted-in-the-wild%2F&amp;t=Alligator+Servus+Spotted+in+the+Wild">
<img src="/wp-content/themes/journalist/images/share_icons/facebook.png" alt="Share this page via Facebook" />
</a>
<a target="_blank" href="http://twitter.com/home?status=I+like+http%3A%2F%2Fblog.controlgroup.com%2F2009%2F05%2F15%2Falligator-servus-spotted-in-the-wild%2F&amp;title=Alligator+Servus+Spotted+in+the+Wild">
<img src="/wp-content/themes/journalist/images/share_icons/twitter.png" alt="Share this page via Twitter" />
</a>
<a target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&url=http%3A%2F%2Fblog.controlgroup.com%2F2009%2F05%2F15%2Falligator-servus-spotted-in-the-wild%2F&title=Alligator+Servus+Spotted+in+the+Wild&source=Control+Group+Blog">
<img src="/wp-content/themes/journalist/images/share_icons/linkedin.png" alt="Share this with Linked in" />
</a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.controlgroup.com/2009/05/15/alligator-servus-spotted-in-the-wild/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

