SPECIAL REPORT. Data Deduplication. Deep Dive. Put your backups on a diet. Copyright InfoWorld Media Group. All rights reserved.

Size: px
Start display at page:

Download "SPECIAL REPORT. Data Deduplication. Deep Dive. Put your backups on a diet. Copyright InfoWorld Media Group. All rights reserved."

Transcription

1 SPECIAL REPORT Data Deduplication Deep Dive Put your backups on a diet Copyright InfoWorld Media Group. All rights reserved. Sponsored by

2 2 Data deduplication explained How to reduce backup overhead and lower storage costs by eliminating redundant data i By Keith Schultz InfoWorld EVEN THE MOST EFFICIENT BUSINESSES waste oodles of storage. It s a simple fact of business life. Day in and day out, we create documents and we share them. By the time everyone is done ing and copying, there will be dozens if not hundreds of duplicates of the same presentation, PDF, or spreadsheet strewn throughout the company network. Combine all of those copies with nightly backups, and duplicate bytes soon add up to duplicate gigabytes and terabytes. And it isn t just a storage issue. More data means more spinning disks, more heat, and larger backup sizes. Larger backup sizes mean longer restore times (and more unhappy users). If you can reduce the amount of data stored, those savings translate directly into less power consumption and more manageable backup systems, and ultimately a more efficient operation. Data deduplication takes advantage of the enormous amount of redundancy in business data to dramatically reduce storage requirements. Backups of client systems, file servers, databases, and virtual infrastructure are all ripe for data deduplication. Eliminating duplicate data can reduce the amount of storage space necessary from a 10-to-1 ratio to a 50-to-1 ratio and beyond, depending on the deduplication technology used and the level of data redundancy. With a little help from data deduplication, companies can reduce costs, lighten backup requirements, and accelerate data restoration in an emergency. Deduplication takes several different forms, each with its own approach and optimal role in backup and disaster recovery scenarios. Data deduplication technology is also being applied to live storage systems -- particularly in areas such as virtual server farms, virtual desktops, and stores, where there are high levels of redundant data -- and will go mainstream for primary storage as a standard feature in Windows Server In the meantime, let s take a look at why data deduplication has become so attractive to so many organizations. TOO MUCH DATA, TOO LITTLE TIME Like program flyers at a county fair, duplicate data is strewn all over enterprise storage systems. Files are saved to file shares in the data center, with other copies located on an FTP or Web server facing the Internet, and yet another copy (or four) located in users personal folders. Sometimes backup copies are made prior to exporting to another system or updating to new software. Are users good about deleting these extra copies? Not really. The blast is a classic example of duplicate data. It goes like this: Someone in human resources wants to send out the new Internet acceptable use policy PDF to 100 users on the network. So he or she creates an , addresses it to a mailing list, attaches the PDF, and presses send. The mail server now has 100 copies of the same attachment in its storage system. Only one copy of the attachment is really necessary, yet with no deduplication system in place, all those copies sit in the mail store taking up space. Server virtualization is another area rife with duplicate data. The whole idea of virtualization is to do more with less and maximize hardware utilization by spinning up multiple virtual machines in one physical server. This equates to less hardware expense (fewer physical machines), lower utility costs, and (hopefully) easier management. But although the server hardware footprint becomes smaller, the storage requirements typically become greater. Each virtual server, whether a VMware, Microsoft, Citrix, or another type of virtual machine, is contained in a file or disk image. For instance, VMware uses a single VMDK (virtual machine disk) file as the virtual hard disk for the virtual machine. As you would expect, VMDK

3 3 files tend to be rather large at least 2GB, and almost always much larger. One of the great features of virtual machines is that admins can back up the virtual machine (either when offline or online), as well as create snapshots for pointin-time recovery. Now what happens with all of these backup copies? That s right: a lot of duplicate files stored on a file server. Admins also keep golden images of working virtual servers to spawn new virtual machines. Each time a golden image is versioned, you can bet that the previous image is still there. Virtualization is a fantastic way to get the most out of CPU and memory, but without deduplication, virtual hard disks can actually increase network storage requirements. VDI (virtual desktop infrastructure), a close cousin of server virtualization, promises to contribute further to the virtual machine sprawl. Just as server virtualization consolidates multiple server instances, VDI runs multiple virtual desktops on a single host. Although VDI solutions have their own deduplication tricks, such as spinning up multiple virtual desktops from one golden image, most virtual desktops deployed today are persistent: i.e., virtual disks are unique to each and must be stored from session to session. So VDI is a perfect candidate for deduplication because of the large number of very similar virtual disks shared between users. Virtualization may be light on client-side system hardware, but it s heavy on storage. DEFINING DATA DEDUPLICATION AND ITS BENEFITS Simply put, deduplication is the process of detecting and removing duplicate data from a storage medium or file system. Duplicate data may be detected at the file, bit, or block level, depending on the type and aggressiveness of the deduplication process. File deduplication is the fastest method, but also the least effective, because deduplication can occur only when files are identical at the bit level. If two files differ in name only, for example, both files will be stored. Bitlevel and block-level deduplication take a more granular approach. Both methods peer inside the file to analyze its contents, looking for duplicate sequences of bits or blocks of data. Deduplication at the bit or block level is much more effective than file-level dedupe, but also more processing-intensive. Greater data reduction comes at the cost of performance. The first time a deduplication system sees a file or a chunk of a file, that data element is identified. Thereafter, each subsequent identical item is removed from the system but marked with a small placeholder. The placeholder points back to the first instance of the data chunk so that the deduped data can be reassembled when needed. The more duplicate data you have, the fewer original chunks need to be stored. For example, a file system that has 100 copies of the same document from HR in each employee s personal folder can be reduced to a single copy of the original file plus 99 tiny placeholders that point back to the original file. It s easy to see how that can vastly reduce storage requirements, not to mention why it makes much more sense to back up the deduped file system instead of the original. Another benefit of data deduplication is the ability to keep more backup sets on nearline storage. With the amount of backup disk space reduced, more point-in-time backups can be kept ready on disk, making file restoration faster and easier. This also allows for a longer backup history to be maintained. Instead of only having three versions of the file to restore, users can have many more, possibly going back weeks or even months, enabling a granular approach to file backups and accommodating loads of backup history. Disaster recovery is another process that greatly benefits from data deduplication. For years, data compression (which operates within individual files) was the only way to reduce the overall size of the off-site data set. Add deduplication and the backup set can be reduced even more. Why transfer the same data set each night when only a small portion of it changed that day? Deduplication in disaster recovery makes perfect sense: Not only is the transfer time reduced, but the WAN is used more efficiently with less overall traffic. HOW DATA DEDUPLICATION WORKS Data deduplication works by analyzing a chunk of data be it a block of data, a series of bits, or the entire file. This chunk is run through an algorithm to create a unique key, called a hash, and the hash in turn is stored in an index. As each new chunk of data gets hashed, it is compared to the existing hashes in the index. If the hash is already in

4 4 the index, this means that the chunk of data is a duplicate and doesn t need to be stored again; instead of storing the chunk, the deduplication engine inserts a small placeholder that points back to the hash index. If the hash is not in the index, the chunk is stored in the deduplication dictionary, the hash is added to the index, and so on. It is easy to see that the number of hashes stored in an index can number in the millions or tens of millions. The greater the amount of data analyzed, the larger the hash index will be and the greater the potential storage savings. Deduplication doesn t start working immediately. The system needs to spend some time learning what data it will see in order to build the initial indexes. This means there is a cold penalty the first time a piece of data passes through the deduplication analysis engine. On subsequent passes, as increasing volumes of duplicate data pass through the engine, more and more duplicates are found and removed. To see how this works, let s return to our example of the PDF attachments, which went out to 100 employees. Each PDF is 25MB, which means the mail server s storage has just increased by roughly 2.5GB (plus the s themselves). Now suppose the mail server does a nightly backup to an NAS appliance. The backup, as we saw above, has just increased a minimum of 2.5GB from a single blast. If the network admin wants to keep a week s worth of backups for disaster recovery, the total weekly backup is now 17.5GB larger due to the bulk . Here s how data deduplication can help. By identifying and removing the duplicate attachments and storing only a single copy, deduplication keeps the nightly backup at a paltry 25MB the size of one copy of the original attachment. For the weekly backups, instead of storing 17.5GB, the backup system stores only 175MB, a 90 percent reduction in storage requirements. Think of how many more backup sets admins could keep online or nearline with that kind of storage reduction. It would be easy to keep months of history instead of only a few days worth. FILE-, BIT-, AND BLOCK-LEVEL DEDUPLICATION There are three levels of deduplication: file-, bit-, and block-level. In file-level deduplication, each file is analyzed as a whole, and a hash value is created. The deduplication software looks at the whole file regardless of name, size or type. The problem is that if a file is different by just a single bit, its hash will be different from other versions. This makes file-level deduplication very inefficient and impractical. For example, one user creates a document in Word Another user opens it and saves a copy (without any changes) to another location, but in Word 2007 instead. Same file, different format different hash, and no deduplication. Bit-level deduplication and block-level deduplication are vastly more efficient. In both cases, the analysis engine breaks files into chunks or segments and creates hashes based on those smaller pieces. The smaller pieces allow for a higher probability of a match; the more matches, the greater the reduction of data on the system. Unlike with file-level deduplication, if a portion of the file changes, bit- and block-level deduplication only transfer the changed portion, not the entire file. The goal of a bit- or block-level system is to create a very large index of hashes in order to identify many more duplicate items. But, as with many things, there is a point of diminishing returns. If the placeholder is nearly the same size as the removed data, the deduplication gain isn t worthwhile. Or if the number of hashes in the indexing system becomes too large, overall performance of the system may suffer due to database look up latency. SOURCE, TARGET, AND INLINE DEDUPLICATION Just as there are three levels of deduplication, there are also three ways of deploying deduplication. The deduplication engine can run on the production storage system (source), on the backup system (target), or in a dedicated appliance (or appliances) between the source and target (inline). Naturally, each option has its advantages and drawbacks. SOURCE DEDUPLICATION Source deduplication analyzes files on the original server and creates hashes for each file, bit, or block. The deduplication engine runs on the source server, usually as part of a backup application. During a backup operation, the deduplication engine creates hashes for the data and compares them to hashes of the data already stored at the

5 5 backup destination. Whenever the hashes are the same, only the placeholder reference is copied over. Otherwise, the data is copied to the backup server and the unique hash is added to the deduplication index. Source deduplication is good for keeping network bandwidth under control. Only the deduped data is transferred over the LAN/WAN, instead of each and every bit. The backup destination s backup set is smaller because it receives optimized data only. Plus, a software package is the only change to the network. No new appliances or any other changes are required to deduplicate the data. Source-level deduplication is a good choice only if performance isn t high on the list of requirements. The overall backup process tends to be slower if backup software does the deduplication, due to the extra overhead needed to create, analyze, and transfer hashes and their associated chunks of data. Small data sets don t pay as much of a performance penalty, but large sets can really slow a system to a crawl. The other downside to source deduplication is that the benefits are isolated. Multiple copies of bits, bytes, and files are removed from each source, but the data cannot be deduplicated across multiple sources. If copies of files are strewn across many hosts on your network, you ll still be backing up a lot of duplicate data. TARGET DEDUPLICATION Target deduplication does not impact source server performance in any way. The deduplication is performed on the destination server once the backup is finished. Any off-the-shelf backup software package can be used with target deduplication since no hashes are created on the source server. Target deduplication is backup-system agnostic: It really doesn t care how the data gets to the backup server. Detection of duplicate data is typically very fast, making target-based deduplication ideal where performance is a primary concern. Two major drawbacks to target deduplication are storage space and network bandwidth. Because the deduplication doesn t take place until after the backup set arrives, the backup server must have a large landing zone a large amount of disk space available to store the backup set. When deduplication is complete, and the backup set has been moved to its offline location, the temporary storage can be purged and reset for the next backup. One of deduplication s selling points is the reduction of spindles, but in target deduplication, a few more are needed to hold the pre-deduped backup set. Target deduplication also requires the entire backup data set to be sent over the wire to the backup server. Again, because deduplication doesn t happen until the backup job is complete, every bit has to be sent over the network, in some cases via a slower WAN link. Although you ve reduced the storage requirements for your backup server, transferring the data for disaster recovery will consume as much bandwidth and precious time as before. INLINE DEDUPLICATION Inline deduplication splits the two previous methods by using a specialized appliance to intercept the data in flight between the source and target. There are a couple of ways to do this. One method is to deploy a single dedupe appliance in front of the target storage systems. The second method uses a pair of appliances one on either side of the system, like a WAN circuit, for example to reduce the amount of data traveling over the wire. Fewer bits on the wire equal faster transfers and faster file restoration when disaster strikes. An inline appliance creates hashes on the fly as data passes through and only forwards the unique chunks. This approach to deduplication doesn t require any special software on the source server (like target deduplication, it is backup-application agnostic) nor does it need additional storage space on the destination server. Stored data is already deduped, reducing storage costs and power consumption. The only real downside to inline data deduplication is the high cost of the specialized appliance and the possibility that if the appliance is underpowered or the wrong unit is chosen, the device itself can become a bottleneck. For the most part, that won t happen, but keep scalability in mind. Inline solutions from many vendors are available in physical as well as virtual appliances for VMware ESX, Citrix XenServer, and Microsoft Hyper-V. STRAINING BACKUP SYSTEMS So, how to back up all this data? Many businesses still rely on old tape backup systems, but it s getting harder and harder to back up multiple terabytes of data to

6 6 tape in a reasonable amount of time. Although modern tape libraries and parallel backup systems increase both capacity and performance, they are not winning the race with data growth. Time, in terms of shrinking backup windows, becomes the limiting factor. VTLs (virtual tape libraries) offer a speedier alternative to tape, using hard disks in configurations that mimic standard tape drives. Many VTL solutions serve as a front end to traditional tape libraries, allowing for high-speed backup to disk, followed by slower backup to tape. Of course, VTLs add some complexity to the backup system, and their additional spindles entail additional cost and power consumption. To avoid the limiting factors of tape systems, many admins are using disk-based storage systems as their primary storage location. This does solve tape drive performance and capacity issues, but it doesn t reduce the number of spindles in play. All things considered, wouldn t it be better if there were simply less data to back up? Data glut compounds the difficulty of disaster recovery, making each stage of nearline and offline storage more expensive. Keeping a copy of the backup in nearline storage makes restoring missing or corrupt files easy. But depending on the backup set size and the number of backup sets admins want to keep handy, your nearline storage can be quite substantial. The next tier, offline storage, is comprised of tapes or other media copies thrown in a vault or sent to some other secure location. Again, if the dataset is large and growing, this offline media set must expand to fit. Many disaster recovery plans include sending the backup set to another geographical location via a WAN or to a cloud-based storage provider. Unless your company has deep pockets and can afford a very fast, low latency WAN link, it would be beneficial to keep the size of the backup set to a minimum. That goes double for restoring data. If the set is really large, trying to restore from an offsite backup will add downtime and end-user frustration. WAN acceleration appliances help streamline backup data transfers by compressing the data in flight, playing tricks with TCP (which helps reduce latency and improves response time), and performing their own data deduplication. Many of these solutions scale well into multiple terabytes and even petabytes of capacity. The nice thing about WAN acceleration appliances is that the performance gains apply in both directions. What s good for the backup is also good for the restore. There are also new cloud gateway appliances that directly connect to cloud storage providers and dedupe data between the data center and the online storage. Simply use your existing backup package, set the cloud gateway appliance as the target, and walk away. The appliance handles the deduplication and transmission of the backup set to the cloud while maintaining a local copy of the most recently saved data for faster restoration. Cloud deduplication will undoubtedly catch up with today s global deduplication solutions, which share deduplication metadata across multiple devices. In the meantime, watch out for the one-to-one solution. For instance, data center 1 (DC1) backs up to a cloud dedupe appliance that is in turn connected to a cloud storage provider. Everything is fine until that fateful day when DC1 is down and IT tries to restore the deduped cloud data to another site (DC2). Because the deduplication hashes and stored byte segments are on DC1 s appliance, and that information isn t shared between sites, DC2 cannot put Humpty Dumpty back together again. In most cases, you ll want a cloud storage gateway that allows your deduped backups to be reconstituted in the cloud itself or at another location. DEDUPING BEYOND THE BACKUP TIER If deduplication works so well with backups, why not apply it to the primary storage tier? In fact, real-time deduplication on live storage systems is becoming a reality. Real-time deduplication software watches the local file system for duplicate files or chunks of files. Then the usual process ensues: When redundant data is located, hashes and placeholders point to indexed chunks of data, reducing online storage requirements. No additional hardware is needed, and to the end-user, all the deduped files look and behave just like the original file. This also works inside virtual systems, potentially reducing their overall file size. Live storage deduplication has been applied to virtual server and virtual desktop environments, and it holds a great deal of promise for SSD storage arrays. Although dedupe is taking longer to penetrate traditional storage systems, it will be a feature built into Windows Server

7 Some specific criteria must be met in order to deduplicate the live storage system, such as deduplication cannot take place on a boot volume and it only works with a specific file system. While it is technically the live storage area, this deduplication feature will run post process, meaning deduplication takes place after the files are written. This type of deduplication has some possible drawbacks. For one, data reduction will be locked to the specific storage volume. Data deduped on one volume will be reconstituted to its full size when copied or moved to another storage volume or server. The deduplication hashes are not shared, as in our one-to-one cloud gateway example. Another drawback is performance. Although there should be no discernible write penalty (since the deduplication takes place after the file is stored) there may be one during a read. When a user copies, moves, or reads a file from a deduped volume, the deduped segments have to be read and reassembled so that the original file is available. A performance hit is all but assured due to the reconstitution of the file chunks. It may take awhile for data deduplication to hit its stride in the primary tier. But deduplication is already extremely effective at the backup tier, where, after all, the vast majority of duplicate data resides. Ballooning data stores will continue to strain existing storage and backup systems. But with data deduplication removing redundant data from the network, we can at least delay the day when we all have more petabytes than we can possibly handle. i Keith Schultz is president of NetData Consulting Services and a contributing editor to InfoWorld.

Reducing Backups with Data Deduplication

Reducing Backups with Data Deduplication The Essentials Series: New Techniques for Creating Better Backups Reducing Backups with Data Deduplication sponsored by by Eric Beehler Reducing Backups with Data Deduplication... 1 Explaining Data Deduplication...

More information

Top Ten Questions. to Ask Your Primary Storage Provider About Their Data Efficiency. May 2014. Copyright 2014 Permabit Technology Corporation

Top Ten Questions. to Ask Your Primary Storage Provider About Their Data Efficiency. May 2014. Copyright 2014 Permabit Technology Corporation Top Ten Questions to Ask Your Primary Storage Provider About Their Data Efficiency May 2014 Copyright 2014 Permabit Technology Corporation Introduction The value of data efficiency technologies, namely

More information

STORAGE SOURCE DATA DEDUPLICATION PRODUCTS. Buying Guide: inside

STORAGE SOURCE DATA DEDUPLICATION PRODUCTS. Buying Guide: inside Managing the information that drives the enterprise STORAGE Buying Guide: inside 2 Key features of source data deduplication products 5 Special considerations Source dedupe products can efficiently protect

More information

Data De-duplication Methodologies: Comparing ExaGrid s Byte-level Data De-duplication To Block Level Data De-duplication

Data De-duplication Methodologies: Comparing ExaGrid s Byte-level Data De-duplication To Block Level Data De-duplication Data De-duplication Methodologies: Comparing ExaGrid s Byte-level Data De-duplication To Block Level Data De-duplication Table of Contents Introduction... 3 Shortest Possible Backup Window... 3 Instant

More information

Data Deduplication: An Essential Component of your Data Protection Strategy

Data Deduplication: An Essential Component of your Data Protection Strategy WHITE PAPER: THE EVOLUTION OF DATA DEDUPLICATION Data Deduplication: An Essential Component of your Data Protection Strategy JULY 2010 Andy Brewerton CA TECHNOLOGIES RECOVERY MANAGEMENT AND DATA MODELLING

More information

LDA, the new family of Lortu Data Appliances

LDA, the new family of Lortu Data Appliances LDA, the new family of Lortu Data Appliances Based on Lortu Byte-Level Deduplication Technology February, 2011 Copyright Lortu Software, S.L. 2011 1 Index Executive Summary 3 Lortu deduplication technology

More information

Deduplication and Beyond: Optimizing Performance for Backup and Recovery

Deduplication and Beyond: Optimizing Performance for Backup and Recovery Beyond: Optimizing Gartner clients using deduplication for backups typically report seven times to 25 times the reductions (7:1 to 25:1) in the size of their data, and sometimes higher than 100:1 for file

More information

Barracuda Backup Deduplication. White Paper

Barracuda Backup Deduplication. White Paper Barracuda Backup Deduplication White Paper Abstract Data protection technologies play a critical role in organizations of all sizes, but they present a number of challenges in optimizing their operation.

More information

WHITE PAPER. How Deduplication Benefits Companies of All Sizes An Acronis White Paper

WHITE PAPER. How Deduplication Benefits Companies of All Sizes An Acronis White Paper How Deduplication Benefits Companies of All Sizes An Acronis White Paper Copyright Acronis, Inc., 2000 2009 Table of contents Executive Summary... 3 What is deduplication?... 4 File-level deduplication

More information

Redefining Backup for VMware Environment. Copyright 2009 EMC Corporation. All rights reserved.

Redefining Backup for VMware Environment. Copyright 2009 EMC Corporation. All rights reserved. Redefining Backup for VMware Environment 1 Agenda VMware infrastructure backup and recovery challenges Introduction to EMC Avamar Avamar solutions for VMware infrastructure Key takeaways Copyright 2009

More information

Demystifying Deduplication for Backup with the Dell DR4000

Demystifying Deduplication for Backup with the Dell DR4000 Demystifying Deduplication for Backup with the Dell DR4000 This Dell Technical White Paper explains how deduplication with the DR4000 can help your organization save time, space, and money. John Bassett

More information

Deduplication has been around for several

Deduplication has been around for several Demystifying Deduplication By Joe Colucci Kay Benaroch Deduplication holds the promise of efficient storage and bandwidth utilization, accelerated backup and recovery, reduced costs, and more. Understanding

More information

WHITEPAPER. 7 Reasons Why Businesses are Shifting to Cloud Backup

WHITEPAPER. 7 Reasons Why Businesses are Shifting to Cloud Backup WHITEPAPER 7 Reasons Why Businesses are Shifting to Cloud Backup Table of Contents Introduction..1 Internal Resource Efficiency..2 Enhance Security.2 Leverage Deduplication Technology..2 Process Validation

More information

June 2009. Blade.org 2009 ALL RIGHTS RESERVED

June 2009. Blade.org 2009 ALL RIGHTS RESERVED Contributions for this vendor neutral technology paper have been provided by Blade.org members including NetApp, BLADE Network Technologies, and Double-Take Software. June 2009 Blade.org 2009 ALL RIGHTS

More information

The New Rules for Choosing Physical Appliances

The New Rules for Choosing Physical Appliances content provided by sponsored by The New Rules for Choosing Physical Appliances The increased presence of virtualization in organizations hasn t lessened the need for physical backup appliances. Follow

More information

Symantec NetBackup 7.5 for VMware

Symantec NetBackup 7.5 for VMware V-Ray visibility into virtual machine protection Solution Overview: Data Protection Overview There is little question that server virtualization is the single biggest game-changing trend in IT today. Budget-strapped

More information

Enterprise Backup and Restore technology and solutions

Enterprise Backup and Restore technology and solutions Enterprise Backup and Restore technology and solutions LESSON VII Veselin Petrunov Backup and Restore team / Deep Technical Support HP Bulgaria Global Delivery Hub Global Operations Center November, 2013

More information

Optimizing Backup and Data Protection in Virtualized Environments. January 2009

Optimizing Backup and Data Protection in Virtualized Environments. January 2009 Optimizing Backup and Data Protection in Virtualized Environments January 2009 Introduction The promise of maximizing IT investments while minimizing complexity has resulted in widespread adoption of server

More information

Business-Centric Storage FUJITSU Storage ETERNUS CS800 Data Protection Appliance

Business-Centric Storage FUJITSU Storage ETERNUS CS800 Data Protection Appliance Intel Xeon processor Business-Centric Storage FUJITSU Storage ETERNUS CS800 Data Protection Appliance The easy solution for backup to disk with deduplication Intel Inside. Powerful Solution Outside. If

More information

STORAGE. Buying Guide: TARGET DATA DEDUPLICATION BACKUP SYSTEMS. inside

STORAGE. Buying Guide: TARGET DATA DEDUPLICATION BACKUP SYSTEMS. inside Managing the information that drives the enterprise STORAGE Buying Guide: DEDUPLICATION inside What you need to know about target data deduplication Special factors to consider One key difference among

More information

Hardware Configuration Guide

Hardware Configuration Guide Hardware Configuration Guide Contents Contents... 1 Annotation... 1 Factors to consider... 2 Machine Count... 2 Data Size... 2 Data Size Total... 2 Daily Backup Data Size... 2 Unique Data Percentage...

More information

Everything you need to know about flash storage performance

Everything you need to know about flash storage performance Everything you need to know about flash storage performance The unique characteristics of flash make performance validation testing immensely challenging and critically important; follow these best practices

More information

Tiered Data Protection Strategy Data Deduplication. Thomas Störr Sales Director Central Europe November 8, 2007

Tiered Data Protection Strategy Data Deduplication. Thomas Störr Sales Director Central Europe November 8, 2007 Tiered Data Protection Strategy Data Deduplication Thomas Störr Sales Director Central Europe November 8, 2007 Overland Storage Tiered Data Protection = Good = Better = Best! NEO / ARCvault REO w/ expansion

More information

WHITE PAPER. Dedupe-Centric Storage. Hugo Patterson, Chief Architect, Data Domain. Storage. Deduplication. September 2007

WHITE PAPER. Dedupe-Centric Storage. Hugo Patterson, Chief Architect, Data Domain. Storage. Deduplication. September 2007 WHITE PAPER Dedupe-Centric Storage Hugo Patterson, Chief Architect, Data Domain Deduplication Storage September 2007 w w w. d a t a d o m a i n. c o m - 2 0 0 7 1 DATA DOMAIN I Contents INTRODUCTION................................

More information

EMC PERSPECTIVE. An EMC Perspective on Data De-Duplication for Backup

EMC PERSPECTIVE. An EMC Perspective on Data De-Duplication for Backup EMC PERSPECTIVE An EMC Perspective on Data De-Duplication for Backup Abstract This paper explores the factors that are driving the need for de-duplication and the benefits of data de-duplication as a feature

More information

Don t be duped by dedupe - Modern Data Deduplication with Arcserve UDP

Don t be duped by dedupe - Modern Data Deduplication with Arcserve UDP Don t be duped by dedupe - Modern Data Deduplication with Arcserve UDP by Christophe Bertrand, VP of Product Marketing Too much data, not enough time, not enough storage space, and not enough budget, sound

More information

Turnkey Deduplication Solution for the Enterprise

Turnkey Deduplication Solution for the Enterprise Symantec NetBackup 5000 Appliance Turnkey Deduplication Solution for the Enterprise Mayur Dewaikar Sr. Product Manager, Information Management Group White Paper: A Deduplication Appliance Solution for

More information

Protect Data... in the Cloud

Protect Data... in the Cloud QUASICOM Private Cloud Backups with ExaGrid Deduplication Disk Arrays Martin Lui Senior Solution Consultant Quasicom Systems Limited Protect Data...... in the Cloud 1 Mobile Computing Users work with their

More information

Business-centric Storage FUJITSU Storage ETERNUS CS800 Data Protection Appliance

Business-centric Storage FUJITSU Storage ETERNUS CS800 Data Protection Appliance Business-centric Storage FUJITSU Storage ETERNUS CS800 Data Protection Appliance The easy solution for backup to disk with deduplication If you rethink your backup strategy, then think of ETERNUS CS800

More information

Moving Virtual Storage to the Cloud

Moving Virtual Storage to the Cloud Moving Virtual Storage to the Cloud White Paper Guidelines for Hosters Who Want to Enhance Their Cloud Offerings with Cloud Storage www.parallels.com Table of Contents Overview... 3 Understanding the Storage

More information

HP Data Protector software and HP StoreOnce backup systems for federated deduplication and flexible deployment

HP Data Protector software and HP StoreOnce backup systems for federated deduplication and flexible deployment Brochure Maximize storage efficiency across the enterprise HP Data Protector software and HP StoreOnce backup systems for federated deduplication and flexible deployment Maximize storage efficiency across

More information

Symantec NetBackup PureDisk Optimizing Backups with Deduplication for Remote Offices, Data Center and Virtual Machines

Symantec NetBackup PureDisk Optimizing Backups with Deduplication for Remote Offices, Data Center and Virtual Machines Optimizing Backups with Deduplication for Remote Offices, Data Center and Virtual Machines Mayur Dewaikar Sr. Product Manager Information Management Group White Paper: Symantec NetBackup PureDisk Symantec

More information

Backup and Recovery: The Benefits of Multiple Deduplication Policies

Backup and Recovery: The Benefits of Multiple Deduplication Policies Backup and Recovery: The Benefits of Multiple Deduplication Policies NOTICE This White Paper may contain proprietary information protected by copyright. Information in this White Paper is subject to change

More information

WHITE PAPER Improving Storage Efficiencies with Data Deduplication and Compression

WHITE PAPER Improving Storage Efficiencies with Data Deduplication and Compression WHITE PAPER Improving Storage Efficiencies with Data Deduplication and Compression Sponsored by: Oracle Steven Scully May 2010 Benjamin Woo IDC OPINION Global Headquarters: 5 Speen Street Framingham, MA

More information

Moving Virtual Storage to the Cloud. Guidelines for Hosters Who Want to Enhance Their Cloud Offerings with Cloud Storage

Moving Virtual Storage to the Cloud. Guidelines for Hosters Who Want to Enhance Their Cloud Offerings with Cloud Storage Moving Virtual Storage to the Cloud Guidelines for Hosters Who Want to Enhance Their Cloud Offerings with Cloud Storage Table of Contents Overview... 1 Understanding the Storage Problem... 1 What Makes

More information

CISCO WIDE AREA APPLICATION SERVICES (WAAS) OPTIMIZATIONS FOR EMC AVAMAR

CISCO WIDE AREA APPLICATION SERVICES (WAAS) OPTIMIZATIONS FOR EMC AVAMAR PERFORMANCE BRIEF CISCO WIDE AREA APPLICATION SERVICES (WAAS) OPTIMIZATIONS FOR EMC AVAMAR INTRODUCTION Enterprise organizations face numerous challenges when delivering applications and protecting critical

More information

UniFS A True Global File System

UniFS A True Global File System UniFS A True Global File System Introduction The traditional means to protect file data by making copies, combined with the need to provide access to shared data from multiple locations, has created an

More information

Backup Software Data Deduplication: What you need to know. Presented by W. Curtis Preston Executive Editor & Independent Backup Expert

Backup Software Data Deduplication: What you need to know. Presented by W. Curtis Preston Executive Editor & Independent Backup Expert Backup Software Data Deduplication: What you need to know Presented by W. Curtis Preston Executive Editor & Independent Backup Expert When I was in the IT Department When I started as backup guy at $35B

More information

Cost Effective Backup with Deduplication. Copyright 2009 EMC Corporation. All rights reserved.

Cost Effective Backup with Deduplication. Copyright 2009 EMC Corporation. All rights reserved. Cost Effective Backup with Deduplication Agenda Today s Backup Challenges Benefits of Deduplication Source and Target Deduplication Introduction to EMC Backup Solutions Avamar, Disk Library, and NetWorker

More information

Disaster Recovery. Maximizing Business Continuity and Minimizing Recovery Time Objectives in Windows Server Environments.

Disaster Recovery. Maximizing Business Continuity and Minimizing Recovery Time Objectives in Windows Server Environments. Disaster Recovery Maximizing Business Continuity and Minimizing Recovery Time Objectives in Windows Server Environments Executive Summary TechAdvisory.org SME Reports sponsored by D-Net is your partner

More information

BACKUP ESSENTIALS FOR PROTECTING YOUR DATA AND YOUR BUSINESS. Disasters happen. Don t wait until it s too late.

BACKUP ESSENTIALS FOR PROTECTING YOUR DATA AND YOUR BUSINESS. Disasters happen. Don t wait until it s too late. BACKUP ESSENTIALS FOR PROTECTING YOUR DATA AND YOUR BUSINESS Disasters happen. Don t wait until it s too late. OVERVIEW It s inevitable. At some point, your business will experience data loss. It could

More information

Top 10 Best Practices of Backup and Replication for VMware and Hyper-V

Top 10 Best Practices of Backup and Replication for VMware and Hyper-V WHITE PAPER Top 10 Best Practices of Backup and Replication for VMware and Hyper-V By David Davis, VMware vexpert Virtualization changes everything for IT infrastructure administration and management.

More information

A Comparative TCO Study: VTLs and Physical Tape. With a Focus on Deduplication and LTO-5 Technology

A Comparative TCO Study: VTLs and Physical Tape. With a Focus on Deduplication and LTO-5 Technology White Paper A Comparative TCO Study: VTLs and Physical Tape With a Focus on Deduplication and LTO-5 Technology By Mark Peters February, 2011 This ESG White Paper is distributed under license from ESG.

More information

NetApp Replication-based Backup

NetApp Replication-based Backup NetApp Replication-based Backup Backup & Recovery Solutions Marketing July 12, 2010 Data Protection Requirements Solid reliability Backup in minutes Recover in minutes Simple to deploy and manage 2010

More information

Insanely Great Backup & Recovery. Physical or Virtual Appliance + Cloud DR No per agent, client, OS or anything fee Amazing support

Insanely Great Backup & Recovery. Physical or Virtual Appliance + Cloud DR No per agent, client, OS or anything fee Amazing support # 1 ALL-IN-ONE BACKUP SOLUTION Insanely Great Backup & Recovery Physical or Virtual Appliance + Cloud DR No per agent, client, OS or anything fee Amazing support Everything you need, from 269/month RRP

More information

All-Flash Arrays: Not Just for the Top Tier Anymore

All-Flash Arrays: Not Just for the Top Tier Anymore All-Flash Arrays: Not Just for the Top Tier Anymore Falling prices, new technology make allflash arrays a fit for more financial, life sciences and healthcare applications EXECUTIVE SUMMARY Real-time financial

More information

Maximizing Deduplication ROI in a NetBackup Environment

Maximizing Deduplication ROI in a NetBackup Environment Use Case Maximizing Deduplication ROI in a NetBackup Environment For many companies, backing up and restoring data is becoming a slow, complicated, expensive process. The volume of data to be protected

More information

HP StoreOnce D2D. Understanding the challenges associated with NetApp s deduplication. Business white paper

HP StoreOnce D2D. Understanding the challenges associated with NetApp s deduplication. Business white paper HP StoreOnce D2D Understanding the challenges associated with NetApp s deduplication Business white paper Table of contents Challenge #1: Primary deduplication: Understanding the tradeoffs...4 Not all

More information

NetApp Syncsort Integrated Backup

NetApp Syncsort Integrated Backup WHITE PAPER NetApp Syncsort Integrated Backup Protect your Microsoft and VMware Environment with NetApp Syncsort Integrated Backup Protecting Microsoft and VMware Executive Summary 3 Microsoft and VMware

More information

Enterprise-class desktop virtualization with NComputing. Clear the hurdles that block you from getting ahead. Whitepaper

Enterprise-class desktop virtualization with NComputing. Clear the hurdles that block you from getting ahead. Whitepaper Enterprise-class desktop virtualization with NComputing Clear the hurdles that block you from getting ahead Whitepaper Introduction Enterprise IT departments are realizing virtualization is not just for

More information

HYBRID CLOUD BACKUP 101. Top Five Benefits of Cloud-Connected Appliances

HYBRID CLOUD BACKUP 101. Top Five Benefits of Cloud-Connected Appliances HYBRID CLOUD BACKUP 101 Top Five Benefits of Cloud-Connected Appliances Hybrid cloud backup solutions will grow at a compounded average a growth rate of more than 80%. TANEJA GROUP 02 Introduction Most

More information

DEDUPLICATION BASICS

DEDUPLICATION BASICS DEDUPLICATION BASICS 4 DEDUPE BASICS 12 HOW DO DISASTER RECOVERY & ARCHIVING FIT IN? 6 WHAT IS DEDUPLICATION 14 DEDUPLICATION FOR EVERY BUDGET QUANTUM DXi4000 and vmpro 4000 8 METHODS OF DEDUPLICATION

More information

Availability Digest. www.availabilitydigest.com. Data Deduplication February 2011

Availability Digest. www.availabilitydigest.com. Data Deduplication February 2011 the Availability Digest Data Deduplication February 2011 What is Data Deduplication? Data deduplication is a technology that can reduce disk storage-capacity requirements and replication bandwidth requirements

More information

Virtualization: Advanced Technology or Magic Bullet?

Virtualization: Advanced Technology or Magic Bullet? Virtualization: Advanced Technology or Magic Bullet? Doug Hafford V.P. Consulting Services Proud Member of SoCalPROS and NorCalPROS GLA ALA Emerald Sponsor OCALA Agenda Virtualization Technology How Long

More information

Real-time Compression: Achieving storage efficiency throughout the data lifecycle

Real-time Compression: Achieving storage efficiency throughout the data lifecycle Real-time Compression: Achieving storage efficiency throughout the data lifecycle By Deni Connor, founding analyst Patrick Corrigan, senior analyst July 2011 F or many companies the growth in the volume

More information

(Formerly Double-Take Backup)

(Formerly Double-Take Backup) (Formerly Double-Take Backup) An up-to-the-minute copy of branch office data and applications can keep a bad day from getting worse. Double-Take RecoverNow for Windows (formerly known as Double-Take Backup)

More information

Optimizing Data Protection Operations in VMware Environments

Optimizing Data Protection Operations in VMware Environments Optimizing Data Protection Operations in VMware Environments March 2009 Data protection is critical for small and medium business (SMB) customers. Evolving business and regulatory mandates are driving

More information

Nimble Storage Replication

Nimble Storage Replication Nimble Storage Replication Nimble Storage Replication Our service provides Disaster Recovery for customers who are using Nimble Storage for their environment. Webhosting.net leverages Nimble's volume replication

More information

HyperQ DR Replication White Paper. The Easy Way to Protect Your Data

HyperQ DR Replication White Paper. The Easy Way to Protect Your Data HyperQ DR Replication White Paper The Easy Way to Protect Your Data Parsec Labs, LLC 7101 Northland Circle North, Suite 105 Brooklyn Park, MN 55428 USA 1-763-219-8811 www.parseclabs.com info@parseclabs.com

More information

Maximizing Business Continuity and Minimizing Recovery Time Objectives in Windows Server Environments

Maximizing Business Continuity and Minimizing Recovery Time Objectives in Windows Server Environments Maximizing Business Continuity and Minimizing Recovery Time Objectives in Windows Server Environments StorageCraft Technology Corporation Backup Fast, Recover Faster 2010 StorageCraft Technology Corporation.

More information

WHITE PAPER. Permabit Albireo Data Optimization Software. Benefits of Albireo for Virtual Servers. January 2012. Permabit Technology Corporation

WHITE PAPER. Permabit Albireo Data Optimization Software. Benefits of Albireo for Virtual Servers. January 2012. Permabit Technology Corporation WHITE PAPER Permabit Albireo Data Optimization Software Benefits of Albireo for Virtual Servers January 2012 Permabit Technology Corporation Ten Canal Park Cambridge, MA 02141 USA Phone: 617.252.9600 FAX:

More information

Reduced Complexity with Next- Generation Deduplication Innovation

Reduced Complexity with Next- Generation Deduplication Innovation Reduced Complexity with Next- Generation Deduplication Innovation Sean R Kinney Director, HP StoreOnce Hewlett-Packard Data Storage Priorities 2010 Data backup, Capacity growth, Disaster Recovery Top three

More information

Future-Proofed Backup For A Virtualized World!

Future-Proofed Backup For A Virtualized World! ! Future-Proofed Backup For A Virtualized World! Prepared by: Colm Keegan, Senior Analyst! Prepared: January 2014 Future-Proofed Backup For A Virtualized World Like death and taxes, growing backup windows

More information

Virtual Machine Protection with Symantec NetBackup 7

Virtual Machine Protection with Symantec NetBackup 7 Overview There s little question that server virtualization is the single biggest game-changing trend in IT today. Budget-strapped IT departments are racing to embrace the promise of virtualization for

More information

Developing a Backup Strategy for Hybrid Physical and Virtual Infrastructures

Developing a Backup Strategy for Hybrid Physical and Virtual Infrastructures Virtualization Backup and Recovery Solutions for the SMB Market The Essentials Series Developing a Backup Strategy for Hybrid Physical and Virtual Infrastructures sponsored by Introduction to Realtime

More information

Frequently Asked Questions about Cloud and Online Backup

Frequently Asked Questions about Cloud and Online Backup Frequently Asked Questions about Cloud and Online Backup With more companies realizing the importance of protecting their mission-critical data, we know that businesses are also evaluating the resiliency

More information

How To Get A Storage And Data Protection Solution For Virtualization

How To Get A Storage And Data Protection Solution For Virtualization Smart Storage and Modern Data Protection Built for Virtualization Dot Hill Storage Arrays and Veeam Backup & Replication Software offer the winning combination. Veeam and Dot Hill Solutions Introduction

More information

Keys to Successfully Architecting your DSI9000 Virtual Tape Library. By Chris Johnson Dynamic Solutions International

Keys to Successfully Architecting your DSI9000 Virtual Tape Library. By Chris Johnson Dynamic Solutions International Keys to Successfully Architecting your DSI9000 Virtual Tape Library By Chris Johnson Dynamic Solutions International July 2009 Section 1 Executive Summary Over the last twenty years the problem of data

More information

Veritas Backup Exec 15: Deduplication Option

Veritas Backup Exec 15: Deduplication Option Veritas Backup Exec 15: Deduplication Option Who should read this paper Technical White Papers are designed to introduce IT professionals to key technologies and technical concepts that are associated

More information

Data Reduction Methodologies: Comparing ExaGrid s Byte-Level-Delta Data Reduction to Data De-duplication. February 2007

Data Reduction Methodologies: Comparing ExaGrid s Byte-Level-Delta Data Reduction to Data De-duplication. February 2007 Data Reduction Methodologies: Comparing ExaGrid s Byte-Level-Delta Data Reduction to Data De-duplication February 2007 Though data reduction technologies have been around for years, there is a renewed

More information

Protect Microsoft Exchange databases, achieve long-term data retention

Protect Microsoft Exchange databases, achieve long-term data retention Technical white paper Protect Microsoft Exchange databases, achieve long-term data retention HP StoreOnce Backup systems, HP StoreOnce Catalyst, and Symantec NetBackup OpenStorage Table of contents Introduction...

More information

REMOTE BACKUP-WHY SO VITAL?

REMOTE BACKUP-WHY SO VITAL? REMOTE BACKUP-WHY SO VITAL? Any time your company s data or applications become unavailable due to system failure or other disaster, this can quickly translate into lost revenue for your business. Remote

More information

Eliminating Backup System Bottlenecks: Taking Your Existing Backup System to the Next Level. Jacob Farmer, CTO, Cambridge Computer

Eliminating Backup System Bottlenecks: Taking Your Existing Backup System to the Next Level. Jacob Farmer, CTO, Cambridge Computer : Taking Your Existing Backup System to the Next Level Jacob Farmer, CTO, Cambridge Computer SNIA Legal Notice The material contained in this tutorial is copyrighted by the SNIA. Member companies and individuals

More information

Introduction to Data Protection: Backup to Tape, Disk and Beyond. Michael Fishman, EMC Corporation

Introduction to Data Protection: Backup to Tape, Disk and Beyond. Michael Fishman, EMC Corporation : Backup to Tape, Disk and Beyond Michael Fishman, EMC Corporation SNIA Legal Notice The material contained in this tutorial is copyrighted by the SNIA. Member companies and individual members may use

More information

Maximize Your Virtual Environment Investment with EMC Avamar. Rob Emsley Senior Director, Product Marketing

Maximize Your Virtual Environment Investment with EMC Avamar. Rob Emsley Senior Director, Product Marketing 1 Maximize Your Virtual Environment Investment with EMC Avamar Rob Emsley Senior Director, Product Marketing 2 Private Cloud is the Vision Virtualized Data Center Internal Cloud Trusted Flexible Control

More information

ExaGrid Product Description. Cost-Effective Disk-Based Backup with Data Deduplication

ExaGrid Product Description. Cost-Effective Disk-Based Backup with Data Deduplication ExaGrid Product Description Cost-Effective Disk-Based Backup with Data Deduplication 1 Contents Introduction... 3 Considerations When Examining Disk-Based Backup Approaches... 3 ExaGrid A Disk-Based Backup

More information

Understanding EMC Avamar with EMC Data Protection Advisor

Understanding EMC Avamar with EMC Data Protection Advisor Understanding EMC Avamar with EMC Data Protection Advisor Applied Technology Abstract EMC Data Protection Advisor provides a comprehensive set of features to reduce the complexity of managing data protection

More information

E-Guide. Sponsored By:

E-Guide. Sponsored By: E-Guide An in-depth look at data deduplication methods This E-Guide will discuss the various approaches to data deduplication. You ll learn the pros and cons of each, and will benefit from independent

More information

Near-Instant Oracle Cloning with Syncsort AdvancedClient Technologies White Paper

Near-Instant Oracle Cloning with Syncsort AdvancedClient Technologies White Paper Near-Instant Oracle Cloning with Syncsort AdvancedClient Technologies White Paper bex30102507wpor Near-Instant Oracle Cloning with Syncsort AdvancedClient Technologies Introduction Are you a database administrator

More information

Efficient Backup with Data Deduplication Which Strategy is Right for You?

Efficient Backup with Data Deduplication Which Strategy is Right for You? Efficient Backup with Data Deduplication Which Strategy is Right for You? Rob Emsley Senior Director, Product Marketing CPU Utilization CPU Utilization Exabytes Why So Much Interest in Data Deduplication?

More information

CA ARCserve Family r15

CA ARCserve Family r15 CA ARCserve Family r15 Rami Nasser EMEA Principal Consultant, Technical Sales Rami.Nasser@ca.com The ARCserve Family More than Backup The only solution that: Gives customers control over their changing

More information

Eight Considerations for Evaluating Disk-Based Backup Solutions

Eight Considerations for Evaluating Disk-Based Backup Solutions Eight Considerations for Evaluating Disk-Based Backup Solutions 1 Introduction The movement from tape-based to disk-based backup is well underway. Disk eliminates all the problems of tape backup. Backing

More information

A Talari Networks White Paper. Turbo Charging WAN Optimization with WAN Virtualization. A Talari White Paper

A Talari Networks White Paper. Turbo Charging WAN Optimization with WAN Virtualization. A Talari White Paper A Talari Networks White Paper Turbo Charging WAN Optimization with WAN Virtualization A Talari White Paper 2 Introduction WAN Virtualization is revolutionizing Enterprise Wide Area Network (WAN) economics,

More information

Riverbed Whitewater/Amazon Glacier ROI for Backup and Archiving

Riverbed Whitewater/Amazon Glacier ROI for Backup and Archiving Riverbed Whitewater/Amazon Glacier ROI for Backup and Archiving November, 2013 Saqib Jang Abstract This white paper demonstrates how to increase profitability by reducing the operating costs of backup

More information

Disaster Recovery with the Public Cloud and Whitewater Cloud Storage Gateways

Disaster Recovery with the Public Cloud and Whitewater Cloud Storage Gateways WHITE PAPER Disaster Recovery with the Public Cloud and Whitewater Cloud Storage Gateways Simplifying and making DR affordable and achievable Executive Summary The explosion of 24x7 connectivity and prevalence

More information

Desktop Virtualization and Storage Infrastructure Optimization

Desktop Virtualization and Storage Infrastructure Optimization Desktop Virtualization and Storage Infrastructure Optimization Realizing the Most Value from Virtualization Investment Contents Executive Summary......................................... 1 Introduction.............................................

More information

Effectively Reducing the Cost of Backup and Storage

Effectively Reducing the Cost of Backup and Storage DEDUPLICATION: Effectively Reducing the Cost of Backup and Storage by Dr. Srinidhi Varadarajan CTO, AppAssure Software Copyright 2009-2012 by AppAssure Software, Inc. ALL RIGHTS RESERVED. No part of this

More information

Data Protection with IBM TotalStorage NAS and NSI Double- Take Data Replication Software

Data Protection with IBM TotalStorage NAS and NSI Double- Take Data Replication Software Data Protection with IBM TotalStorage NAS and NSI Double- Take Data Replication September 2002 IBM Storage Products Division Raleigh, NC http://www.storage.ibm.com Table of contents Introduction... 3 Key

More information

Tape or Disk Backup Which is Best?

Tape or Disk Backup Which is Best? WHITE PAPER Disk-to-Disk-to-Tape Strategy Guide How often are we reminded that what goes around comes around? This can be said for the fashion industry, but does it hold true for technology? It does, and

More information

Debunking Five Myths About Tape Storage. Tech Brief. an Internet.com Tech Brief. 2011, Internet.com, a division of QuinStreet, Inc.

Debunking Five Myths About Tape Storage. Tech Brief. an Internet.com Tech Brief. 2011, Internet.com, a division of QuinStreet, Inc. Debunking Five Myths About Tape Storage Tech Brief an Technological change is part of life, and that s true whether you re in your living room or in the data center at the office. Machines and devices

More information

Solution brief: Modernized data protection with Veeam and HP Storage

Solution brief: Modernized data protection with Veeam and HP Storage Solution brief: Modernized data protection with Veeam and HP Storage Modern Data Protection Built for Virtualization November, 2013 Contents Executive summary....3 Key points...3 Virtual machine data protection

More information

Presents. Attix5 Technology. An Introduction

Presents. Attix5 Technology. An Introduction Presents Attix5 Technology An Introduction January 2013 1. Global Block Level Deduplication. Attix5 Feature Top 10 Things That Matter When Attix5 is first installed on a target server a full backup is

More information

DOES BACKUP NEED A FILE SYSTEM OF IT S OWN?

DOES BACKUP NEED A FILE SYSTEM OF IT S OWN? DOES BACKUP NEED A FILE SYSTEM OF IT S OWN? A DEEP DIVE INTO VEMBUHIVE FILESYSTEM BY: JAYASHREE SUBRAMANIAN TRUSTED BY OVER 25,000 BUSINESSES Copyright Information Information in this document is subject

More information

Protezione dei dati. Luca Bin. EMEA Sales Engineer Lbin@Barracuda.com. Version 6.1 July 2015

Protezione dei dati. Luca Bin. EMEA Sales Engineer Lbin@Barracuda.com. Version 6.1 July 2015 Protezione dei dati Luca Bin EMEA Sales Engineer Lbin@Barracuda.com Version 6.1 July 2015 Barracuda Backup Easy Cloud-Connected Backup Version 6.1 July 2015 Traditional Backup is Complicated Highly diverse

More information

Backup and Recovery Redesign with Deduplication

Backup and Recovery Redesign with Deduplication Backup and Recovery Redesign with Deduplication Why the move is on September 9, 2010 1 Major trends driving the transformation of backup environments UNABATED DATA GROWTH Backup = 4 to 30 times production

More information

Recoup with data dedupe Eight products that cut storage costs through data deduplication

Recoup with data dedupe Eight products that cut storage costs through data deduplication Reprint T H E C O N N E C T E D E N T E R P R I S E S E P T E M B E R 1 2, 2 0 1 1 C L E A R C H O I C E T E S T: D AT A D E D U P L I C AT I O N Recoup with data dedupe Eight products that cut storage

More information

Best Practices for Breaking Down the Barriers to Centralized Virtual Server Backup and Recovery

Best Practices for Breaking Down the Barriers to Centralized Virtual Server Backup and Recovery June 2010 By Jerome M Wendt DCIG, LLC 7511 Madison Street Omaha NE 68127 O 402.884.9594 Best Practices for Breaking Down the Barriers to Centralized Virtual Server Backup and Recovery 2010 DCIG LLC. All

More information

Archiving, Backup, and Recovery for Complete the Promise of Virtualization

Archiving, Backup, and Recovery for Complete the Promise of Virtualization Archiving, Backup, and Recovery for Complete the Promise of Virtualization Unified information management for enterprise Windows environments The explosion of unstructured information It is estimated that

More information

Protecting. All the Time

Protecting. All the Time Protec Protecting Protecting Protecting All your Data, All the Time Acronis Backup & Recovery 11 Reliable Data What Would You Do without It? Your data is more than a bunch of ones and zeros. It s the heart

More information

WHITE PAPER RUN VDI IN THE CLOUD WITH PANZURA SKYBRIDGE

WHITE PAPER RUN VDI IN THE CLOUD WITH PANZURA SKYBRIDGE WHITE PAPER RUN VDI IN THE CLOUD WITH PANZURA What if you could provision VDI in the cloud as a utility, colocating ondemand VDI instances and data next to each other and close to your users, anywhere

More information