<?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>TwinStrata Blog &#187; replication</title>
	<atom:link href="http://blog.twinstrata.com/category/replication/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.twinstrata.com</link>
	<description>Zero friction enterprise storage using the cloud</description>
	<lastBuildDate>Wed, 01 Feb 2012 03:51:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Clouds, Consistency, and Progress Bars</title>
		<link>http://blog.twinstrata.com/2011/04/25/clouds-consistency-and-progress-bars/</link>
		<comments>http://blog.twinstrata.com/2011/04/25/clouds-consistency-and-progress-bars/#comments</comments>
		<pubDate>Mon, 25 Apr 2011 16:34:39 +0000</pubDate>
		<dc:creator>jwbates</dc:creator>
				<category><![CDATA[Cloud Storage]]></category>
		<category><![CDATA[replication]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[backup to cloud]]></category>
		<category><![CDATA[cloud backup]]></category>
		<category><![CDATA[CloudArray]]></category>
		<category><![CDATA[online backup]]></category>

		<guid isPermaLink="false">http://blog.twinstrata.com/?p=1246</guid>
		<description><![CDATA[I have the bad habit of staring at progress bars.
I was backing up my Mac laptop to a CloudArray volume.&#185; With gigabit ethernet, a full backup to a CloudArray volume takes less time than my local USB drive. Apple&#8217;s Time Machine actually only does a full backup once, followed by hourly incrementals that are rolled [...]]]></description>
			<content:encoded><![CDATA[<p>I have the bad habit of staring at progress bars.</p>
<p>I was backing up my Mac laptop to a CloudArray volume.<a href="#footnote1">&sup1;</a> With gigabit ethernet, a full backup to a CloudArray volume takes less time than my local USB drive. Apple&#8217;s Time Machine actually only does a full backup once, followed by hourly incrementals that are rolled together into dailies, weeklies, and synthetic fulls. That&#8217;s a fantastic model for the cloud, since it saves a lot on bandwidth, but I usually tear down most of my volumes and run the full backup again. It&#8217;s a good way for me to keep an eye on a number of different variables that can affect CloudArray performance.</p>
<p>Anyway, I set up a backup volume and sat back to watch the progress bars. Here&#8217;s a good one:</p>
<p>	<img src="http://www.twinstrata.com/files/images/flush1.png" alt="Flush the first" width="400" height="100" /></p>
<p>At this point, the backup on my laptop was mostly done. You can see that my CloudArray cache still had 35 gigs of dirty data, and it was just starting to work on flushing 8 gigs out to the cloud. Also, I&#8217;d been staring too long, and popped off to do important CTO-type stuff.</p>
<p>A few minutes later, important CTO-type stuff being done, I checked back in on my progress bar:</p>
<p>	<img src="http://www.twinstrata.com/files/images/flush2.png" alt="flush2" width="400" height="100" /></p>
<p>The same flush was still in progress, and it was mostly done. But wait! The cache still reports 35 gigs of dirty data! (Actually, 35.1&hellip; the operating system hadn&#8217;t finished flushing its own cache the last time I checked.) But if an 8 gigabyte flush was mostly done, shouldn&#8217;t the cache be almost 8 gigs cleaner? What ever can be going on?</p>
<p>The answer, of course, is a teachable moment.</p>
<p>I&#8217;ve been building storage arrays of one type or another for pretty much my whole career. The most important aspect of any array&#8217;s firmware is its consistency model, by which I mean: how does it ensure that the data that it stores accurately represents the data that the host applications wrote? If an application writes &#8220;AB&#8221; to the disk, how does the firmware ensure that the next time it reads from that disk, it gets back &#8220;AB&#8221;? That is absolutely the most fundamental requirement of a storage system: everything else is just icing.</p>
<p>That might not sound like that hard of a problem, but the nuances of storing data in a complex, shared, networked controller can be subtle. For example, if my application writes &#8220;A&#8221;, then &#8220;B&#8221;, then &#8220;C&#8221; to different locations, I always want to return A, B, C for those locations. But if you add in a cache to the controller, and assume that the cache will fail (you always assume that every hardware component will eventually fail), then it&#8217;s not enough to just store the data in the cache. If you are implementing a write-back cache, you have to store information about the order in which those writes occur, so that the underlying backing store (a physical disk, say) gets those writes in the same order. Otherwise, when that cache fails, your application might read back A and C, but not B.</p>
<p>Why is that a problem? What if your application is a database, (A, B) is a credit card transaction, and C is the database checkpoint? In that case, your database will correctly read A, read corrupted data in place of B, and C will tell it that the corrupted junk is just fine. That&#8217;s bad.</p>
<p>If your cache firmware is well implemented, though, and only gets the chance to write two blocks before the cache hardware fails, then it will write A and B. Now, when your database tries to reread the data, it&#8217;ll find (A, B), but without that crucial C, it&#8217;ll do a proper rollback of the transaction.</p>
<p>In CloudArray, we&#8217;ve got an added complication: our backing store is not a local physical drive. It&#8217;s a massively scalable set of redundant data centers probably located a thousand miles away from our cache. The performance difference between our local devices and the cloud is several orders of magnitude. So how can we maintain consistency?</p>
<p>The answer lies in our rather complex representation of block devices as objects. First, we notice that strict write ordering is not an absolute necessity. We simply need to ensure that our data in the cloud represents some state that existed in our virtual volume, so that if C is present in the cloud, then (A, B) is there, too, but we don&#8217;t need to represent each of the intermediate states (A), (A, B), (A, B, C). Then, we have to partition our incoming data into sequences that can represent transitions between these states: these sequences are what we call a flush, and we try to design those partitions to maximize bandwidth utilization while also minimizing the temporal distance between state transitions. Finally, after we&#8217;ve transmitted a flush to the cloud, we have to perform an atomic commit on our representation, so that the new state of the cloud is entirely consistent.</p>
<p>And we have to do that in a way that is mindful of the architecture of cloud storage systems, which are often designed around the (not at all scary and in fact quite cool in a nerdy way, in spite of what some people say) eventual consistency model.</p>
<h2>What&#8217;s all that got to do with my progress bar?</h2>
<p>Well, in order to make sure that our cloud data maintains consistency, especially in the presence of sometimes quite flaky networks, we can&#8217;t clean out our cache until we&#8217;ve successfully committed and verified the most recent state transition, i.e. the last flush. So my progress bar is not really indicating the amount of data that&#8217;s been emptied out of the cache: it only tells me how much of the most recent state has been transmitted to the cloud. The data can&#8217;t be marked clean in the cache until the actual, final commit has been completed.</p>
<p>So what happens when the flush completes? Let&#8217;s see:</p>
<p>	<img src="http://www.twinstrata.com/files/images/flush3.png" alt="flush3" width="400" height="100" /></p>
<p>Huh. There it is. The cache now has only 27.1 gigabytes of dirty pages left. Mission accomplished.</p>
<p>And if my CloudArray were to experience some kind of catastrophe right now, like some dastardly CTO yanking out a cache storage device, what would happen? Once I restored it to operation, then Time Machine would pull the nice, consistent image out of the cloud, notice the missing 27.1 gigs, and pick right up from there. Like I said, it&#8217;s a nice piece of software, but it does rely on consistent storage.</p>
<p style="font-size:.9em"><a name="footnote1">&sup1;</a>It&#8217;s pretty easy to set up a Time Machine backup using the the <a href="http://www.studionetworksolutions.com/products/product_detail.php?t=more&#038;pi=11">Studio Network Solutions globalSAN iSCSI initiator</a> for OS X: just install it, point it at a CloudArray, and voila! Up pops whatever capacity I need. Launch Time Machine, set the CloudArray volume as the target disk, and I&#8217;ve got a whole bunch of progress bars to stare at.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Bookmark to:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://blog.twinstrata.com/2011/04/25/clouds-consistency-and-progress-bars/&amp;title=Clouds%2C+Consistency%2C+and+Progress+Bars" title="Add 'Clouds, Consistency, and Progress Bars' on Del.icio.us"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Clouds, Consistency, and Progress Bars' on Del.icio.us" alt="Add 'Clouds, Consistency, and Progress Bars' on Del.icio.us" /> Del.icio.us</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://blog.twinstrata.com/2011/04/25/clouds-consistency-and-progress-bars/&amp;title=Clouds%2C+Consistency%2C+and+Progress+Bars" title="Add 'Clouds, Consistency, and Progress Bars' on digg"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Clouds, Consistency, and Progress Bars' on digg" alt="Add 'Clouds, Consistency, and Progress Bars' on digg" /> digg</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home?status=http://blog.twinstrata.com/2011/04/25/clouds-consistency-and-progress-bars/" title="Add 'Clouds, Consistency, and Progress Bars' on Twitter"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/twitter.png" title="Add 'Clouds, Consistency, and Progress Bars' on Twitter" alt="Add 'Clouds, Consistency, and Progress Bars' on Twitter" /> Twitter</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.myspace.com/Modules/PostTo/Pages/?t=Clouds%2C+Consistency%2C+and+Progress+Bars&amp;c=http://blog.twinstrata.com/2011/04/25/clouds-consistency-and-progress-bars/" title="Add 'Clouds, Consistency, and Progress Bars' on MySpace"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/myspace.png" title="Add 'Clouds, Consistency, and Progress Bars' on MySpace" alt="Add 'Clouds, Consistency, and Progress Bars' on MySpace" /> MySpace</a> | <br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://blog.twinstrata.com/2011/04/25/clouds-consistency-and-progress-bars/&amp;t=Clouds%2C+Consistency%2C+and+Progress+Bars" title="Add 'Clouds, Consistency, and Progress Bars' on FaceBook"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'Clouds, Consistency, and Progress Bars' on FaceBook" alt="Add 'Clouds, Consistency, and Progress Bars' on FaceBook" /> FaceBook</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://blog.twinstrata.com/2011/04/25/clouds-consistency-and-progress-bars/&amp;title=Clouds%2C+Consistency%2C+and+Progress+Bars" title="Add 'Clouds, Consistency, and Progress Bars' on reddit"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="Add 'Clouds, Consistency, and Progress Bars' on reddit" alt="Add 'Clouds, Consistency, and Progress Bars' on reddit" /> reddit</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://blog.twinstrata.com/2011/04/25/clouds-consistency-and-progress-bars/&amp;title=Clouds%2C+Consistency%2C+and+Progress+Bars" title="Add 'Clouds, Consistency, and Progress Bars' on Stumble Upon"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Clouds, Consistency, and Progress Bars' on Stumble Upon" alt="Add 'Clouds, Consistency, and Progress Bars' on Stumble Upon" /> Stumble Upon</a> | </div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://blog.twinstrata.com/2011/04/25/clouds-consistency-and-progress-bars/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Election Day Lunch &amp; Learn Seminar &#8211; See the Results: How Your Business Can Leverage Cloud Backup Services</title>
		<link>http://blog.twinstrata.com/2010/10/26/election-day-lunch-learn-seminar-see-the-results-how-your-business-can-leverage-cloud-backup-services/</link>
		<comments>http://blog.twinstrata.com/2010/10/26/election-day-lunch-learn-seminar-see-the-results-how-your-business-can-leverage-cloud-backup-services/#comments</comments>
		<pubDate>Tue, 26 Oct 2010 18:46:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Intelligent Storage Cloud]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[replication]]></category>
		<category><![CDATA[backup to cloud]]></category>
		<category><![CDATA[cloud backup]]></category>
		<category><![CDATA[Cloud Services]]></category>
		<category><![CDATA[Cloud Storage]]></category>
		<category><![CDATA[CloudArray]]></category>
		<category><![CDATA[data protection]]></category>
		<category><![CDATA[online backup]]></category>
		<category><![CDATA[TwinStrata]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://blog.twinstrata.com/?p=907</guid>
		<description><![CDATA[For anyone local to the Waltham MA area, TwinStrata will be participating in a BNMC hostedcomplementary Lunch &#38; Learn Seminar along withVMware, Vizioncore/Quest Software, and Hosted Solutions about how your business can leverage Cloud Backup Services &#8211; affordably, reliably, and easily. The seminar will discuss solutions for Enterprise-class data protection and disaster recovery using your existing backup infrastructure, TwinStrata’s [...]]]></description>
			<content:encoded><![CDATA[<p>For anyone local to the Waltham MA area, TwinStrata will be participating in a BNMC hostedcomplementary Lunch &amp; Learn Seminar along withVMware, Vizioncore/Quest Software, and Hosted Solutions about how your business can leverage Cloud Backup Services &#8211; affordably, reliably, and easily. The seminar will discuss solutions for Enterprise-class data protection and disaster recovery using your existing backup infrastructure, TwinStrata’s CloudArray, and  the private and secure cloud infrastructure at Hosted Solutions.  BNMC offers their Cloud Backup Service powered by the CloudArray technology which delivers cost-effective and seamless managed storage services optimized for performance, multi-site availability and elastic storage capacity at a substantial cost-savings over traditional cloud storage solutions. </p>
<p>The BNMC Cloud Backup Service using CloudArray greatly enhances your business resiliency by providing seamless &#8220;zero-U&#8221; iSCSI storage that &#8220;stretches&#8221; your backup infrastructure or your VMware High Availability into the cloud.  The solution plugs right into your existing VMware environment (as a virtual machine) or can be added as a separate appliance in a physical environment to work alongside  your existing backup infrastructure to protect all assets.</p>
<p>Online Registration for the event:  <a href="http://www.regonline.com/builder/site/Default.aspx?EventId=903608">http://www.regonline.com/builder/site/Default.aspx?EventId=903608</a></p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Bookmark to:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://blog.twinstrata.com/2010/10/26/election-day-lunch-learn-seminar-see-the-results-how-your-business-can-leverage-cloud-backup-services/&amp;title=Election+Day+Lunch+%26%23038%3B+Learn+Seminar+%26%238211%3B+See+the+Results%3A+How+Your+Business+Can+Leverage+Cloud+Backup+Services" title="Add 'Election Day Lunch &#038; Learn Seminar &#8211; See the Results: How Your Business Can Leverage Cloud Backup Services' on Del.icio.us"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Election Day Lunch &#038; Learn Seminar &#8211; See the Results: How Your Business Can Leverage Cloud Backup Services' on Del.icio.us" alt="Add 'Election Day Lunch &#038; Learn Seminar &#8211; See the Results: How Your Business Can Leverage Cloud Backup Services' on Del.icio.us" /> Del.icio.us</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://blog.twinstrata.com/2010/10/26/election-day-lunch-learn-seminar-see-the-results-how-your-business-can-leverage-cloud-backup-services/&amp;title=Election+Day+Lunch+%26%23038%3B+Learn+Seminar+%26%238211%3B+See+the+Results%3A+How+Your+Business+Can+Leverage+Cloud+Backup+Services" title="Add 'Election Day Lunch &#038; Learn Seminar &#8211; See the Results: How Your Business Can Leverage Cloud Backup Services' on digg"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Election Day Lunch &#038; Learn Seminar &#8211; See the Results: How Your Business Can Leverage Cloud Backup Services' on digg" alt="Add 'Election Day Lunch &#038; Learn Seminar &#8211; See the Results: How Your Business Can Leverage Cloud Backup Services' on digg" /> digg</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home?status=http://blog.twinstrata.com/2010/10/26/election-day-lunch-learn-seminar-see-the-results-how-your-business-can-leverage-cloud-backup-services/" title="Add 'Election Day Lunch &#038; Learn Seminar &#8211; See the Results: How Your Business Can Leverage Cloud Backup Services' on Twitter"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/twitter.png" title="Add 'Election Day Lunch &#038; Learn Seminar &#8211; See the Results: How Your Business Can Leverage Cloud Backup Services' on Twitter" alt="Add 'Election Day Lunch &#038; Learn Seminar &#8211; See the Results: How Your Business Can Leverage Cloud Backup Services' on Twitter" /> Twitter</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.myspace.com/Modules/PostTo/Pages/?t=Election+Day+Lunch+%26%23038%3B+Learn+Seminar+%26%238211%3B+See+the+Results%3A+How+Your+Business+Can+Leverage+Cloud+Backup+Services&amp;c=http://blog.twinstrata.com/2010/10/26/election-day-lunch-learn-seminar-see-the-results-how-your-business-can-leverage-cloud-backup-services/" title="Add 'Election Day Lunch &#038; Learn Seminar &#8211; See the Results: How Your Business Can Leverage Cloud Backup Services' on MySpace"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/myspace.png" title="Add 'Election Day Lunch &#038; Learn Seminar &#8211; See the Results: How Your Business Can Leverage Cloud Backup Services' on MySpace" alt="Add 'Election Day Lunch &#038; Learn Seminar &#8211; See the Results: How Your Business Can Leverage Cloud Backup Services' on MySpace" /> MySpace</a> | <br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://blog.twinstrata.com/2010/10/26/election-day-lunch-learn-seminar-see-the-results-how-your-business-can-leverage-cloud-backup-services/&amp;t=Election+Day+Lunch+%26%23038%3B+Learn+Seminar+%26%238211%3B+See+the+Results%3A+How+Your+Business+Can+Leverage+Cloud+Backup+Services" title="Add 'Election Day Lunch &#038; Learn Seminar &#8211; See the Results: How Your Business Can Leverage Cloud Backup Services' on FaceBook"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'Election Day Lunch &#038; Learn Seminar &#8211; See the Results: How Your Business Can Leverage Cloud Backup Services' on FaceBook" alt="Add 'Election Day Lunch &#038; Learn Seminar &#8211; See the Results: How Your Business Can Leverage Cloud Backup Services' on FaceBook" /> FaceBook</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://blog.twinstrata.com/2010/10/26/election-day-lunch-learn-seminar-see-the-results-how-your-business-can-leverage-cloud-backup-services/&amp;title=Election+Day+Lunch+%26%23038%3B+Learn+Seminar+%26%238211%3B+See+the+Results%3A+How+Your+Business+Can+Leverage+Cloud+Backup+Services" title="Add 'Election Day Lunch &#038; Learn Seminar &#8211; See the Results: How Your Business Can Leverage Cloud Backup Services' on reddit"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="Add 'Election Day Lunch &#038; Learn Seminar &#8211; See the Results: How Your Business Can Leverage Cloud Backup Services' on reddit" alt="Add 'Election Day Lunch &#038; Learn Seminar &#8211; See the Results: How Your Business Can Leverage Cloud Backup Services' on reddit" /> reddit</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://blog.twinstrata.com/2010/10/26/election-day-lunch-learn-seminar-see-the-results-how-your-business-can-leverage-cloud-backup-services/&amp;title=Election+Day+Lunch+%26%23038%3B+Learn+Seminar+%26%238211%3B+See+the+Results%3A+How+Your+Business+Can+Leverage+Cloud+Backup+Services" title="Add 'Election Day Lunch &#038; Learn Seminar &#8211; See the Results: How Your Business Can Leverage Cloud Backup Services' on Stumble Upon"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Election Day Lunch &#038; Learn Seminar &#8211; See the Results: How Your Business Can Leverage Cloud Backup Services' on Stumble Upon" alt="Add 'Election Day Lunch &#038; Learn Seminar &#8211; See the Results: How Your Business Can Leverage Cloud Backup Services' on Stumble Upon" /> Stumble Upon</a> | </div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://blog.twinstrata.com/2010/10/26/election-day-lunch-learn-seminar-see-the-results-how-your-business-can-leverage-cloud-backup-services/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SMEs: Keep your head in the clouds, especially for off-site data protection</title>
		<link>http://blog.twinstrata.com/2010/10/18/smes-keep-your-head-in-the-clouds-especially-for-off-site-data-protection/</link>
		<comments>http://blog.twinstrata.com/2010/10/18/smes-keep-your-head-in-the-clouds-especially-for-off-site-data-protection/#comments</comments>
		<pubDate>Mon, 18 Oct 2010 16:41:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Intelligent Storage Cloud]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[replication]]></category>
		<category><![CDATA[backup to cloud]]></category>
		<category><![CDATA[Cloud Services]]></category>
		<category><![CDATA[data protection]]></category>
		<category><![CDATA[storage as a service]]></category>
		<category><![CDATA[TwinStrata]]></category>

		<guid isPermaLink="false">http://blog.twinstrata.com/?p=888</guid>
		<description><![CDATA[Since joining TwinStrata, it’s given me a refreshing new perspective about the potential for SME type companies to adopt and use storage in the cloud. It makes sense when you think about how these companies regularly deal with limited resources and technology challenges while trying to manage revenue growth and stay competitive.  So how and [...]]]></description>
			<content:encoded><![CDATA[<p>Since joining TwinStrata, it’s given me a refreshing new perspective about the potential for SME type companies to adopt and use storage in the cloud. It makes sense when you think about how these companies regularly deal with limited resources and technology challenges while trying to manage revenue growth and stay competitive.  So how and where do they get started?  What could drive SMEs more to the cloud is having a solution that makes the decision to utilize cloud storage simpler – for some things anyway – and which could yield immediate cost savings and efficiencies. Using storage in the cloud for off-site data protection purposes is a good place to start. Some of the more obvious reasons include: eliminating the need for cumbersome tape operations, faster recovery times, reduced tier 2 storage purchases, lowered storage management costs, and streamlining IT operations. But there are other reasons as well that may not be as obvious. Having an affordable and innovative solution that delivers enterprise class offsite data protection with performance and reliability capabilities will further help SME’s to consider cloud storage for these reasons as well:  </p>
<ol>
<li>Two-Site DR: It’s expensive to have a second site for DR purposes so having your data stored in the cloud can provide smaller and medium sized companies with instant, optimized, and low cost second-site disaster recovery capabilities. And if the solution is flexible enough, then you can also select from alternative DR methods that helps to improve overall DR readiness with a direct disk to cloud architecture.  </li>
<li>Security and Compliance: Any business that hands off their data to someone else will want to know how secure their data will be. However, it may not be good enough to just secure data at rest while at the cloud storage provider site.  An optimized solution will also secure the data while in-flight providing an added level of security.</li>
<li>Investment protection:  Once on-site backup software is configured and regularly operating, the last thing IT wants is something that will cause a disruption to data protection operations or introduce another layer of complexity in order to extend the backup process off-site. Off-site data protection solutions that can enable transparency through seamless and non-intrusive interoperability with existing backup operations, work with different backup products, and automate off-site data protection and DR operations will be much more attractive to IT organizations already strapped by resource constraints.</li>
<li>Choice of cloud storage provider: All cloud storage providers offer something a little different and because they do it may require companies to create special APIs in order to connect to them. This also has a tendency to “lock” you into the storage provider when you may want choice as part of your strategy. The solution that can provide you with a wide array of integration choices relative to server support, virtualization software, back-up tools, and back-end cloud storage providers will prove best for companies reaching to the clouds for affordable, on-demand/pay-as-you-go capacity expansion, and compute anywhere accessibility.</li>
</ol>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Bookmark to:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://blog.twinstrata.com/2010/10/18/smes-keep-your-head-in-the-clouds-especially-for-off-site-data-protection/&amp;title=SMEs%3A+Keep+your+head+in+the+clouds%2C+especially+for+off-site+data+protection" title="Add 'SMEs: Keep your head in the clouds, especially for off-site data protection' on Del.icio.us"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'SMEs: Keep your head in the clouds, especially for off-site data protection' on Del.icio.us" alt="Add 'SMEs: Keep your head in the clouds, especially for off-site data protection' on Del.icio.us" /> Del.icio.us</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://blog.twinstrata.com/2010/10/18/smes-keep-your-head-in-the-clouds-especially-for-off-site-data-protection/&amp;title=SMEs%3A+Keep+your+head+in+the+clouds%2C+especially+for+off-site+data+protection" title="Add 'SMEs: Keep your head in the clouds, especially for off-site data protection' on digg"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'SMEs: Keep your head in the clouds, especially for off-site data protection' on digg" alt="Add 'SMEs: Keep your head in the clouds, especially for off-site data protection' on digg" /> digg</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home?status=http://blog.twinstrata.com/2010/10/18/smes-keep-your-head-in-the-clouds-especially-for-off-site-data-protection/" title="Add 'SMEs: Keep your head in the clouds, especially for off-site data protection' on Twitter"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/twitter.png" title="Add 'SMEs: Keep your head in the clouds, especially for off-site data protection' on Twitter" alt="Add 'SMEs: Keep your head in the clouds, especially for off-site data protection' on Twitter" /> Twitter</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.myspace.com/Modules/PostTo/Pages/?t=SMEs%3A+Keep+your+head+in+the+clouds%2C+especially+for+off-site+data+protection&amp;c=http://blog.twinstrata.com/2010/10/18/smes-keep-your-head-in-the-clouds-especially-for-off-site-data-protection/" title="Add 'SMEs: Keep your head in the clouds, especially for off-site data protection' on MySpace"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/myspace.png" title="Add 'SMEs: Keep your head in the clouds, especially for off-site data protection' on MySpace" alt="Add 'SMEs: Keep your head in the clouds, especially for off-site data protection' on MySpace" /> MySpace</a> | <br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://blog.twinstrata.com/2010/10/18/smes-keep-your-head-in-the-clouds-especially-for-off-site-data-protection/&amp;t=SMEs%3A+Keep+your+head+in+the+clouds%2C+especially+for+off-site+data+protection" title="Add 'SMEs: Keep your head in the clouds, especially for off-site data protection' on FaceBook"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'SMEs: Keep your head in the clouds, especially for off-site data protection' on FaceBook" alt="Add 'SMEs: Keep your head in the clouds, especially for off-site data protection' on FaceBook" /> FaceBook</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://blog.twinstrata.com/2010/10/18/smes-keep-your-head-in-the-clouds-especially-for-off-site-data-protection/&amp;title=SMEs%3A+Keep+your+head+in+the+clouds%2C+especially+for+off-site+data+protection" title="Add 'SMEs: Keep your head in the clouds, especially for off-site data protection' on reddit"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="Add 'SMEs: Keep your head in the clouds, especially for off-site data protection' on reddit" alt="Add 'SMEs: Keep your head in the clouds, especially for off-site data protection' on reddit" /> reddit</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://blog.twinstrata.com/2010/10/18/smes-keep-your-head-in-the-clouds-especially-for-off-site-data-protection/&amp;title=SMEs%3A+Keep+your+head+in+the+clouds%2C+especially+for+off-site+data+protection" title="Add 'SMEs: Keep your head in the clouds, especially for off-site data protection' on Stumble Upon"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'SMEs: Keep your head in the clouds, especially for off-site data protection' on Stumble Upon" alt="Add 'SMEs: Keep your head in the clouds, especially for off-site data protection' on Stumble Upon" /> Stumble Upon</a> | </div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://blog.twinstrata.com/2010/10/18/smes-keep-your-head-in-the-clouds-especially-for-off-site-data-protection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amazon S3 RRS Cloud Storage &#8212; Secondary storage tiers at 33% savings</title>
		<link>http://blog.twinstrata.com/2010/05/26/amazon-s3-rrs-cloud-storage-secondary-storage-tiers-at-33-savings/</link>
		<comments>http://blog.twinstrata.com/2010/05/26/amazon-s3-rrs-cloud-storage-secondary-storage-tiers-at-33-savings/#comments</comments>
		<pubDate>Thu, 27 May 2010 02:08:55 +0000</pubDate>
		<dc:creator>Nicos Vekiarides</dc:creator>
				<category><![CDATA[backup]]></category>
		<category><![CDATA[replication]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[Amazon S3]]></category>
		<category><![CDATA[backup to cloud]]></category>
		<category><![CDATA[business continuity]]></category>
		<category><![CDATA[Cloud Storage]]></category>
		<category><![CDATA[CloudArray]]></category>
		<category><![CDATA[data replication]]></category>
		<category><![CDATA[disaster recovery]]></category>

		<guid isPermaLink="false">http://blog.twinstrata.com/?p=221</guid>
		<description><![CDATA[Amazon recently announced S3 RRS starting at $0.10/GB per month, a very palatable 33% less than S3 standard storage. What&#8217;s the catch? RRS means reduced redundancy storage, a tier of storage that maintains fewer copies of data than Amazon S3 standard service. According to Amazon, S3 standard storage provides &#8220;99.999999999% durability and 99.99% availability of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://searchstorage.techtarget.com/news/article/0,289142,sid5_gci1513105,00.html" target="_blank">Amazon recently announced S3 RRS</a> starting at $0.10/GB per month, a very palatable 33% less than S3 standard storage. What&#8217;s the catch? RRS means reduced redundancy storage, a tier of storage that maintains fewer copies of data than Amazon S3 standard service. <a href="http://aws.amazon.com/s3/#protecting" target="_blank">According to Amazon</a>, S3 standard storage provides &#8220;99.999999999% durability and 99.99% availability of objects over a given year&#8221; and can sustain &#8220;the concurrent loss of data in two facilities.&#8221; RRS storage provides &#8220;99.99% durability and 99.99% availability of objects over a given year&#8221; and can  &#8220;sustain the loss of data in a single facility.&#8221;</p>
<p>Why is this interesting to CloudArray customers? Because many CloudArray solutions involve secondary tiers of storage in the cloud with full copies of primary data on-premise. In these cases, RRS is a great cost-saving tradeoff for the secondary storage tier in the cloud with very little impact on overall data availability thanks to the full on-premise copy.</p>
<p>It is important to use this new tier of storage wisely. For those solutions using primary tiers of storage in the cloud without full onsite copies, it may make sense to stick with the standard S3 service.</p>
<p>Because CloudArray makes storage providers and policies flexible and transparent, our customers now have the benefit of a more cost-effective tier of storage for backup, data replication and business continuity solutions to Amazon.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Bookmark to:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://blog.twinstrata.com/2010/05/26/amazon-s3-rrs-cloud-storage-secondary-storage-tiers-at-33-savings/&amp;title=Amazon+S3+RRS+Cloud+Storage+%26%238212%3B+Secondary+storage+tiers+at+33%25+savings" title="Add 'Amazon S3 RRS Cloud Storage &#8212; Secondary storage tiers at 33% savings' on Del.icio.us"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Amazon S3 RRS Cloud Storage &#8212; Secondary storage tiers at 33% savings' on Del.icio.us" alt="Add 'Amazon S3 RRS Cloud Storage &#8212; Secondary storage tiers at 33% savings' on Del.icio.us" /> Del.icio.us</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://blog.twinstrata.com/2010/05/26/amazon-s3-rrs-cloud-storage-secondary-storage-tiers-at-33-savings/&amp;title=Amazon+S3+RRS+Cloud+Storage+%26%238212%3B+Secondary+storage+tiers+at+33%25+savings" title="Add 'Amazon S3 RRS Cloud Storage &#8212; Secondary storage tiers at 33% savings' on digg"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Amazon S3 RRS Cloud Storage &#8212; Secondary storage tiers at 33% savings' on digg" alt="Add 'Amazon S3 RRS Cloud Storage &#8212; Secondary storage tiers at 33% savings' on digg" /> digg</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home?status=http://blog.twinstrata.com/2010/05/26/amazon-s3-rrs-cloud-storage-secondary-storage-tiers-at-33-savings/" title="Add 'Amazon S3 RRS Cloud Storage &#8212; Secondary storage tiers at 33% savings' on Twitter"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/twitter.png" title="Add 'Amazon S3 RRS Cloud Storage &#8212; Secondary storage tiers at 33% savings' on Twitter" alt="Add 'Amazon S3 RRS Cloud Storage &#8212; Secondary storage tiers at 33% savings' on Twitter" /> Twitter</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.myspace.com/Modules/PostTo/Pages/?t=Amazon+S3+RRS+Cloud+Storage+%26%238212%3B+Secondary+storage+tiers+at+33%25+savings&amp;c=http://blog.twinstrata.com/2010/05/26/amazon-s3-rrs-cloud-storage-secondary-storage-tiers-at-33-savings/" title="Add 'Amazon S3 RRS Cloud Storage &#8212; Secondary storage tiers at 33% savings' on MySpace"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/myspace.png" title="Add 'Amazon S3 RRS Cloud Storage &#8212; Secondary storage tiers at 33% savings' on MySpace" alt="Add 'Amazon S3 RRS Cloud Storage &#8212; Secondary storage tiers at 33% savings' on MySpace" /> MySpace</a> | <br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://blog.twinstrata.com/2010/05/26/amazon-s3-rrs-cloud-storage-secondary-storage-tiers-at-33-savings/&amp;t=Amazon+S3+RRS+Cloud+Storage+%26%238212%3B+Secondary+storage+tiers+at+33%25+savings" title="Add 'Amazon S3 RRS Cloud Storage &#8212; Secondary storage tiers at 33% savings' on FaceBook"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'Amazon S3 RRS Cloud Storage &#8212; Secondary storage tiers at 33% savings' on FaceBook" alt="Add 'Amazon S3 RRS Cloud Storage &#8212; Secondary storage tiers at 33% savings' on FaceBook" /> FaceBook</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://blog.twinstrata.com/2010/05/26/amazon-s3-rrs-cloud-storage-secondary-storage-tiers-at-33-savings/&amp;title=Amazon+S3+RRS+Cloud+Storage+%26%238212%3B+Secondary+storage+tiers+at+33%25+savings" title="Add 'Amazon S3 RRS Cloud Storage &#8212; Secondary storage tiers at 33% savings' on reddit"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="Add 'Amazon S3 RRS Cloud Storage &#8212; Secondary storage tiers at 33% savings' on reddit" alt="Add 'Amazon S3 RRS Cloud Storage &#8212; Secondary storage tiers at 33% savings' on reddit" /> reddit</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://blog.twinstrata.com/2010/05/26/amazon-s3-rrs-cloud-storage-secondary-storage-tiers-at-33-savings/&amp;title=Amazon+S3+RRS+Cloud+Storage+%26%238212%3B+Secondary+storage+tiers+at+33%25+savings" title="Add 'Amazon S3 RRS Cloud Storage &#8212; Secondary storage tiers at 33% savings' on Stumble Upon"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Amazon S3 RRS Cloud Storage &#8212; Secondary storage tiers at 33% savings' on Stumble Upon" alt="Add 'Amazon S3 RRS Cloud Storage &#8212; Secondary storage tiers at 33% savings' on Stumble Upon" /> Stumble Upon</a> | </div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://blog.twinstrata.com/2010/05/26/amazon-s3-rrs-cloud-storage-secondary-storage-tiers-at-33-savings/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Cloud Storage That Solves Business Problems &#8212; Customer Proof Points</title>
		<link>http://blog.twinstrata.com/2010/05/24/cloud-storage-that-solves-business-problems-customer-proof-points/</link>
		<comments>http://blog.twinstrata.com/2010/05/24/cloud-storage-that-solves-business-problems-customer-proof-points/#comments</comments>
		<pubDate>Mon, 24 May 2010 13:13:54 +0000</pubDate>
		<dc:creator>Nicos Vekiarides</dc:creator>
				<category><![CDATA[Customer Use Case]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[replication]]></category>
		<category><![CDATA[Atmos]]></category>
		<category><![CDATA[business applications]]></category>
		<category><![CDATA[Cloud Storage]]></category>
		<category><![CDATA[cloud storage business solutions]]></category>
		<category><![CDATA[Cloud storage use cases]]></category>
		<category><![CDATA[data protection]]></category>
		<category><![CDATA[Microsoft Exchange]]></category>
		<category><![CDATA[Oracle RMAN]]></category>

		<guid isPermaLink="false">http://blog.twinstrata.com/?p=202</guid>
		<description><![CDATA[This weekend, I was glancing through a blog by George Crump entitled &#8220;When To Use Cloud Storage?&#8221; George concludes &#8220;Cloud storage providers and ISVs should focus on solving the business problem, not on the value of putting a bunch of data out in the internet.&#8221; We couldn&#8217;t agree more with that statement.
You may have seen [...]]]></description>
			<content:encoded><![CDATA[<p>This weekend, I was glancing through a blog by George Crump entitled &#8220;<a href="http://www.informationweek.com/blog/main/archives/2010/05/when_to_use_clo.html;jsessionid=COHW20ABRZA4LQE1GHPSKHWATMY32JVN" target="_blank">When To Use Cloud Storage?</a>&#8221; George concludes &#8220;Cloud storage providers and ISVs should focus on solving the business problem, not on the value of putting a bunch of data out in the internet.&#8221; We couldn&#8217;t agree more with that statement.</p>
<p>You may have seen our <a href="http://www.prnewswire.com/news-releases/twinstrata-announces-tricore-solutions-partnership-and-customer-wins-with-exchange-2010-and-oracle-rman-cloud-storage-solutions-94732504.html" target="_blank">press announcement</a> today regarding two recent customer wins through our partner <a href="http://www.tricoresolutions.com/" target="_blank">Tricore Solutions</a>. Let&#8217;s look closely at the customer use cases: Color Kinetics, a division of Phillips, is using <a href="http://www.twinstrata.com/cloudarray" target="_blank">CloudArray</a> to improve their Oracle RMAN backup process. Tape costs disappear, backups complete faster and restore speeds improve. Tanya Creations, a large jewelry manufacturer is using CloudArray to enable <a href="http://www.twinstrata.com/CloudArrayforMicrosoftExchange" target="_blank">Microsoft Exchange 2010</a> off-site replication and recovery, providing enterprise-class availability for their email system; all without the capital and administrative burden of building and managing a secondary site.</p>
<p>The message from these customers goes a lot deeper than removing cloud storage adoption hurdles to create a new tier of data storage. At the end of the day, CloudArray enabled business solutions that improved the operation of each respective enterprise. The cost savings over traditional off-site storage solutions makes the case even stronger.</p>
<p>It&#8217;s no secret that IT departments that were once technology-driven have become more and more business-driven. While cloud storage technology may or may not be a business priority today, compelling solutions for protecting and enhancing access to business data certainly are.</p>
<p>More to come&#8230;</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Bookmark to:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://blog.twinstrata.com/2010/05/24/cloud-storage-that-solves-business-problems-customer-proof-points/&amp;title=Cloud+Storage+That+Solves+Business+Problems+%26%238212%3B+Customer+Proof+Points" title="Add 'Cloud Storage That Solves Business Problems &#8212; Customer Proof Points' on Del.icio.us"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Cloud Storage That Solves Business Problems &#8212; Customer Proof Points' on Del.icio.us" alt="Add 'Cloud Storage That Solves Business Problems &#8212; Customer Proof Points' on Del.icio.us" /> Del.icio.us</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://blog.twinstrata.com/2010/05/24/cloud-storage-that-solves-business-problems-customer-proof-points/&amp;title=Cloud+Storage+That+Solves+Business+Problems+%26%238212%3B+Customer+Proof+Points" title="Add 'Cloud Storage That Solves Business Problems &#8212; Customer Proof Points' on digg"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Cloud Storage That Solves Business Problems &#8212; Customer Proof Points' on digg" alt="Add 'Cloud Storage That Solves Business Problems &#8212; Customer Proof Points' on digg" /> digg</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home?status=http://blog.twinstrata.com/2010/05/24/cloud-storage-that-solves-business-problems-customer-proof-points/" title="Add 'Cloud Storage That Solves Business Problems &#8212; Customer Proof Points' on Twitter"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/twitter.png" title="Add 'Cloud Storage That Solves Business Problems &#8212; Customer Proof Points' on Twitter" alt="Add 'Cloud Storage That Solves Business Problems &#8212; Customer Proof Points' on Twitter" /> Twitter</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.myspace.com/Modules/PostTo/Pages/?t=Cloud+Storage+That+Solves+Business+Problems+%26%238212%3B+Customer+Proof+Points&amp;c=http://blog.twinstrata.com/2010/05/24/cloud-storage-that-solves-business-problems-customer-proof-points/" title="Add 'Cloud Storage That Solves Business Problems &#8212; Customer Proof Points' on MySpace"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/myspace.png" title="Add 'Cloud Storage That Solves Business Problems &#8212; Customer Proof Points' on MySpace" alt="Add 'Cloud Storage That Solves Business Problems &#8212; Customer Proof Points' on MySpace" /> MySpace</a> | <br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://blog.twinstrata.com/2010/05/24/cloud-storage-that-solves-business-problems-customer-proof-points/&amp;t=Cloud+Storage+That+Solves+Business+Problems+%26%238212%3B+Customer+Proof+Points" title="Add 'Cloud Storage That Solves Business Problems &#8212; Customer Proof Points' on FaceBook"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'Cloud Storage That Solves Business Problems &#8212; Customer Proof Points' on FaceBook" alt="Add 'Cloud Storage That Solves Business Problems &#8212; Customer Proof Points' on FaceBook" /> FaceBook</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://blog.twinstrata.com/2010/05/24/cloud-storage-that-solves-business-problems-customer-proof-points/&amp;title=Cloud+Storage+That+Solves+Business+Problems+%26%238212%3B+Customer+Proof+Points" title="Add 'Cloud Storage That Solves Business Problems &#8212; Customer Proof Points' on reddit"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="Add 'Cloud Storage That Solves Business Problems &#8212; Customer Proof Points' on reddit" alt="Add 'Cloud Storage That Solves Business Problems &#8212; Customer Proof Points' on reddit" /> reddit</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://blog.twinstrata.com/2010/05/24/cloud-storage-that-solves-business-problems-customer-proof-points/&amp;title=Cloud+Storage+That+Solves+Business+Problems+%26%238212%3B+Customer+Proof+Points" title="Add 'Cloud Storage That Solves Business Problems &#8212; Customer Proof Points' on Stumble Upon"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Cloud Storage That Solves Business Problems &#8212; Customer Proof Points' on Stumble Upon" alt="Add 'Cloud Storage That Solves Business Problems &#8212; Customer Proof Points' on Stumble Upon" /> Stumble Upon</a> | </div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://blog.twinstrata.com/2010/05/24/cloud-storage-that-solves-business-problems-customer-proof-points/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Enable Oracle® Recovery Manager (RMAN) to store backup data to Cloud storage</title>
		<link>http://blog.twinstrata.com/2009/12/07/enable-oracle%c2%ae-recovery-manager-rman-to-store-backup-data-to-cloud-storage/</link>
		<comments>http://blog.twinstrata.com/2009/12/07/enable-oracle%c2%ae-recovery-manager-rman-to-store-backup-data-to-cloud-storage/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 15:39:45 +0000</pubDate>
		<dc:creator>Robert Infantino</dc:creator>
				<category><![CDATA[backup]]></category>
		<category><![CDATA[replication]]></category>
		<category><![CDATA[Cloud Storage]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[restore]]></category>
		<category><![CDATA[RMAN]]></category>

		<guid isPermaLink="false">http://blog.twinstrata.com/?p=109</guid>
		<description><![CDATA[Together with one of our partners, Tricore Solutions, we are working with a number of Oracle customers to reduce cost and drive efficiency for database backups. TriCore is recognized as one of Oracle&#8217;s leading partners delivering a suite of services for enterprise accounts. 
One of the challenges we are focused on is to protect Oracle [...]]]></description>
			<content:encoded><![CDATA[<p>Together with one of our partners, <a href="http://www.tricoresolutions.com">Tricore Solutions</a>, we are working with a number of Oracle customers to reduce cost and drive efficiency for database backups. TriCore is recognized as one of Oracle&#8217;s leading partners delivering a suite of services for enterprise accounts. </p>
<p>One of the challenges we are focused on is to protect Oracle databases using Oracle Recovery Manager (RMAN) and Cloud storage. The challenge faced by most enterprise customers is to reduce cost and drive efficiency to protect Oracle databases and improve restore process. Companies using tape and off-site vaulting services to store Oracle database backup data are shouldering a mountain of costs that will continue to increase linearly with database growth. Costs for such items as media (tape), tape transportation, and vaulting fees to house data offsite. And the process for restoring data is difficult and time consuming taking anywhere from hours to a week to retrieve data. In today’s business environment, expectations for information retrieval should be near real-time if not “real time”. </p>
<p>The solution we provide is an on-demand, expandable, low cost storage tier integrated seamlessly with Oracle RMAN. This solution is made up of CloudArray software together with public Cloud storage and services performed by TriCore solutions. The CloudArray solution enables users to provision volumes on-demand having policies to store backup data locally (cache) having a replica in the Cloud. CloudArray also encrypts and compresses data prior to delivering it to Cloud storage thereby providing security and performance.  </p>
<p>We provide an overview of the solution in the following presentation: </p>
<div style="width:198px;text-align:left" id="__ss_2600398"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/rinfantino/cenable-oracle-recovery-manager-rman-to-store-backup-data-from-your-oracle-database-to-cloud-storage-using-cloudarray-software-and-services-from-tricore-solutions" title="Enable Oracle® Recovery Manager (RMAN) to store backup data from your Oracle database to Cloud storage using CloudArray™ software and services from TriCore™ Solutions">View presentation &#8211; Click here to best view on SlideShare</a><object style="margin:0px" width="198" height="165"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=cloudarrayrmanbackupsolution-091127213054-phpapp02&#038;rel=0&#038;stripped_title=cenable-oracle-recovery-manager-rman-to-store-backup-data-from-your-oracle-database-to-cloud-storage-using-cloudarray-software-and-services-from-tricore-solutions" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=cloudarrayrmanbackupsolution-091127213054-phpapp02&#038;rel=0&#038;stripped_title=cenable-oracle-recovery-manager-rman-to-store-backup-data-from-your-oracle-database-to-cloud-storage-using-cloudarray-software-and-services-from-tricore-solutions" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="198" height="165"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;"></div>
</div>
<p><strong>Benefits:</strong><br />
The solution lessens the need to store backup data to tape and eliminates the cost involved in managing tape off-site by third party tape vaulting companies. Depending upon retention policies and the amount of data stored off-site, the cost of physical media is the largest cost component of the backup process. Data vaulting services may run as much as 15% of the media costs. For example, a company spending $40,000 per year on LTO could expect to spend as much as $6,000 per year to store the data off-site. CloudArray software and public Cloud storage combined is approx 1/20th of the cost resulting in a significant savings to the customer with near immediate ROI.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Bookmark to:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://blog.twinstrata.com/2009/12/07/enable-oracle%c2%ae-recovery-manager-rman-to-store-backup-data-to-cloud-storage/&amp;title=Enable+Oracle%C2%AE+Recovery+Manager+%28RMAN%29+to+store+backup+data+to+Cloud+storage" title="Add 'Enable Oracle® Recovery Manager (RMAN) to store backup data to Cloud storage' on Del.icio.us"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Enable Oracle® Recovery Manager (RMAN) to store backup data to Cloud storage' on Del.icio.us" alt="Add 'Enable Oracle® Recovery Manager (RMAN) to store backup data to Cloud storage' on Del.icio.us" /> Del.icio.us</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://blog.twinstrata.com/2009/12/07/enable-oracle%c2%ae-recovery-manager-rman-to-store-backup-data-to-cloud-storage/&amp;title=Enable+Oracle%C2%AE+Recovery+Manager+%28RMAN%29+to+store+backup+data+to+Cloud+storage" title="Add 'Enable Oracle® Recovery Manager (RMAN) to store backup data to Cloud storage' on digg"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Enable Oracle® Recovery Manager (RMAN) to store backup data to Cloud storage' on digg" alt="Add 'Enable Oracle® Recovery Manager (RMAN) to store backup data to Cloud storage' on digg" /> digg</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home?status=http://blog.twinstrata.com/2009/12/07/enable-oracle%c2%ae-recovery-manager-rman-to-store-backup-data-to-cloud-storage/" title="Add 'Enable Oracle® Recovery Manager (RMAN) to store backup data to Cloud storage' on Twitter"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/twitter.png" title="Add 'Enable Oracle® Recovery Manager (RMAN) to store backup data to Cloud storage' on Twitter" alt="Add 'Enable Oracle® Recovery Manager (RMAN) to store backup data to Cloud storage' on Twitter" /> Twitter</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.myspace.com/Modules/PostTo/Pages/?t=Enable+Oracle%C2%AE+Recovery+Manager+%28RMAN%29+to+store+backup+data+to+Cloud+storage&amp;c=http://blog.twinstrata.com/2009/12/07/enable-oracle%c2%ae-recovery-manager-rman-to-store-backup-data-to-cloud-storage/" title="Add 'Enable Oracle® Recovery Manager (RMAN) to store backup data to Cloud storage' on MySpace"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/myspace.png" title="Add 'Enable Oracle® Recovery Manager (RMAN) to store backup data to Cloud storage' on MySpace" alt="Add 'Enable Oracle® Recovery Manager (RMAN) to store backup data to Cloud storage' on MySpace" /> MySpace</a> | <br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://blog.twinstrata.com/2009/12/07/enable-oracle%c2%ae-recovery-manager-rman-to-store-backup-data-to-cloud-storage/&amp;t=Enable+Oracle%C2%AE+Recovery+Manager+%28RMAN%29+to+store+backup+data+to+Cloud+storage" title="Add 'Enable Oracle® Recovery Manager (RMAN) to store backup data to Cloud storage' on FaceBook"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'Enable Oracle® Recovery Manager (RMAN) to store backup data to Cloud storage' on FaceBook" alt="Add 'Enable Oracle® Recovery Manager (RMAN) to store backup data to Cloud storage' on FaceBook" /> FaceBook</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://blog.twinstrata.com/2009/12/07/enable-oracle%c2%ae-recovery-manager-rman-to-store-backup-data-to-cloud-storage/&amp;title=Enable+Oracle%C2%AE+Recovery+Manager+%28RMAN%29+to+store+backup+data+to+Cloud+storage" title="Add 'Enable Oracle® Recovery Manager (RMAN) to store backup data to Cloud storage' on reddit"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="Add 'Enable Oracle® Recovery Manager (RMAN) to store backup data to Cloud storage' on reddit" alt="Add 'Enable Oracle® Recovery Manager (RMAN) to store backup data to Cloud storage' on reddit" /> reddit</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://blog.twinstrata.com/2009/12/07/enable-oracle%c2%ae-recovery-manager-rman-to-store-backup-data-to-cloud-storage/&amp;title=Enable+Oracle%C2%AE+Recovery+Manager+%28RMAN%29+to+store+backup+data+to+Cloud+storage" title="Add 'Enable Oracle® Recovery Manager (RMAN) to store backup data to Cloud storage' on Stumble Upon"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Enable Oracle® Recovery Manager (RMAN) to store backup data to Cloud storage' on Stumble Upon" alt="Add 'Enable Oracle® Recovery Manager (RMAN) to store backup data to Cloud storage' on Stumble Upon" /> Stumble Upon</a> | </div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://blog.twinstrata.com/2009/12/07/enable-oracle%c2%ae-recovery-manager-rman-to-store-backup-data-to-cloud-storage/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Via CloudArray software, Veeam now supports Cloud storage</title>
		<link>http://blog.twinstrata.com/2009/12/02/via-cloudarray-software-veeam-now-supports-cloud-storage/</link>
		<comments>http://blog.twinstrata.com/2009/12/02/via-cloudarray-software-veeam-now-supports-cloud-storage/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 20:41:48 +0000</pubDate>
		<dc:creator>Robert Infantino</dc:creator>
				<category><![CDATA[backup]]></category>
		<category><![CDATA[replication]]></category>
		<category><![CDATA[Cloud Storage]]></category>
		<category><![CDATA[restore]]></category>
		<category><![CDATA[Veeam]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://blog.twinstrata.com/?p=99</guid>
		<description><![CDATA[CloudArray software is qualified with Veeam Backup &#038; Replication software. Veeam, used by SMB to large enterprises for fast recovery of VMware ESX and ESXi environments can now leverage Cloud storage for backup and replication data. Companies we speak to continue to work on driving the cost out of backup, off-site tape management and replication [...]]]></description>
			<content:encoded><![CDATA[<p>CloudArray software is qualified with Veeam Backup &#038; Replication software. Veeam, used by SMB to large enterprises for fast recovery of VMware ESX and ESXi environments can now leverage Cloud storage for backup and replication data. Companies we speak to continue to work on driving the cost out of backup, off-site tape management and replication platforms. Cloud storage via CloudArray software address these challenges. </p>
<p>Learn more about CloudArray and Veeam working seamlessly together to protect virtual server environments by viewing the following presentation. The presentation also provides a 3 yr TCO for backup and replication of a 5 TB environment. It compares traditional solutions with Cloud storage using CloudArray. </p>
<p>Enjoy. </p>
<div style="width:300px;text-align:left" id="__ss_2386861"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/rinfantino/backup-restore-to-cloud-storage-with-veeam-and-cloudarray-software" title="view presentation">View presentation</a><object style="margin:0px" width="300" height="251"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=cloudarrayveeambackupsolution1030-091030161214-phpapp01&#038;rel=0&#038;stripped_title=backup-restore-to-cloud-storage-with-veeam-and-cloudarray-software" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=cloudarrayveeambackupsolution1030-091030161214-phpapp01&#038;rel=0&#038;stripped_title=backup-restore-to-cloud-storage-with-veeam-and-cloudarray-software" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="300" height="251"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">.</div>
</div>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Bookmark to:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://blog.twinstrata.com/2009/12/02/via-cloudarray-software-veeam-now-supports-cloud-storage/&amp;title=Via+CloudArray+software%2C+Veeam+now+supports+Cloud+storage" title="Add 'Via CloudArray software, Veeam now supports Cloud storage' on Del.icio.us"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Via CloudArray software, Veeam now supports Cloud storage' on Del.icio.us" alt="Add 'Via CloudArray software, Veeam now supports Cloud storage' on Del.icio.us" /> Del.icio.us</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://blog.twinstrata.com/2009/12/02/via-cloudarray-software-veeam-now-supports-cloud-storage/&amp;title=Via+CloudArray+software%2C+Veeam+now+supports+Cloud+storage" title="Add 'Via CloudArray software, Veeam now supports Cloud storage' on digg"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Via CloudArray software, Veeam now supports Cloud storage' on digg" alt="Add 'Via CloudArray software, Veeam now supports Cloud storage' on digg" /> digg</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home?status=http://blog.twinstrata.com/2009/12/02/via-cloudarray-software-veeam-now-supports-cloud-storage/" title="Add 'Via CloudArray software, Veeam now supports Cloud storage' on Twitter"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/twitter.png" title="Add 'Via CloudArray software, Veeam now supports Cloud storage' on Twitter" alt="Add 'Via CloudArray software, Veeam now supports Cloud storage' on Twitter" /> Twitter</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.myspace.com/Modules/PostTo/Pages/?t=Via+CloudArray+software%2C+Veeam+now+supports+Cloud+storage&amp;c=http://blog.twinstrata.com/2009/12/02/via-cloudarray-software-veeam-now-supports-cloud-storage/" title="Add 'Via CloudArray software, Veeam now supports Cloud storage' on MySpace"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/myspace.png" title="Add 'Via CloudArray software, Veeam now supports Cloud storage' on MySpace" alt="Add 'Via CloudArray software, Veeam now supports Cloud storage' on MySpace" /> MySpace</a> | <br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://blog.twinstrata.com/2009/12/02/via-cloudarray-software-veeam-now-supports-cloud-storage/&amp;t=Via+CloudArray+software%2C+Veeam+now+supports+Cloud+storage" title="Add 'Via CloudArray software, Veeam now supports Cloud storage' on FaceBook"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'Via CloudArray software, Veeam now supports Cloud storage' on FaceBook" alt="Add 'Via CloudArray software, Veeam now supports Cloud storage' on FaceBook" /> FaceBook</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://blog.twinstrata.com/2009/12/02/via-cloudarray-software-veeam-now-supports-cloud-storage/&amp;title=Via+CloudArray+software%2C+Veeam+now+supports+Cloud+storage" title="Add 'Via CloudArray software, Veeam now supports Cloud storage' on reddit"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="Add 'Via CloudArray software, Veeam now supports Cloud storage' on reddit" alt="Add 'Via CloudArray software, Veeam now supports Cloud storage' on reddit" /> reddit</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://blog.twinstrata.com/2009/12/02/via-cloudarray-software-veeam-now-supports-cloud-storage/&amp;title=Via+CloudArray+software%2C+Veeam+now+supports+Cloud+storage" title="Add 'Via CloudArray software, Veeam now supports Cloud storage' on Stumble Upon"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Via CloudArray software, Veeam now supports Cloud storage' on Stumble Upon" alt="Add 'Via CloudArray software, Veeam now supports Cloud storage' on Stumble Upon" /> Stumble Upon</a> | </div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://blog.twinstrata.com/2009/12/02/via-cloudarray-software-veeam-now-supports-cloud-storage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CloudArray software provides Cloud storage support for Vizioncore vRanger Pro Backup and Recovery software</title>
		<link>http://blog.twinstrata.com/2009/12/02/cloudarray-software-provides-cloud-storage-support-for-vizioncore-vranger-pro-backup-and-recovery-software/</link>
		<comments>http://blog.twinstrata.com/2009/12/02/cloudarray-software-provides-cloud-storage-support-for-vizioncore-vranger-pro-backup-and-recovery-software/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 18:03:06 +0000</pubDate>
		<dc:creator>Robert Infantino</dc:creator>
				<category><![CDATA[backup]]></category>
		<category><![CDATA[replication]]></category>
		<category><![CDATA[Cloud Storage]]></category>
		<category><![CDATA[Vizioncore]]></category>
		<category><![CDATA[vRanger Pro]]></category>

		<guid isPermaLink="false">http://blog.twinstrata.com/?p=90</guid>
		<description><![CDATA[Companies using Vizioncore vRanger Pro Backup and Recovery software to protect virtual environments can increase the effectiveness and efficiency of their IT investment by storing backup data off-site in public Cloud storage. IT departments struggling with shortening backup windows, tape errors, tape retention periods, and the occasional tape library failure can now point vRanger Pro [...]]]></description>
			<content:encoded><![CDATA[<p>Companies using Vizioncore vRanger Pro Backup and Recovery software to protect virtual environments can increase the effectiveness and efficiency of their IT investment by storing backup data off-site in public Cloud storage. IT departments struggling with shortening backup windows, tape errors, tape retention periods, and the occasional tape library failure can now point vRanger Pro to Cloud storage using CloudArray software by TwinStrata. </p>
<p>The following presentation provides a high level functional overview on how vRanger Pro together with CloudArray work seamlessly to protect VMware ESX and ESXi environments. </p>
<p>The presentation also provides a 3-year TCO of traditional backup and replication solutions using tape as the target platform compared to Cloud storage. Payback is certain cases can be as quickly as a month. </p>
<p>There is also a <a href="http://twinstrata.com/cloudarray_private_beta.html">pointer </a>for a Free 30-day trial of CloudArray. </p>
<div style="width:300px;text-align:left" id="__ss_2399469"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/rinfantino/backup-restore-to-cloud-storage-with-vranger-pro-and-cloudarray-software" title="View presentation</a><object style="margin:0px" width="300" height="251"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=cloudarrayvrangeprobackupsolution1031-091101213731-phpapp02&#038;rel=0&#038;stripped_title=backup-restore-to-cloud-storage-with-vranger-pro-and-cloudarray-software" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=cloudarrayvrangeprobackupsolution1031-091101213731-phpapp02&#038;rel=0&#038;stripped_title=backup-restore-to-cloud-storage-with-vranger-pro-and-cloudarray-software" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="300" height="251"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;"></div>
</div>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Bookmark to:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://blog.twinstrata.com/2009/12/02/cloudarray-software-provides-cloud-storage-support-for-vizioncore-vranger-pro-backup-and-recovery-software/&amp;title=CloudArray+software+provides+Cloud+storage+support+for+Vizioncore+vRanger+Pro+Backup+and+Recovery+software" title="Add 'CloudArray software provides Cloud storage support for Vizioncore vRanger Pro Backup and Recovery software' on Del.icio.us"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'CloudArray software provides Cloud storage support for Vizioncore vRanger Pro Backup and Recovery software' on Del.icio.us" alt="Add 'CloudArray software provides Cloud storage support for Vizioncore vRanger Pro Backup and Recovery software' on Del.icio.us" /> Del.icio.us</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://blog.twinstrata.com/2009/12/02/cloudarray-software-provides-cloud-storage-support-for-vizioncore-vranger-pro-backup-and-recovery-software/&amp;title=CloudArray+software+provides+Cloud+storage+support+for+Vizioncore+vRanger+Pro+Backup+and+Recovery+software" title="Add 'CloudArray software provides Cloud storage support for Vizioncore vRanger Pro Backup and Recovery software' on digg"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'CloudArray software provides Cloud storage support for Vizioncore vRanger Pro Backup and Recovery software' on digg" alt="Add 'CloudArray software provides Cloud storage support for Vizioncore vRanger Pro Backup and Recovery software' on digg" /> digg</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home?status=http://blog.twinstrata.com/2009/12/02/cloudarray-software-provides-cloud-storage-support-for-vizioncore-vranger-pro-backup-and-recovery-software/" title="Add 'CloudArray software provides Cloud storage support for Vizioncore vRanger Pro Backup and Recovery software' on Twitter"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/twitter.png" title="Add 'CloudArray software provides Cloud storage support for Vizioncore vRanger Pro Backup and Recovery software' on Twitter" alt="Add 'CloudArray software provides Cloud storage support for Vizioncore vRanger Pro Backup and Recovery software' on Twitter" /> Twitter</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.myspace.com/Modules/PostTo/Pages/?t=CloudArray+software+provides+Cloud+storage+support+for+Vizioncore+vRanger+Pro+Backup+and+Recovery+software&amp;c=http://blog.twinstrata.com/2009/12/02/cloudarray-software-provides-cloud-storage-support-for-vizioncore-vranger-pro-backup-and-recovery-software/" title="Add 'CloudArray software provides Cloud storage support for Vizioncore vRanger Pro Backup and Recovery software' on MySpace"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/myspace.png" title="Add 'CloudArray software provides Cloud storage support for Vizioncore vRanger Pro Backup and Recovery software' on MySpace" alt="Add 'CloudArray software provides Cloud storage support for Vizioncore vRanger Pro Backup and Recovery software' on MySpace" /> MySpace</a> | <br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://blog.twinstrata.com/2009/12/02/cloudarray-software-provides-cloud-storage-support-for-vizioncore-vranger-pro-backup-and-recovery-software/&amp;t=CloudArray+software+provides+Cloud+storage+support+for+Vizioncore+vRanger+Pro+Backup+and+Recovery+software" title="Add 'CloudArray software provides Cloud storage support for Vizioncore vRanger Pro Backup and Recovery software' on FaceBook"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'CloudArray software provides Cloud storage support for Vizioncore vRanger Pro Backup and Recovery software' on FaceBook" alt="Add 'CloudArray software provides Cloud storage support for Vizioncore vRanger Pro Backup and Recovery software' on FaceBook" /> FaceBook</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://blog.twinstrata.com/2009/12/02/cloudarray-software-provides-cloud-storage-support-for-vizioncore-vranger-pro-backup-and-recovery-software/&amp;title=CloudArray+software+provides+Cloud+storage+support+for+Vizioncore+vRanger+Pro+Backup+and+Recovery+software" title="Add 'CloudArray software provides Cloud storage support for Vizioncore vRanger Pro Backup and Recovery software' on reddit"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="Add 'CloudArray software provides Cloud storage support for Vizioncore vRanger Pro Backup and Recovery software' on reddit" alt="Add 'CloudArray software provides Cloud storage support for Vizioncore vRanger Pro Backup and Recovery software' on reddit" /> reddit</a> | <a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://blog.twinstrata.com/2009/12/02/cloudarray-software-provides-cloud-storage-support-for-vizioncore-vranger-pro-backup-and-recovery-software/&amp;title=CloudArray+software+provides+Cloud+storage+support+for+Vizioncore+vRanger+Pro+Backup+and+Recovery+software" title="Add 'CloudArray software provides Cloud storage support for Vizioncore vRanger Pro Backup and Recovery software' on Stumble Upon"><img src="http://blog.twinstrata.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'CloudArray software provides Cloud storage support for Vizioncore vRanger Pro Backup and Recovery software' on Stumble Upon" alt="Add 'CloudArray software provides Cloud storage support for Vizioncore vRanger Pro Backup and Recovery software' on Stumble Upon" /> Stumble Upon</a> | </div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://blog.twinstrata.com/2009/12/02/cloudarray-software-provides-cloud-storage-support-for-vizioncore-vranger-pro-backup-and-recovery-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

