<?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:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>Stephen Foskett, Pack Rat &#187; Data General Archives  &#8211; Stephen Foskett, Pack Rat</title>
	<atom:link href="http://blog.fosketts.net/tag/data-general/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.fosketts.net</link>
	<description>Understanding the accumulation of data</description>
	<lastBuildDate>Fri, 10 Feb 2012 17:40:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com" />
	<atom:link rel="hub" href="http://superfeedr.com/hubbub" />
			<item>
		<title>The Four Horsemen of Storage System Performance: Never Enough Cache</title>
		<link>http://blog.fosketts.net/2010/10/07/4-horsemen-cache/</link>
		<comments>http://blog.fosketts.net/2010/10/07/4-horsemen-cache/#comments</comments>
		<pubDate>Thu, 07 Oct 2010 14:51:38 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Computer History]]></category>
		<category><![CDATA[Enterprise storage]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Terabyte home]]></category>
		<category><![CDATA[Virtual Storage]]></category>
		<category><![CDATA[4 horsemen]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[CLARiiON]]></category>
		<category><![CDATA[Data General]]></category>
		<category><![CDATA[DRAM]]></category>
		<category><![CDATA[EMC]]></category>
		<category><![CDATA[NAND]]></category>
		<category><![CDATA[RAID]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[Symmetrix]]></category>
		<category><![CDATA[write-back]]></category>
		<category><![CDATA[write-through]]></category>

		<guid isPermaLink="false">http://blog.fosketts.net/?p=3608</guid>
		<description><![CDATA[Perhaps the previous discussion of spindles left you exhausted, imagining a spindly-legged centipede of a storage system, trying and failing to run on stilts. The Rule of Spindles would be the end of the story were it not for the second horseman: Cache. He stands in front of the spindles, quickly dispatching requests using solid state memory rather than spinning disks. Cache also acts as a buffer, allowing writes to queue up without forcing the requesters to wait in line.]]></description>
			<content:encoded><![CDATA[<div class="wp-caption aligncenter" style="width: 410px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; display: block; margin-right: auto; margin-left: auto;"><a href="http://blog.fosketts.net/wp-content/uploads/2010/08/Four-Horsemen-400.png" ><img title="Four Horsemen-400" src="http://blog.fosketts.net/wp-content/uploads/2010/08/Four-Horsemen-400.png" alt="" width="400" height="309" /></a><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">The Four Horsemen of Storage System Performance: These four ugly gentlemen stand between you and your data.</p></div>
<p>Why do some data storage solutions perform better than others? What tradeoffs are made for economy and how do they affect the system as a whole? These questions can be puzzling, but there are core truths that are difficult to avoid. Mechanical disk drives can only move a certain amount of data. RAM caching can improve performance, but only until it runs out. I/O channels can be overwhelmed with data. And above all, a system must be smart to maximize the potential of these components. These are the four horsemen of storage system performance, and they cannot be denied.</p>
<h3>Overcoming the Limits of Spindles</h3>
<p>Perhaps the previous discussion of spindles left you exhausted, imagining a spindly-legged centipede of a storage system, trying and failing to run on stilts. <a href="http://blog.fosketts.net/2010/08/25/4-horsemen-spindles/"  target="_blank">The Rule of Spindles</a> would be the end of the story were it not for the second horseman: Cache. He stands in front of the spindles, quickly dispatching requests using solid state memory rather than spinning disks. Cache also acts as a buffer, allowing writes to queue up without forcing the requesters to wait in line.</p>
<p>Cache may be quick, but practical concerns limit its effectiveness. Solid state memory is available in many types, but all are far more expensive per gigabyte than magnetic hard disk media. DRAM has historically cost 400 times as much as disk capacity, and even NAND flash (the current darling of the industry) is more than 40 times as expensive. Practically speaking, this means that disk devices, from the drives themselves to large enterprise storage arrays, usually include a very small amount of cache relative to their total capacity.</p>
<p>When specifying a storage system, the mathematics of cache and spindles adhere to a simple rule: More is better for performance but worse for the budget. This leads to a trade-off, where a point of diminishing return tells us to stop adding both spindles and cache and accepting the storage system as it is.</p>
<h3>A History of Cache</h3>
<p>Cache was not always as common as it is today. When even a small amount of DRAM cost hundreds of dollars, adding a single RAM chip to a hard disk drive would have broken the bank. So many drives had no cache at all well into the mid 1990&#8242;s. Operating systems of the time used expensive system memory as a buffer for storage operations rather than expecting cache in the disk controller or drive &#8211; remember setting <a href="http://users.cybercity.dk/~bse26236/batutil/help/BUFFERSS.HTM"  target="_blank">the Buffers command in config.sys</a>?</p>
<p>This was not as bad as it seems, at least in theory. Operating systems stand a fighting chance of &#8220;knowing&#8221; what data will be requested next, and could therefore request it ahead of time. They also might get a hint about data that will never be used again and can thus flush that from the so-called buffer cache. Although MS-DOS wasn&#8217;t very good at this, modern systems have greatly advanced in this respect using a technology called demand paging.</p>
<p>Caching at the array was the key differentiator for early enterprise RAID systems, overcoming the punishing slowdowns caused by parity calculations when data was written. EMC adapted their DRAM-based solid-state storage systems to become a cache in front of hard disk drives and the Symmetrix was born. The Data General (now EMC) CLARiiON was notable as well, <a rel="nofollow" href="http://stevetodd.typepad.com/my_weblog/2008/05/clariion-write.html#more"  target="_blank">bringing a large intelligent write cache</a> to the vast market of midrange systems that could never justify the high price of a Symmetrix. Today, all vendors, from IBM to HP to NetApp to HDS, have vast and clever caches.</p>
<p>The importance of cache on enterprise storage performance can not be over-stated. Mix together rotational latency, seek time, and RAID penalty and you get <a rel="nofollow" href="http://blogs.techrepublic.com.com/datacenter/?p=2182"  target="_blank">seriously-compromised I/O response time</a>. But cache can eliminate this penalty entirely, provided there is capacity, by confirming the write and queueing it for later (a concept known as write-back caching). Busy shared storage systems would be simply unusable without cache.</p>
<h3>Five Uses for Disk Buffers</h3>
<p>Hard disk drives today normally contain a small amount of RAM to use as a buffer for I/O requests. This serves the following needs, though not all are found on all drives:</p>
<ol>
<li>A <strong>read cache</strong>, allowing frequently-requested data to be read from memory rather than involving mechanical disk operations</li>
<li>An <strong>I/O-matching</strong> mechanism, allowing slower disks and faster interfaces to work together</li>
<li>A <strong>read-around</strong> (ahead or behind) pre-fetch cache, saving a few blocks around any requested read on the assumption that they will also be requested soon</li>
<li>A <strong>read-after-write cache</strong>, saving recently-written data to serve later read requests</li>
<li>A <strong>command queue</strong>, allowing write commands to be reordered, avoiding the &#8220;<a rel="nofollow" href="http://en.wikipedia.org/wiki/Elevator_seeking"  target="_blank">elevator seeking</a>&#8221; common to early hard disk drives</li>
</ol>
<p>Disk buffer size has expanded rapidly in recent years, with some devices including 64 MB or more or DRAM. <a rel="nofollow" href="http://www.amazon.com/gp/product/B003NSBF32?ie=UTF8&amp;tag=packrat-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B003NSBF32" >Seagate&#8217;s Momentus XT</a> drive even includes 4 GB of NAND flash as a massive read cache!</p>
<h3>Write-Through and Write-Back Cache</h3>
<table border="0">
<tbody>
<tr>
<th colspan="2">There are two basic methods of caching data:</th>
</tr>
<tr>
<td width="50%"><a href="http://static.fosketts.net/wp-content/uploads/2010/10/Write-Through-Cache.png" ><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-thumbnail wp-image-3846" title="Write-Through Cache" src="http://static.fosketts.net/wp-content/uploads/2010/10/Write-Through-Cache-133x150.png" alt="" width="133" height="150" /></a></td>
<td><a href="http://static.fosketts.net/wp-content/uploads/2010/10/Write-Back-Cache.png" ><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-thumbnail wp-image-3845" title="Write-Back Cache" src="http://static.fosketts.net/wp-content/uploads/2010/10/Write-Back-Cache-133x150.png" alt="" width="133" height="150" /></a></td>
</tr>
<tr>
<td>The earliest systems used <strong>read-only</strong> or <strong>write-through</strong> caches. All I/O requests pass through the cache, which usually saves the most recent and serves them up when a read is requested. They don&#8217;t buffer write requests at all, simply passing them through to the storage system to process. They are safe, since the storage device always has a consistent set of committed writes, but they do nothing to offset the RAID penalty.</td>
<td>Most modern storage systems use a <strong>write-back</strong> (also called &#8220;write-behind&#8221;) cache, which acknowledges writes before they are committed to disk. They use non-volatile RAM, battery-backed DRAM, or NAND flash to ensure that data is not lost in the event of a power outage. Though far more effective, this type of memory is also far more costly.</td>
</tr>
</tbody>
</table>
<p>Just about every modern storage array uses caching, and most employ the write-back method to accelerate writes as well as reads. Some have very smart controllers that perform other tricks, but Smart is another Horseman for another day. As mentioned before, RAID systems would be nearly unusable without write-back cache allowing the disks to catch up with random writes.</p>
<h3><strong>Onward: I/O, and Smarts</strong></h3>
<p>The horseman of spindles is harsh, but he does not rule the day. There are many ways to overcome his limits and his three brothers often come into play. These are cache, which bypasses the spindle altogether; I/O, which can constrain even the fastest combination of disk and cache; and the intelligence of the whole system, which limits or accelerates all the rest. We will examine these horsemen in the future!</p>
<p>I&#8217;ve been meaning to write this up for a long time. Thanks for listening and commenting!<br />
<blockquote>Note: Some of these links include affiliate codes that help pay for this blog. For example, <a href="http://www.amazon.com/gp/product/B002Y27P3M?ie=UTF8&tag=packrat-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=B002Y27P3M" target="_blank">buying an Amazon Kindle with this link</a> sends a few bucks my way! But I don't write this blog to make money, and am happy to link to sites and stores that don't pay anything. I like Amazon and buy tons from them, but you're free to buy whatever and wherever you want.</blockquote></p>
<div id="crp_related"><h3>You might also want to read these other posts...</h3><ul><li><a href="http://blog.fosketts.net/2010/08/25/4-horsemen-spindles/"  rel="bookmark" class="crp_title">The Four Horsemen of Storage System Performance: The Rule of Spindles</a></li><li><a href="http://blog.fosketts.net/2010/05/17/hybrid-ssd-hard-disk-drives/"  rel="bookmark" class="crp_title">Hybrid SSD/Hard Disk Drives: This Time For Sure!</a></li><li><a href="http://blog.fosketts.net/2007/08/14/commercial-ssds-are-here/"  rel="bookmark" class="crp_title">Commercial SSDs Are Here?</a></li><li><a href="http://blog.fosketts.net/2010/10/27/4-horsemen-io/"  rel="bookmark" class="crp_title">The Four Horsemen of Storage System Performance: I/O As a Chain of Bottlenecks</a></li><li><a href="http://blog.fosketts.net/2008/10/22/flash-disk-cache/"  rel="bookmark" class="crp_title">Is Flash A Disk Or A Cache?</a></li></ul></div><script src="http://feeds.feedburner.com/~s/sfoskett?i=http://blog.fosketts.net/2010/10/07/4-horsemen-cache/" type="text/javascript" charset="utf-8"></script><hr />
<p><small>© sfoskett for <a href="http://blog.fosketts.net">Stephen Foskett, Pack Rat</a>, 2010. |
<a href="http://blog.fosketts.net/2010/10/07/4-horsemen-cache/">The Four Horsemen of Storage System Performance: Never Enough Cache</a>
<br/>
This post was categorized as <a href="http://blog.fosketts.net/category/everything/computerhistory/" title="View all posts in Computer History" rel="category tag">Computer History</a>, <a href="http://blog.fosketts.net/category/everything/enterprisestorage/" title="View all posts in Enterprise storage" rel="category tag">Enterprise storage</a>, <a href="http://blog.fosketts.net/category/everything/personal/" title="View all posts in Personal" rel="category tag">Personal</a>, <a href="http://blog.fosketts.net/category/everything/terabytehome/" title="View all posts in Terabyte home" rel="category tag">Terabyte home</a>, <a href="http://blog.fosketts.net/category/everything/virtualstorage/" title="View all posts in Virtual Storage" rel="category tag">Virtual Storage</a>. Each of my categories has its own feed if you'd like to filter out or focus on posts like this.<br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://blog.fosketts.net/2010/10/07/4-horsemen-cache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[4 Horsemen]]></series:name>
	</item>
		<item>
		<title>Of Emulated Fibre Channel, Virtualization, And The Right Tool For The Job</title>
		<link>http://blog.fosketts.net/2008/12/12/emulated-fibre-channel-virtualization/</link>
		<comments>http://blog.fosketts.net/2008/12/12/emulated-fibre-channel-virtualization/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 17:00:44 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Computer History]]></category>
		<category><![CDATA[Enterprise storage]]></category>
		<category><![CDATA[Gestalt IT]]></category>
		<category><![CDATA[Virtual Storage]]></category>
		<category><![CDATA[3PAR]]></category>
		<category><![CDATA[Alex McDonald]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[Celerra]]></category>
		<category><![CDATA[Chuck Hollis]]></category>
		<category><![CDATA[CIFS]]></category>
		<category><![CDATA[CLARiiON]]></category>
		<category><![CDATA[Compellent]]></category>
		<category><![CDATA[Data General]]></category>
		<category><![CDATA[Dell]]></category>
		<category><![CDATA[EMC]]></category>
		<category><![CDATA[EqualLogic]]></category>
		<category><![CDATA[FAS]]></category>
		<category><![CDATA[Fibre Channel]]></category>
		<category><![CDATA[HADA]]></category>
		<category><![CDATA[iSCSI]]></category>
		<category><![CDATA[Kostadis Russos]]></category>
		<category><![CDATA[NetApp]]></category>
		<category><![CDATA[NFS]]></category>
		<category><![CDATA[RAID]]></category>
		<category><![CDATA[Storagebod]]></category>
		<category><![CDATA[Symmetrix]]></category>
		<category><![CDATA[Tony Asaro]]></category>
		<category><![CDATA[WAFL]]></category>

		<guid isPermaLink="false">http://blog.fosketts.net/?p=1226</guid>
		<description><![CDATA[EMC&#8217;s Chuck Hollis is one smart guy, and a very verbose blogger. As usual, he sparked a bit of a storm recently when comparing unified storage on EMC&#8217;s Celerra NX4 to NetApp&#8217;s multiprotocol FAS2020 filer. But it was one phrase in particular that got the attention of Alex McDonald and Kostadis Russos of NetApp, Martin/Storagebod, and Tony [...]]]></description>
			<content:encoded><![CDATA[<p>EMC&#8217;s Chuck Hollis is one smart guy, and a very verbose blogger. As usual, he sparked a bit of a storm recently when <a href="http://chucksblog.emc.com/chucks_blog/2008/12/dell-emc-and-the-new-nx4.html"  target="_blank">comparing unified storage on EMC&#8217;s Celerra NX4 to NetApp&#8217;s multiprotocol FAS2020 filer</a>. But it was one phrase in particular that got the attention of <a href="http://blogs.netapp.com/shadeofblue/2008/12/mad-blog-the-e.html"  target="_blank">Alex McDonald</a> and <a href="http://blogs.netapp.com/extensible_netapp/2008/12/mad-blog-chuck.html"  target="_blank">Kostadis Russos</a> of NetApp, <a rel="nofollow" href="http://storagebod.typepad.com/"  target="_blank">Martin/Storagebod</a>, and <a href="http://contemplatingit.com/"  target="_blank">Tony Asaro</a>: &#8220;just because a vendor says they can emulate FC SAN behavior doesn&#8217;t mean it&#8217;s a real FC SAN.&#8221;</p>
<p>What was he getting at? Read <a href="http://chucksblog.emc.com/chucks_blog/2008/12/dell-emc-and-the-new-nx4.html"  target="_blank">the comments</a> in Chuck&#8217;s post and you&#8217;ll understand his implication: Chuck suggests that NetApp &#8220;emulates&#8221; Fibre Channel in their FAS/OnTap devices on top of the WAFL &#8220;file system&#8221;, while EMC&#8217;s AX storage (behind the NX4) uses &#8220;real&#8221; Fibre Channel, so it&#8217;s better. He goes on to say that EMC is doing a brisk business replacing misfit NetApp FC arrays with real FC kit from EMC. But, as is so often the case, the truth is a little more complex than this: <strong>All enterprise storage arrays &#8220;emulate&#8221; Fibre Channel drives to one extent or another, and using the wrong tool for the job will always lead to trouble</strong>.</p>
<p><span id="more-1226"></span></p>
<h3 class="post-subhead">Is It Real Or Is It Virtual?</h3>
<p>Let&#8217;s knock one thing out right away: Chuck is right, <strong>NetApp </strong><em><strong>is</strong></em><strong> emulating Fibre Channel drives</strong> with their FAS arrays. They really <em>do</em> lay out chunks of storage on something kind of like a file system with a bunch of logic mixed in and then pretend that this space is a plain-jane SCSI drive connected over Fibre Channel. And I&#8217;ll add to the &#8220;scandal&#8221; by pointing out that NetApp does exactly the same thing with their iSCSI drives!</p>
<p>Now let&#8217;s move on to an even more important point: <strong>All modern storage arrays emulate SCSI drives</strong>! That&#8217;s right, every enterprise storage array is lying, pretending to serve up basic drives but really slicing and dicing them in the background for their own nefarious purposes!</p>
<p>Who is responsible for this deceit? I place the blame on a few: <a rel="nofollow" href="http://www.eecs.berkeley.edu/Pubs/TechRpts/1987/CSD-87-391.pdf"  target="_blank">Patterson, Gibson, and Katz</a> started the game with their so-called RAID concept, which kicked things off by allowing a few drives to pretend to be a single one. Data General implemented this with cache in their oh-so-clever <a href="http://blog.fosketts.net/2008/11/15/top-ten-storage-hardware/"  target="_blank">HADA</a>, further separating us from The True Disk. But the worst was EMC, with their fully-virtualized Symmetrix array, where there was no definite relationship at all between the LUNs presented to servers and the disks that do all the real work. Some folks would even go so far as to praise this type of <a href="http://blog.fosketts.net/2008/09/14/turning-page-raid/"  target="_self">post-RAID</a> virtualized storage as <a href="http://blog.fosketts.net/2008/11/15/top-ten-storage-hardware/"  target="_blank">innovative</a>!</p>
<p>NetApp takes this &#8220;automated lying&#8221; to the extreme, forcing their innocent hardware to take honest, well-laid-out blocks of <a href="http://blogs.netapp.com/dave/2008/12/is-wafl-a-files.html"  target="_blank">intelligent WAFL space</a> and twist them into vast tracts of dumb pretend-disks. <strong>The nerve!</strong> Compellent, 3PAR, Dell/EqualLogic, and the rest are just as bad, scattering blocks of data willy-nilly across their disks in so-called &#8220;<a href="http://www.storagerap.com/2008/12/basics-of-wide-striping-laying-out-data-in-chunklets.html"  target="_blank">wide stripes</a>&#8220;. But don&#8217;t let Chuck&#8217;s misdirection fool you: EMC is just as guilty with each of their different storage platforms, masquerading as disk drives or file servers and intelligently managing storage underneath! And don&#8217;t get me started on the twisted things VMware does to storage!</p>
<p>Modern? Feh! Let&#8217;s all hope Apple starts producing their <a href="http://blog.fosketts.net/2008/02/19/apple-revs-xsan-and-kills-xserve-raid/"  target="_self">no-feature Xserve RAID</a> again!</p>
<h3 class="post-subhead">Waiting On Angels</h3>
<p>So every modern array emulates disks. What was Chuck&#8217;s point again? Oh yeah, that the AX Fibre Channel storage used by EMC&#8217;s NX4 is superior to the integrated Fibre Channel capability of the NetApp FAS2020! I&#8217;m sure he&#8217;s right for some use cases and wrong for others. FC on the FAS2020 is a perfect match for some, and the NX4/AX wins in a landslide in some circumstances.</p>
<p>The crux of the argument is the fact that NetApp does all sorts of stuff behind the scenes build and support an FC LUN that the EMC AX FC array doesn&#8217;t do. So, although it wouldn&#8217;t be fair to say that one was &#8220;emulated&#8221; and another was not, Chuck would be correct in saying that an FC LUN on an AX is more &#8220;real&#8221; than one on a NetApp FAS. <strong>But arguing over technicalities like this is all <a href="http://www.straightdope.com/columns/read/1008/did-medieval-scholars-argue-over-how-many-angels-could-dance-on-the-head-of-a-pin"  target="_blank">angels and pins</a> and doesn&#8217;t matter in the real world</strong>!</p>
<p>What does matter? In block storage, latency is king. Generally speaking, more cogs and wheels leads to more latency. This is why storage arrays rely so much on large, intelligent caches and vendors are experimenting with all sorts of <a href="http://blogs.netapp.com/storage_nuts_n_bolts/2008/08/performance-acc.html"  target="_blank">cool caching technology</a>. But, ignoring cache, <strong>high-end arrays generally have worse latency than low-end ones</strong> because they have all sorts of translation and virtualization going on in the background. In any I/O situation, increased latency hurts throughput and the perception of performance. And there comes a point when block applications give up waiting and it&#8217;s &#8220;game over, man!&#8221;</p>
<p>I remember migrating from an old CLARiiON 3100 to a brand new Symmetrix 3930 and watching the Symmetrix choke on the incoming data stream. It just couldn&#8217;t write fast enough to handle full streaming reads from the (old-tech) CLARiiON. But once everything was migrated and running, the Symmetrix, with its massive (for the time) 16 GB of cache, widely-spaced data layout, and multiple internal channels, completely destroyed the CLARiiON in real-world performance. This pattern continues today, with devices like the DMX and USP offering much better real-world performance than benchmarks or theoretical techno-arguments would suggest.</p>
<h3 class="post-subhead">So Which Is Better?</h3>
<p>But Chuck and the rest were not talking about high-end stuff here. They are comparing the architecture of entry-level enterprise kit and drawing conclusions about which is best. I personally don&#8217;t care what the internals of the system look like. I care how well it works.</p>
<p>I have personally seen Microsoft Exchange running on low-end FC-connected NetApp FAS arrays, and it worked great. I also helped a customer migrate off of EMC AX that didn&#8217;t give them the performance they needed for their databases. In truth, <strong>lower-end gear is often over-sold</strong> and unable to deliver the performance, features, and reliability specified on data sheets and in vendor presentations.</p>
<p>That&#8217;s right, there&#8217;s more to this picture than raw performance. Consider manageability, for one. NetApp is offering a single-interface integrated system with all protocols (CIFS, NFS, iSCSI, and FC) available from one device. They also offer similar levels of integration for their (really nice) snapshot, replication, and deduplication technology. WAFL is busy doing a lot of great stuff, so I really wouldn&#8217;t be surprised if EMC&#8217;s less-integrated NX/AX offering beats them on performance at the same price point. <strong>Which is more important to you, integration, performance, or features</strong>? And I bet that, if you spent a bit more on a higher-end NetApp box, you could have it all.</p>
<p>On the flip side, EMC is offering a really compelling entry-enterprise combination at a nice price point. The latest NX should be on everyone&#8217;s NAS short list, and I&#8217;m sure the simple FC of the AX array would work well in a smallish Exchange, VMware, or SQL Server environment. It&#8217;s not as unified as NetApp&#8217;s offering management- or feature-wise, but it&#8217;s still pretty good.</p>
<p>Pick the right tool for the job, though. Neither the NX4 nor the FAS2020 is a good fit for a high-I/O application, and that&#8217;s a fact!</p>
<blockquote><p>This post can also be found on <a href="http://gestaltit.com"  target="_blank">Gestalt IT</a>: <a href="http://gestaltit.com/tech/storage/stephen/of-emulated-fibre-channel-virtualization-and-the-right-tool-for-the-job/" >Of Emulated Fibre Channel, Virtualization, And The Right Tool For The Job</a></p>
</blockquote>
<div id="crp_related"><h3>You might also want to read these other posts...</h3><ul><li><a href="http://blog.fosketts.net/2008/08/28/grapples-tangelos-impossible-compare-fairly/"  rel="bookmark" class="crp_title">Grapples and Tangelos: Why it&#8217;s Impossible to Compare Fairly</a></li><li><a href="http://blog.fosketts.net/2009/02/05/difference-integration-frankenstein/"  rel="bookmark" class="crp_title">The Difference Between &#8220;Integration&#8221; and &#8220;Frankenstein&#8221;</a></li><li><a href="http://blog.fosketts.net/2008/07/18/which-storage-protocol-vmware-2/"  rel="bookmark" class="crp_title">Which Storage Protocol For VMware?</a></li><li><a href="http://blog.fosketts.net/2008/10/16/fcoe-versus-iscsi/"  rel="bookmark" class="crp_title">Is the FCoE Starting Pistol Aimed at iSCSI?</a></li><li><a href="http://blog.fosketts.net/2008/02/22/vmware-storage-tidbits/"  rel="bookmark" class="crp_title">VMware Storage Tidbits</a></li></ul></div><script src="http://feeds.feedburner.com/~s/sfoskett?i=http://blog.fosketts.net/2008/12/12/emulated-fibre-channel-virtualization/" type="text/javascript" charset="utf-8"></script><hr />
<p><small>© sfoskett for <a href="http://blog.fosketts.net">Stephen Foskett, Pack Rat</a>, 2008. |
<a href="http://blog.fosketts.net/2008/12/12/emulated-fibre-channel-virtualization/">Of Emulated Fibre Channel, Virtualization, And The Right Tool For The Job</a>
<br/>
This post was categorized as <a href="http://blog.fosketts.net/category/everything/computerhistory/" title="View all posts in Computer History" rel="category tag">Computer History</a>, <a href="http://blog.fosketts.net/category/everything/enterprisestorage/" title="View all posts in Enterprise storage" rel="category tag">Enterprise storage</a>, <a href="http://blog.fosketts.net/category/gestaltit/" title="View all posts in Gestalt IT" rel="category tag">Gestalt IT</a>, <a href="http://blog.fosketts.net/category/everything/virtualstorage/" title="View all posts in Virtual Storage" rel="category tag">Virtual Storage</a>. Each of my categories has its own feed if you'd like to filter out or focus on posts like this.<br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://blog.fosketts.net/2008/12/12/emulated-fibre-channel-virtualization/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>Top Ten Innovative Enterprise Storage Hardware Products</title>
		<link>http://blog.fosketts.net/2008/11/15/top-ten-storage-hardware/</link>
		<comments>http://blog.fosketts.net/2008/11/15/top-ten-storage-hardware/#comments</comments>
		<pubDate>Sat, 15 Nov 2008 22:27:25 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Computer History]]></category>
		<category><![CDATA[Enterprise storage]]></category>
		<category><![CDATA[2311]]></category>
		<category><![CDATA[Adaptec]]></category>
		<category><![CDATA[Auspex]]></category>
		<category><![CDATA[Brocade]]></category>
		<category><![CDATA[Celerra]]></category>
		<category><![CDATA[Centera]]></category>
		<category><![CDATA[CLARiiON]]></category>
		<category><![CDATA[Data General]]></category>
		<category><![CDATA[DEC]]></category>
		<category><![CDATA[DLT]]></category>
		<category><![CDATA[EMC]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[LTO]]></category>
		<category><![CDATA[McData]]></category>
		<category><![CDATA[NetApp]]></category>
		<category><![CDATA[NFS]]></category>
		<category><![CDATA[RAID]]></category>
		<category><![CDATA[RAMAC]]></category>
		<category><![CDATA[SCSI]]></category>
		<category><![CDATA[Seagate]]></category>
		<category><![CDATA[Shugart]]></category>
		<category><![CDATA[StorageTek]]></category>
		<category><![CDATA[SVC]]></category>
		<category><![CDATA[Symmetrix]]></category>
		<category><![CDATA[TK50]]></category>
		<category><![CDATA[top ten]]></category>

		<guid isPermaLink="false">http://blog.fosketts.net/?p=1038</guid>
		<description><![CDATA[Looking around at the enterprise storage landscape, it is plain that certain archetypes rule: Monolithic enterprise arrays, dual-controller modular arrays, standard-sized hard disk units, NAS servers, tape libraries. Are these really the optimal designs for storage in our modern open systems world? On the contrary, I suggest that the enterprise storage world we know was [...]]]></description>
			<content:encoded><![CDATA[<p>Looking around at the enterprise storage landscape, it is plain that certain archetypes rule: Monolithic enterprise arrays, dual-controller modular arrays, standard-sized hard disk units, NAS servers, tape libraries. Are these really the optimal designs for storage in our modern open systems world?</p>
<p>On the contrary, I suggest that <strong>the enterprise storage world we know was shaped by singular innovative products of the past</strong>. Without these, the IT world might look very different.</p>
<blockquote><p>While you&#8217;re at it, check out my list of the <a href="http://blog.fosketts.net/2008/12/06/top-ten-coolest-enterprise-storage-flops/" >coolest enterprise storage flops!</a></p>
</blockquote>
<p>So let&#8217;s take a walk through history, identifying the ten most innovative and important enterprise storage hardware products. But let me note first that this list could be 100 items long, and we all have our favorites. Lots of the storage blogging world <a href="http://www.storagerap.com/2008/11/wheres-this-going-to-go-rolling-with-storage-innovation.html"  target="_blank">contributed their ideas</a>, too!<span id="more-1038"></span>  So I&#8217;m setting some arbitrary rules to keep myself on track:</p>
<ol>
<li>The products have to be reflected in the shape of modern enterprise storage for open systems. If their day came and went, they&#8217;re not listed here. </li>
<li>Hardware only &#8211; I&#8217;m working on another list for software! </li>
<li>Listed products have to have been successful in the market (or they&#8217;d probably fail rule number 1 anyway), so I&#8217;ll put together a list of cool flops later.</li>
<li>For product families, I tried to pick the most influential and innovative 2member.</li>
<li>This is an enterprise storage list &#8211; items have to be used in big companies, not little PCs.</li>
<li>Only one product per company (sorry, IBM and EMC!)</li>
</ol>
<p>So without further ado, on with the list!</p>
<h3 class="post-subhead">1964 IBM 2311</h3>
<p><a rel="nofollow" href="http://commons.wikimedia.org/wiki/Image:IBM_2311_memory_unit.JPG" ><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="alignright size-medium wp-image-1109" title="450px-ibm_2311_memory_unit" src="http://blog.fosketts.net/wp-content/uploads/2008/11/450px-ibm_2311_memory_unit-225x300.jpg" alt="" width="81" height="108" /></a>Let&#8217;s get one thing straight: IBM is responsible for much of modern enterprise computing, so it&#8217;s no surprise that when it comes to storage, they developed just about everything, including disk drives, floppies, tapes, arrays, and libraries. So why pick this particular piece of kit? Prior to 1964, computer components were developed as a set (the 350 storage system went with the 305 RAMAC, for example), but the 2311 changed that. It was a generic storage device, plug-compatible with a range of computers. If you claimed that the 2311 was the common ancestor of all modern enterprise storage, I would certainly agree with you!</p>
<p>Other notable IBM products worth mentioning:</p>
<ul>
<li>The original 1956 RAMAC 350 disk drive unit</li>
<li>The 1961 301, which used a separate arm and head for each platter (like every disk drive produced since)</li>
<li>9-track tape, which dominated from 1964 until the 1/2-inch tape revolution in the 1990s</li>
<li>The 1970 3330, which added error correction and remained in production for 13 years</li>
<li>The 1971 introduction of the 23FD floppy disk drive</li>
<li>The 1973 3430, whose &#8220;30/30&#8243; code name caused people to refer to hard drives as &#8220;Winchesters&#8221; </li>
<li>1974&#8242;s 3830 &#8220;MSS&#8221; tape library</li>
<li>The 1980 3380, which introduced film-head technology</li>
<li>2003&#8242;s SAN Volume Controller, the first successful SAN virtualization product (after many others failed!)</li>
</ul>
<h3 class="post-subhead">1976 Shugart SA-400 minifloppy</h3>
<p><a href="http://blog.fosketts.net/wp-content/uploads/2008/11/shugart_sa400.jpg" ><img style=' float: left; padding: 4px; margin: 0 7px 2px 0;'  class="size-medium wp-image-1107 alignleft" title="shugart_sa400" src="http://blog.fosketts.net/wp-content/uploads/2008/11/shugart_sa400.jpg" alt="" width="173" height="153" /></a></p>
<p>Alan Shugart&#8217;s floppy drive was a massive hit in the home computing market, but why include it in a list of enterprise storage technologies? Because its storage interface set the standard for plug- and protocol-compatible storage in the nascent microcomputer world.</p>
<p>Designing a general product for use in a multitude of systems was truly innovative, and many later computers were literally designed around both the concept and physical form factor of Shugart&#8217;s drive. Simply put, this fat floppy drive inspired computer designers to create computers that could accept standard peripherals, the very definition of open systems. The definition of &#8220;peripheral&#8221; would soon grow to include standard I/O devices like storage, terminals, printers, communications gear, and everything else we know today.</p>
<h3 class="post-subhead">1980 Seagate ST-506</h3>
<p><a href="http://blog.fosketts.net/wp-content/uploads/2008/11/st506.jpg" ><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="alignright size-medium wp-image-1106" title="st506" src="http://blog.fosketts.net/wp-content/uploads/2008/11/st506-300x225.jpg" alt="" width="180" height="135" /></a></p>
<p>Shugart left his company in 1979, founding Seagate Technology. That company&#8217;s first product was the ST-506, a 5 MB hard disk drive that shared its physical shape with the SA-400 and used <a href="http://www.pcguide.com/ref/hdd/if/obsoST506-c.html"  target="_blank">a similar interface</a>.</p>
<p>Like the floppy, Shugart&#8217;s hard drive set the standard for microcomputers, eventually finding its way into enterprise systems, and <a href="http://storageeffect.com/2008/04/23/seagate-disk-drives-over-1-billion-served/"  target="_blank">catapulting Seagate</a> to its current position of disk drive leadership. Higher-capacity derivatives of the ST-506 were fitted with interfaces using Larry Boucher of Adaptec&#8217;s SCSI protocol, which continues in use even today. Although the ST-506 wasn&#8217;t a &#8220;smart&#8221; drive, the ecosystem that developed around it was critical.</p>
<h3 class="post-subhead">1984 DEC TK50</h3>
<p>Digital Equipment&#8217;s introduction of the MicroVAX II in 1985 was accompanied by a new half-inch <a rel="nofollow" href="http://research.microsoft.com/~gbell/digital/timeline/1984-6.htm"  target="_blank">backup tape drive and cartridge</a> called the <a rel="nofollow" href="http://en.wikipedia.org/wiki/Digital_Linear_Tape"  target="_blank">TK50</a>. Open-reel tapes had dominated non-disk storage before this, but cartridges quickly replaced reels, leading to the development of tape robotics and (more) reliable off-site storage.</p>
<p>If you picked up a TK50 tape today, you could be forgiven for mistaking it for a modern SDLT or LTO, because these use a similar cartridge and drive form factor, the same linear tape technology, and the same half-inch tape size. The TK50, DLT, and SDLT were the mainstays of open backup for decades.</p>
<h3 class="post-subhead">1987 Auspex</h3>
<div id="attachment_1116" class="wp-caption alignright" style="width: 86px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; float: right;"><a href="http://blog.fosketts.net/wp-content/uploads/2008/11/auspex-product-family.gif" ><img class="size-medium wp-image-1116 " title="auspex-product-family" src="http://blog.fosketts.net/wp-content/uploads/2008/11/auspex-product-family.gif" alt="This terrible photo is an actual Auspex press image!" width="76" height="98" /></a><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">This terrible photo is an actual Auspex press image!</p></div>
<p>What was the first open systems enterprise storage array? Leveraging Sun&#8217;s NFS protocol, and hiding a Sun workstation inside, Wizard of Oz style, the Auspex set the standard for everything we think of as &#8220;enterprise&#8221; in the open systems world. The company&#8217;s storage systems were truly ahead of their time, with ranks of redundant disks years before RAID became common.</p>
<p>Auspex was founded by Larry Boucher, father of SCSI and founder of Adaptec, and raked in sales while others struggled to figure out how to sell in the enterprise.  But their refusal to produce a smaller device would be their undoing. Today&#8217;s monolithic arrays owe as much to Auspex as they do to IBM, but the companies producing them could learn a lesson from the company&#8217;s demise.</p>
<h3 class="post-subhead">1987 StorageTek 9310 PowderHorn</h3>
<div id="attachment_1122" class="wp-caption alignleft" style="width: 144px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; float: left;"><a href="http://blog.fosketts.net/wp-content/uploads/2008/11/9310-photo.jpg" ><img class="size-medium wp-image-1122" title="9310-photo" src="http://blog.fosketts.net/wp-content/uploads/2008/11/9310-photo.jpg" alt="StorageTeks versatile and scalable 9310 PowderHorn defined backup" width="134" height="103" /></a><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">StorageTeks versatile and scalable 9310 PowderHorn defined backup</p></div>
<p>StorageTek was instrumental in many enterprise storage developments (see McData, for example), but one product literally transformed the datacenter: the 9310 &#8220;PowderHorn&#8221;. Consider the &#8220;glass house&#8221; datacenter tours that the largest companies would use to impress visitors: They would show off their mainframe, their Cray, or their PowderHorn.</p>
<p>This versatile system would accommodate every major tape cartridge format and system type and could scale to truly massive proportions. When disks were expressed in megabytes, PowderHorns held terabytes. </p>
<h3 class="post-subhead">1995 EMC Symmetrix 3000</h3>
<div id="attachment_1120" class="wp-caption alignright" style="width: 210px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; float: right;"><a href="http://blog.fosketts.net/wp-content/uploads/2008/11/enthstorageallsymmetrix_3000-resized200.jpg" ><img class="size-medium wp-image-1120 " title="EMC Symmetrix 3000 Family" src="http://blog.fosketts.net/wp-content/uploads/2008/11/enthstorageallsymmetrix_3000-resized200.jpg" alt="EMC's third-generation Symmetrix brought mainframe technology to open systems" width="200" height="200" /></a><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">EMC&#39;s Symmetrix 3000 family brought mainframe block storage technology to open systems</p></div>
<p>The 1990 introduction of the Symmetrix was the key turning point for the (now) giant of Hopkinton, but the first two generations were mainframe-only. In 1994, the company delivered data replication capability in the form of SRDF, moving key enterprise functionality to the storage array.</p>
<p>But it was the 1995 introduction of the third-generation Symmetrix 3000 that really changed the storage world. For the first time, open systems could connect to mainframe-class storage over the standard SCSI protocol and leverage features like SRDF and (in 1997&#8242;s Symm 4) TimeFinder.</p>
<p>One key ingredient often overlooked in the Symmetrix was in-box virtualization the likes of which hadn&#8217;t been seen before. It also featured RAID-like sub-disk data protection, though the Symmetrix line never did implement true RAID.</p>
<p>The Symmetrix was redesigned entirely in 2003 to become the DMX. Although it was as different from its predecessor as the New Beetle was from Volkswagen&#8217;s original, the DMX line continued many of the philosophical underpinnings set in 1990.</p>
<p>EMC also deserves credit for their original Celerra enterprise NAS system, which picked up where Auspex left off. The company followed these in 2002 with the Centera CAS system, which abandoned many traditional concepts of enterprise storage, like blocks- and filesystem-access and modular and monolithic architecture. The Centera is certainly innovative, but we have yet to see the impact it will have.</p>
<h3 class="post-subhead">1994 Data General CLARiiON</h3>
<div id="attachment_1113" class="wp-caption alignright" style="width: 190px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; float: right;"><a href="http://blog.fosketts.net/wp-content/uploads/2008/11/aviion-and-clariion.jpg" ><img class="size-medium wp-image-1113 " title="aviion-and-clariion" src="http://blog.fosketts.net/wp-content/uploads/2008/11/aviion-and-clariion-300x232.jpg" alt="Data General paired the CLARiiON (left) with their AViiON server" width="180" height="139" /></a><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">Data General paired the CLARiiON (left) with their AViiON server</p></div>
<p>It&#8217;s easy to forget the world before RAID. But Data General was one of the first to market with a cached RAID system with their 1991 introduction of the HADA. Although this early system was tied to DG&#8217;s servers, it donated much of its architecture to a system that became more valuable than the rest of the company: CLARiiON.</p>
<p>Massively successful, and mighty impressive (PC Magazine called the first CLARiiON &#8220;amazing&#8221;), this modular block storage array set the template for over a decade. There were dozens of copycat arrays on the market within a few years of the introduction of the HADA. The CLARiiON gained Fibre Channel support, was sold to EMC, and remains a mainstay of corporate data centers, albeit with updates to every component. I have administered every generation of CLARiiON array, and can attest to their capability (when properly configured!)</p>
<h3 class="post-subhead">1996 NetApp Multiprotocol Filer</h3>
<div id="attachment_1118" class="wp-caption alignleft" style="width: 242px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; float: left;"><a href="http://blog.fosketts.net/wp-content/uploads/2008/11/f330.jpg" ><img class="size-medium wp-image-1118" title="f330" src="http://blog.fosketts.net/wp-content/uploads/2008/11/f330.jpg" alt="" width="232" height="130" /></a><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">NetApp&#39;s F330 Multiprotocol Filer was a huge hit in mid-size businesses and a major upgrade</p></div>
<p>NetApp (nee Network Appliance) was formed by a group of ex-Auspex engineers who wanted to create a more modular NAS server based on industry-standard hardware. They released their first product, the NFS-only FASServer, in 1995, but it was their August, 1996 introduction of the Windows-compatible Multiprotocol Filer software that really put them on the map.</p>
<p>Combined with their solid F220, F330, and F540 hardware, NetApp now had a serious challenger to Auspex, and their NAS systems blew away dedicated server-based solutions in terms of flexibility and manageability. NetApp&#8217;s unified NFS, CIFS/SMB, and HTTP access to content on their unique WAFL file system was impressive at the time, as was the quick setup and administration and the ease of adding drives to their RAID-4 sets. Plus, they brought a new level of friendliness to the data center with their bright colors and silly &#8220;toaster&#8221; nomenclature.</p>
<h3 class="post-subhead">1999 McData Fibre Channel Director</h3>
<p>McData has an interesting history, beginning with Storage Technology (StorageTek), intersecting with IBM, bought and spun off by EMC, and lately acquired by Brocade. Although the company spent a decade developing various peripherals for IBM mainframe systems, their late-1994 introduction of a switching director for ESCON traffic would change the storage world. We take large-scale SANs and LANs for granted today, but McData&#8217;s director was astonishing when it was introduced: There were no words to describe it or its function at the time, and period press articles are puzzling!</p>
<p>EMC scooped the company up a year later, but McData was spun out in 1997, adding Fibre Channel support that same year. In the ensuing years, McData became the enterprise SAN &#8220;arms dealer&#8221;, supplying IBM and EMC with the ED-5000 and ED-6064 directors. I recall commenting at the time that Fibre Channel connectivity built around the McData director was the first Storage Area Network worthy of the name. McData went IPO in 2000 and was purchased by rival Brocade in 2006. McData&#8217;s director architecture survives and thrives today against fierce competition from Brocade, Cisco, and others.</p>
<h3 class="post-subhead">Others To Consider</h3>
<p>What would you have included in this list? Here are some honorable mentions that I wish I had room for:</p>
<ol>
<li>StorageTek &#8220;Aegis&#8221; L700 library</li>
<li>Brocade &#8220;LOOM&#8221; 2xxx switches</li>
<li>Adaptec SCSI HBAs</li>
<li>Copan MAID</li>
<li>EqualLogic iSCSI arrays</li>
<li>EMC Centera</li>
<li>HP EVA</li>
<li>HDS USP</li>
<li>Compellent Storage Center</li>
</ol>
<h3 class="post-subhead">Responses</h3>
<p>Here&#8217;s a list of responses that others have posted:</p>
<ul>
<li><a href="http://www.storagerap.com/2008/11/top-10-storage-innovations.html"  target="_blank">Marc Farley&#8217;s Top 10 List</a></li>
<li><a href="http://blogs.netapp.com/shadeofblue/2008/11/bottom-ten-yet.html"  target="_blank">Alex MacDonald&#8217;s Bottom 10 List</a></li>
</ul>
<blockquote><p>See my posts on <a href="http://gestaltit.com/author/stephen/"  target="_blank">Gestalt IT</a> for similar <a href="http://gestaltit.com"  target="_blank">enterprise IT infrastructure commentary</a></p>
</blockquote>
<div id="crp_related"><h3>You might also want to read these other posts...</h3><ul><li><a href="http://blog.fosketts.net/2008/11/05/real-innovation/"  rel="bookmark" class="crp_title">Real Innovation</a></li><li><a href="http://blog.fosketts.net/2008/12/06/top-ten-coolest-enterprise-storage-flops/"  rel="bookmark" class="crp_title">Top Ten Coolest Enterprise Storage Flops</a></li><li><a href="http://blog.fosketts.net/2007/06/25/storage-history-the-3server/"  rel="bookmark" class="crp_title">Storage History: The 3Server</a></li><li><a href="http://blog.fosketts.net/2008/12/12/emulated-fibre-channel-virtualization/"  rel="bookmark" class="crp_title">Of Emulated Fibre Channel, Virtualization, And The Right Tool For The Job</a></li><li><a href="http://blog.fosketts.net/2010/10/14/overland-acquires-maxiscale/"  rel="bookmark" class="crp_title">Overland Snaps Up MaxiScale to Scale Up Snap</a></li></ul></div><script src="http://feeds.feedburner.com/~s/sfoskett?i=http://blog.fosketts.net/2008/11/15/top-ten-storage-hardware/" type="text/javascript" charset="utf-8"></script><hr />
<p><small>© sfoskett for <a href="http://blog.fosketts.net">Stephen Foskett, Pack Rat</a>, 2008. |
<a href="http://blog.fosketts.net/2008/11/15/top-ten-storage-hardware/">Top Ten Innovative Enterprise Storage Hardware Products</a>
<br/>
This post was categorized as <a href="http://blog.fosketts.net/category/everything/computerhistory/" title="View all posts in Computer History" rel="category tag">Computer History</a>, <a href="http://blog.fosketts.net/category/everything/enterprisestorage/" title="View all posts in Enterprise storage" rel="category tag">Enterprise storage</a>. Each of my categories has its own feed if you'd like to filter out or focus on posts like this.<br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://blog.fosketts.net/2008/11/15/top-ten-storage-hardware/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
	</channel>
</rss>

