Back2Cloud: A highly Scalable and Available Remote Backup Service

Size: px
Start display at page:

Download "Back2Cloud: A highly Scalable and Available Remote Backup Service"

Transcription

1 Department of Computer Science Georgia Institute of Technology FINAL REPORT Back2Cloud: A highly Scalable and Available Remote Backup Service Professor Ling Liu CS 8803 Advanced Internet Application Development Spring 2009 Team #9 Supraja Narasimhan Jerry Philip Amit Warke Lateef Yusuf

2 TABLE OF CONTENTS Idea 3 Motivation 3 Amazon Simple Storage Service (S3) 4 System Architecture 5 Back2Cloud Features 6 Versioning 7 Chunking 8 Compression 8 Encryption 9 Back2Cloud-Online 9 Performance Analysis 11 Future Work 15 Challenges 15 Conclusion 16 References 16 2

3 Idea To implement a Remote Backup Service that automatically syncs all of your important data to the Remote Cloud Computing framework provided by the Amazon Simple Storage Service (S3) for the purpose for data restoration in the event of any local data loss. Motivation Many of businesses use tape based backup servers to save all of their important data for later restoration in the event of any data losses. However few realize that even these backup servers are susceptible to various kinds of failures such as server crashes, virus attacks, human errors, natural disasters etc. This would eventually lead to catastrophic loss of all data without leaving a trace. Such complete data loss would lead to closing of companies with losses running into millions of dollars. Also, backup and recovery plans require significant investment in infrastructure such as hardware, software, training of employees to manage the backup servers. Moreover a lot of time is spent in backing up data to the servers. A more cost effective and efficient way to backup your important data would be to incorporate a Remote Backup Service into your business. A Remote Backup Service is one that provides users with a remote storage repository to backup their data, which can be accessible through the internet from anywhere in the world. Remote backups are very easy to implement and require only software installed on the user side. This software takes care of syncing data to the remote storage, thereby reducing the burden of maintaining infrastructure and backups, and can run at any scheduled time. Remote backups are inexpensive and restore data quickly from the remote servers in the event of a system crash by just the click of a button. In terms of security, too, these systems stand out as data is remotely transferred and stored as encrypted data. Only the owner of this data possesses the key to decrypt it for the purposes of read/write. We are providing a reliable and highly available remote backup service by leveraging the cloud computing framework. Our service would store data remotely on the Amazon S3 framework, which is a highly reliable and scalable data store. 3

4 The reason for choosing a cloud computing framework is that you can back up data to it anytime, from anywhere provided you have web access. The main motive to use Amazon S3 was to save the costs of hosting our own infrastructure and instead to use Amazon s infrastructure to provide the backup service to customers. Amazon S3 s highly available, scalable, inexpensive, reliable and simple distributed data storage framework makes it attractive to implement our backup service on their systems. Also, the cloud can be accessed from anywhere in the world requiring just an internet connection and hence makes it possible for providing the backup service to mobile clients who could lose data anywhere and would just need an internet connection to connect to the cloud and restore their data. Amazon Simple Storage Service (S3) Amazon S3 is Amazon s highly proven Distributed Data Store. It is a highly scalable, reliable and fast storage infrastructure. Amazon S3 allows its users to add, delete, and retrieve files from the storage system. We write data and store them in S3 as objects. The size of the objects can range from 1 byte to 5 GB each. Each object is stored in a bucket and retrieved via a unique developer assigned key. Each object stored in Amazon S3 is associated with a key, which uniquely identifies files saved in the cloud storage system. A bucket and a key uniquely identify an object (file) saved by the user in the storage system. Buckets must be explicitly created before they can be used and each user can create only upto 100 buckets. Bucket names are also global and hence each user must create unique bucket names to save data. Amazon provides a REST API to create, delete and list buckets and provides interfaces to create access control lists allowing read/write permissions to be given to specific AWS customers. 4

5 System Architecture Figure: Cloud Architecture for the Remote Backup Service This architecture involves the use of the Amazon Simple Storage Service (S3) to back up all the important files of the user in the cloud. Whether the users use auto sync or manual sync, all the files are sent as streams from the workstations to the application server in the cloud, which saves them in the user defined bucket in S3. We used REST (Representational State Transfer) protocol to interact with the Amazon cloud. In REST, each bucket in S3 is represented as a URI; we save files in the cloud by sending the data embedded in an HTTP Request object and receive its metadata via the Response Object. Base 64 encoding was used to prevent encoding and decoding issues in the cloud. When data is saved in S3, the data was replicated across multiple servers for the purpose of faulttolerance. Also we have incorporated a web portal where any user who has experienced a system crash can use someone else s laptop and gain access to his files in the cloud so that he can download the files he needs at that point of time. 5

6 Back2Cloud Features Figure: Graphical User Interface for the Back2Cloud Application Back2Cloud interacts with Amazon S3 through REST requests. Both requests and responses are streamed. 6

7 Below is an example that illustrates how Back2Cloud instantiates a service that performs simple queries with the S3 engine. Back2CloudConfig config = new Back2CloudConfig (); config.awsaccesskeyid = awsaccesskeyid; config.awssecretaccesskey = awssecretaccesskey; IBack2Cloud service = new Back2CloudQuery (config); Back2Cloud implements three other services to streamline and support threading, chunking, compression and versioning: Compression Service, Chunk Service and the Snapshot Service. Features of the Back2Cloud application are described as follows: Versioning Back2Cloud implements versioning using a concept of snapshots. When you backup a file or directory, Back2Cloud places those files into snapshot which is a version of those files at that point in time. Each snapshot can be restored to the disk. Each snapshot can also be updated independently, although the default behavior is to update snapshots into new versions or snapshots. Back2Cloud implements a FileWatcher daemon that continually monitors the files in the backup folder and sync updates into new snapshots. The daemon monitors any new write, access, files creation and files renaming and notifies the Back2Cloud process to invoke the backup procedure to the S3 cloud. Back2Cloud uses the Amazon SimpleDB to save metadata information about files. The attributes are synced along with the files to the cloud and retrieved when restoring or accessing files from the cloud. 7

8 Chunking Back2Cloud splits files into chunks of data of variable size. The chunks are determined by their contents, rather than fixed offsets into a file. This enables Back2Cloud to keep data transfer and storage to a minimum since only chunks that has not been seen before will be uploaded. Chunks have an average size of 128K, although they can range from 2K - 5MB. This method of chunking also means that a full backup of a set of files that have already been placed in a snapshot does not result in re-uploading those files. And if the files have changed since they were last backed up, only those chunks that have changed need to be uploaded. The result is a new full snapshot. The full set of files can be restored from that snapshot. This is de-duplication between snapshots. This method of chunking also enables de-duplication within snapshots. If two files are both backed up at the same time, and the two files share chunks of data, each of those chunks is only uploaded and stored once. Back2Cloud keeps track of the fact that a chunk is referenced by multiple files. Another advantage of this method is that Back2Cloud can process and transfer multiple chunks in parallel, taking full advantage of the network connection. This will allow faster backups than if the chunks were uploaded serially. Finally, because Back2Cloud processes files in chunks, an error during transfer (process is killed, network connection goes away, power outage, etc.) doesn't mean that Back2Cloud has to start all over again from the beginning. It will pick up where it left off and avoid re-uploading chunks it has already uploaded. Compression Another feature of Back2Cloud is that chunks are compressed before they are synced to the cloud. This is done to prevent waste of network bandwidth and to save Data-In transfer costs and Storage costs of the Amazon cloud computing framework. Back2Cloud uses GZIP compression. The compression uses the library in the java.util.zip.gzipoutputstream and the java.util.zip.gzipinputstream; 8

9 Encryption Back2Cloud implements DES Encryption to support optional file encryption. The files are encrypted before they are synced to the cloud and decrypted when they are restored back to a local disk. This is done to prevent unauthorized data access in a public cloud like Amazon. Back2Cloud-Online Figure: Online web portal providing ubiquitous access to user data from any system connected to the internet We designed and implemented an online web portal, Back2Cloud-Online, as an extension for our already existing Back2Cloud application which would provide Back2Cloud s users one more way to gain access to their files. 9

10 The motivation for this was For those users who are on the move, and are not expected to use the same system so often. It is unreasonable to expect them to install the back 2 cloud application on every system they use. Provide user the convenience the access to their files independent of system, but only requiring an Internet connection Opening up to a larger Audience. The web portal was hosted on our local Apache Server. PHP was used to make this code, owing to the documentation and support available, and most of all for the ease of Object Oriented Programming. The initial setups involved having the XAMP ready: Apache2, MySQL and PHP running on OSX. Since we used Amazon S3 to back up our files, the code included S3.php, which has functions specified by Amazon to communicate with their system. The main functions that were used for Back2Cloud included: listbuckets ($detailed = false): This function is used to get a list of the buckets for that particular account getbucket ($bucket): This function is used to obtain a bucket if the name of the bucket is known so that the contents can be obtained from it. putbucket ($bucket): This function allows Back 2 Cloud to put a bucket in Amazon with the name that is passed to the function. deletebucket ($bucket): This function permits the user to delete an existing bucket from that account putobject ($input, $bucket) and putobjectfile ($file, $bucket): These are the functions that were used to put the uploaded files from the online form into the designated bucket. It is also possible to have Access Control Lists to permit access across the bucket to another user if needed. deleteobject ($file): This is the function that is used to delete individual files within a bucket. 10

11 Then we had the page.php, this contains the webpage that the end user sees, this is what includes the S3.php and then makes use of all the functions defined in S3.php. Like the application page.php requires the awsaccesskey and the awssecretkey to get the buckets that belong to that account after Amazon authenticates the account, and it is this secret key that is used to encrypt the information that is sent to Amazon from the user. And since only the user and Amazon knows this secret key, the information is protected, and it also involves a timestamp to avoid a Replay Attack from a malicious user. The page displays all the contents of the bucket dynamically, so obviously it would show the files that are uploaded using the application or the browser itself as well. And download of these files have been made very convenient where all the user has to do is click on the filename, which results in an immediate prompt telling the user that a download is all set to begin, using php s ahref command. Performance Analysis Figure: Table showing of different cloud based backup solutions 11

12 Among the plethora of remote backup services on the Internet, only a subset exploits the cloud infrastructure to store data. A brief comparison of commercial cloud-based remote backup providers is included (Table 1). Despite its prominence in the cloud marketplace, Microsoft has yet to offer a remote backup utility. Instead their Windows SkyDrive application focuses on raw user-driven storage and sharing, and does not implement basic backup features such autosync and encryption. On the other hand, Backblaze, Jungle Disk and Mozy all provide these two integral features. Moreover, Backblaze and Mozy offer versioning, while Jungle Disk and Mozy allow for scheduled backup. Jungle Disk offers the user more latitude to decide how and where files are stored. As for rates, Jungle Disk and Mozy ask that the user pays per unit of storage used. However Backblaze requires a flat fee each month or each year, which is less amenable to the changing storage needs of end users. We only found one commercial provider, Jungle Disk that explicitly advertises its use of Amazon S3. Amazon's competitor Rackspace, which owns Jungle Disk, offers users the choice to store their data on either Amazon S3 via GUI or on Rackspace clouds ( using GUI or API -based services ( Back2Cloud synthesizes the features provided by current tools in the market as a single package, when they were previously scattered across different applications. It delivers a highly available and scalable backup service by virtue of using Amazon S3. Finally it distinguishes itself from its peers by providing failure recovery in case the network connection fails during the backup process. Because the backup schedule is documented in a log before the file transfer, backup can resume at the last file that was incompletely transferred instead of backing up from scratch. 12

13 Figure: Timing analysis to compare the download performance of Back2Cloud against Mozy Backup Software Back2Cloud Mozy Download Rate ( Time taken to Restore) 1.02 MB/sec 0.4 MB/sec We did a performance analysis of the Back2Cloud application by sending streaming data of various sizes ranging from 10 MB to 100 MB from the local system on which Back2Cloud was running to the Amazon S3 storage service. We performed a timing analysis and found out the time it took for the data to be backed up in the cloud and the time it took to restore data from the cloud back to the local system. On doing a test of the download speeds, we found out that on a Georgia Tech Ethernet lawn connection having downlink bandwidth of MB/sec; Mozy provided a download rate of 0.4 MB/sec which was much slower than Back2Cloud s download rate which was 1.02 MB/sec. Mozy also uses the Amazon S3 storage network but does not reveal how it backs up data. 13

14 However we are guessing that the chunking and compressing the data may have helped us in achieving a better download performance than Mozy. Figure: Timing analysis to compare the upload performance of Back2Cloud against Mozy Backup Software Back2Cloud Mozy Upload Rate ( Time taken to Backup) 0.98 MB/sec 0.1 MB/sec On doing a test of the upload speeds, we found out that on a Georgia Tech Ethernet lawn connection having downlink bandwidth of 6.65 MB/sec; Mozy provided an upload rate of 0.1 MB/sec which was much slower than Back2Cloud s upload rate which was 0.98 MB/sec. We have used intelligent chunking and Gzip compression schemes which might have improved our performance against that of Mozy. 14

15 Future Work Currently our Back2Cloud is designed for a single user but we intend to extend it so that multiple users can use the Back2Cloud application. We also need to incorporate a data sharing mechanism by which different users of the application can share their buckets or files for data collaboration. Currently our application only backs up files which are saved, modified but closed. We need to work on algorithms and techniques which can sync modified data from open files to the cloud. Challenges: Availability of Service: We still haven t considered the scenario in which the entire Amazon cloud collapses due to electric failure or due to a massive system crash, hence we need to backup data to more than one cloud provider, either backup data on one cloud and copy it in another cloud or backup files in some proportion to both the clouds so that in case one of the clouds crashes we still have data on one of the cloud providers. Data Confidentiality and Auditability: Amazon S3 is still a public cloud which various cloud users access and save and access information and hence our customer s data could be compromised hence we must incorporate better encryption and security techniques to protect our user s data. Data Transfer bottlenecks: The cloud computing framework though being highly available and scalable is effective only when the intern connection between the local system and the cloud is fast and reliable. Current network uplink limitations and immense network traffic can slow down the entire Back2Cloud software and hence we must find ways to optimize our solution so that we backup data during low load conditions and buffer them in memory, i.e. some intelligent buffering mechanisms. 15

16 Conclusion: We believe cloud computing will be the application of tomorrow, and that can be seen on how fast it is catching on today with so many of the big players understanding the viability of remote storage and computing. Systems like the Macbook Air, Iphone, and Netbooks can afford to be limited in hardware resources and yet have all the capabilities of a fully fledged PC that would be more bulky and less mobile with just having a fast internet connection. And this would be huge boon for the average consumer who doesn t have to pay or worry about hardware crashes and gets corporate reliability on his data, and that beats extending guarantees on your expensive hardware. Reference: Prof Ling Liu Amazon S3: 16

VANGUARD ONLINE BACKUP

VANGUARD ONLINE BACKUP VANGUARD ONLINE BACKUP Product Description Vanguard Online Backup is a world class solution that automates off-site and on-site backups. The application combines an easy to use interface with powerful

More information

www.basho.com Technical Overview Simple, Scalable, Object Storage Software

www.basho.com Technical Overview Simple, Scalable, Object Storage Software www.basho.com Technical Overview Simple, Scalable, Object Storage Software Table of Contents Table of Contents... 1 Introduction & Overview... 1 Architecture... 2 How it Works... 2 APIs and Interfaces...

More information

Amazon Cloud Storage Options

Amazon Cloud Storage Options Amazon Cloud Storage Options Table of Contents 1. Overview of AWS Storage Options 02 2. Why you should use the AWS Storage 02 3. How to get Data into the AWS.03 4. Types of AWS Storage Options.03 5. Object

More information

SECURE BACKUP SYSTEM DESKTOP AND MOBILE-PHONE SECURE BACKUP SYSTEM HOSTED ON A STORAGE CLOUD

SECURE BACKUP SYSTEM DESKTOP AND MOBILE-PHONE SECURE BACKUP SYSTEM HOSTED ON A STORAGE CLOUD SECURE BACKUP SYSTEM DESKTOP AND MOBILE-PHONE SECURE BACKUP SYSTEM HOSTED ON A STORAGE CLOUD The Project Team AGENDA Introduction to cloud storage. Traditional backup solutions problems. Objectives of

More information

Web-Based Data Backup Solutions

Web-Based Data Backup Solutions "IMAGINE LOSING ALL YOUR IMPORTANT FILES, IS NOT OF WHAT FILES YOU LOSS BUT THE LOSS IN TIME, MONEY AND EFFORT YOU ARE INVESTED IN" The fact Based on statistics gathered from various sources: 1. 6% of

More information

Gladinet Cloud Backup V3.0 User Guide

Gladinet Cloud Backup V3.0 User Guide Gladinet Cloud Backup V3.0 User Guide Foreword The Gladinet User Guide gives step-by-step instructions for end users. Revision History Gladinet User Guide Date Description Version 8/20/2010 Draft Gladinet

More information

UNCLASSIFIED. UK Email Archiving powered by Mimecast Service Description

UNCLASSIFIED. UK Email Archiving powered by Mimecast Service Description UNCLASSIFIED 11/12/2015 v2.2 UK Email Archiving powered by Mimecast Service Description Cobweb s UK Email Archiving, powered by Mimecast, provides businesses with a secure, scalable cloud-based message

More information

Overview. Timeline Cloud Features and Technology

Overview. Timeline Cloud Features and Technology Overview Timeline Cloud is a backup software that creates continuous real time backups of your system and data to provide your company with a scalable, reliable and secure backup solution. Storage servers

More information

Data In The Cloud: Who Owns It, and How Do You Get it Back?

Data In The Cloud: Who Owns It, and How Do You Get it Back? Data In The Cloud: Who Owns It, and How Do You Get it Back? Presented by Dave Millier, Soban Bhatti, and Oleg Sotnikov 2013 Sentry Metrics Inc. Agenda Reasons for Cloud Adoption How Did My Data Get There?

More information

Cloud Backup Service Service Description. PRECICOM Cloud Hosted Services

Cloud Backup Service Service Description. PRECICOM Cloud Hosted Services Cloud Backup Service Service Description PRECICOM Cloud Hosted Services Table of Contents Table of Contents 2 1. Cloud Backup Service Service Summary 3 2. Cloud Backup Service Service Definition 4 2.1.

More information

Release Notes. Cloud Attached Storage 2.5.32

Release Notes. Cloud Attached Storage 2.5.32 Release Notes Cloud Attached Storage 2.5.32 January 2011 Copyright 2009-2011 CTERA Networks Ltd. All rights reserved. No part of this document may be reproduced in any form or by any means without written

More information

EMC Backup and Recovery for Microsoft SQL Server 2008 Enabled by EMC Celerra Unified Storage

EMC Backup and Recovery for Microsoft SQL Server 2008 Enabled by EMC Celerra Unified Storage EMC Backup and Recovery for Microsoft SQL Server 2008 Enabled by EMC Celerra Unified Storage Applied Technology Abstract This white paper describes various backup and recovery solutions available for SQL

More information

Hitachi Content Platform (HCP)

Hitachi Content Platform (HCP) Copyright 2014 A*STAR Version 1.0 Hitachi Content Platform (HCP) HCP and HCP Anywhere Features Evaluation THIS DOCUMENT AND THE INFORMATION CONTAINED HEREIN IS PROVIDED ON AN "AS IS" BASIS WITHOUT ANY

More information

Installation and Setup: Setup Wizard Account Information

Installation and Setup: Setup Wizard Account Information Installation and Setup: Setup Wizard Account Information Once the My Secure Backup software has been installed on the end-user machine, the first step in the installation wizard is to configure their account

More information

Orixcloud Backup Client. Frequently Asked Questions

Orixcloud Backup Client. Frequently Asked Questions Frequently Asked Questions Version 1.2 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by other means. No rights

More information

ReadyNAS Replicate. Software Reference Manual. 350 East Plumeria Drive San Jose, CA 95134 USA. November 2010 202-10727-01 v1.0

ReadyNAS Replicate. Software Reference Manual. 350 East Plumeria Drive San Jose, CA 95134 USA. November 2010 202-10727-01 v1.0 ReadyNAS Replicate Software Reference Manual 350 East Plumeria Drive San Jose, CA 95134 USA November 2010 202-10727-01 v1.0 2010 NETGEAR, Inc. All rights reserved. No part of this publication may be reproduced,

More information

General Product Questions... 3. Q. What is the Bell Personal Vault Vault?...4. Q. What is Bell Personal Vault Backup Manager?...4

General Product Questions... 3. Q. What is the Bell Personal Vault Vault?...4. Q. What is Bell Personal Vault Backup Manager?...4 Frequently Asked Questions to be posted at: /faqs/ Table of Contents General Product Questions... 3 Q. What is the Bell Personal Vault Vault?...4 Q. What is Bell Personal Vault Backup Manager?...4 Q. What

More information

Synergy Controller Cloud Storage Features and Benefits

Synergy Controller Cloud Storage Features and Benefits Synergy Controller Cloud Storage Features and Benefits The exploding popularity of cloud based data storage and application services is a direct result of the benefits they provide in virtually all business

More information

WOS Cloud. ddn.com. Personal Storage for the Enterprise. DDN Solution Brief

WOS Cloud. ddn.com. Personal Storage for the Enterprise. DDN Solution Brief DDN Solution Brief Personal Storage for the Enterprise WOS Cloud Secure, Shared Drop-in File Access for Enterprise Users, Anytime and Anywhere 2011 DataDirect Networks. All Rights Reserved DDN WOS Cloud

More information

Migration Scenario: Migrating Backend Processing Pipeline to the AWS Cloud

Migration Scenario: Migrating Backend Processing Pipeline to the AWS Cloud Migration Scenario: Migrating Backend Processing Pipeline to the AWS Cloud Use case Figure 1: Company C Architecture (Before Migration) Company C is an automobile insurance claim processing company with

More information

M Y S E C U R E B A C K U P. p r o d u c t o v e r v i e w O N L I N E B U S I N E S S B A C K U P

M Y S E C U R E B A C K U P. p r o d u c t o v e r v i e w O N L I N E B U S I N E S S B A C K U P O N L I N E B U S I N E S S B A C K U P Protect your company s files against loss, theft, viruses, and natural disasters. Share business data securely and privately in the office or across the globe. Sync

More information

Cumulus: filesystem backup to the Cloud

Cumulus: filesystem backup to the Cloud Michael Vrable, Stefan Savage, a n d G e o f f r e y M. V o e l k e r Cumulus: filesystem backup to the Cloud Michael Vrable is pursuing a Ph.D. in computer science at the University of California, San

More information

SteelFusion with AWS Hybrid Cloud Storage

SteelFusion with AWS Hybrid Cloud Storage Solution Guide SteelFusion with AWS Hybrid Cloud Storage March 2016 The Challenge According to IDC, to meet the demands of global customer and global talent requirements, companies have to maintain remote

More information

Understanding offline files

Understanding offline files Understanding offline files Introduction If you've ever needed to access important files stored in a shared folder on your network but couldn't because the network connection was unavailable, then you

More information

Manufacturers Need More Than Just Backup... But they don t need to spend more! axcient.com

Manufacturers Need More Than Just Backup... But they don t need to spend more! axcient.com Manufacturers Need More Than Just Backup... But they don t need to spend more! axcient.com Introduction Manufacturers need to keep their businesses up and running more than ever now. Automating work processes

More information

AVLOR SERVER CLOUD RECOVERY

AVLOR SERVER CLOUD RECOVERY AVLOR SERVER CLOUD RECOVERY WHITE PAPER 1 Table of Contents Abstract... 2 1. Introduction... 3 2. Server Cloud Recovery... 3 3. Amazon AWS Cloud... 4 a. What it is... 4 b. Why Use AWS?... 5 4. Difficulties

More information

Online Backup by Mozy. Common Questions

Online Backup by Mozy. Common Questions Online Backup by Mozy Common Questions Document Revision Date: June 29, 2012 Online Backup by Mozy Common Questions 1 What is Online Backup by Mozy? Online Backup by Mozy is a secure online data backup

More information

Talk With Someone Live Now: (760) 650-2313. One Stop Data & Networking Solutions PREVENT DATA LOSS WITH REMOTE ONLINE BACKUP SERVICE

Talk With Someone Live Now: (760) 650-2313. One Stop Data & Networking Solutions PREVENT DATA LOSS WITH REMOTE ONLINE BACKUP SERVICE One Stop Data & Networking Solutions PREVENT DATA LOSS WITH REMOTE ONLINE BACKUP SERVICE Prevent Data Loss with Remote Online Backup Service The U.S. National Archives & Records Administration states that

More information

Corporate PC Backup - Best Practices

Corporate PC Backup - Best Practices A Druva Whitepaper Corporate PC Backup - Best Practices This whitepaper explains best practices for successfully implementing laptop backup for corporate workforce. White Paper WP /100 /009 Oct 10 Table

More information

SafeNet KMIP and Google Cloud Storage Integration Guide

SafeNet KMIP and Google Cloud Storage Integration Guide SafeNet KMIP and Google Cloud Storage Integration Guide Documentation Version: 20130719 Table of Contents CHAPTER 1 GOOGLE CLOUD STORAGE................................. 2 Introduction...............................................................

More information

Symantec Backup Exec 11d for Windows Small Business Server

Symantec Backup Exec 11d for Windows Small Business Server Symantec Backup Exec 11d for Windows Small Business Server End-User Call Script for Sales This document is intended as a simple call structure to help get you started when selling Backup Exec 11d for Windows

More information

Introweb Remote Backup Client for Mac OS X User Manual. Version 3.20

Introweb Remote Backup Client for Mac OS X User Manual. Version 3.20 Introweb Remote Backup Client for Mac OS X User Manual Version 3.20 1. Contents 1. Contents...2 2. Product Information...4 3. Benefits...4 4. Features...5 5. System Requirements...6 6. Setup...7 6.1. Setup

More information

The Google File System

The Google File System The Google File System By Sanjay Ghemawat, Howard Gobioff, and Shun-Tak Leung (Presented at SOSP 2003) Introduction Google search engine. Applications process lots of data. Need good file system. Solution:

More information

CTERA Agent for Mac OS-X

CTERA Agent for Mac OS-X User Guide CTERA Agent for Mac OS-X June 2014 Version 4.1 Copyright 2009-2014 CTERA Networks Ltd. All rights reserved. No part of this document may be reproduced in any form or by any means without written

More information

SynapseBackup Secure backups and disaster recovery services for both physical and virtual environments. Top reasons on why SynapseBackup is the best

SynapseBackup Secure backups and disaster recovery services for both physical and virtual environments. Top reasons on why SynapseBackup is the best SynapseBackup Secure backups and disaster recovery services for both physical and virtual environments Synapse have been both using and offering online backup solutions to clients since 1998. An online

More information

Synergy Controller Cloud Storage Features and Benefits

Synergy Controller Cloud Storage Features and Benefits Synergy Controller Cloud Storage Features and Benefits The exploding popularity of cloud based data storage and application services is a direct result of the benefits they seem to provide in virtually

More information

Oracle Database Backup in the Cloud. An Oracle White Paper September 2008

Oracle Database Backup in the Cloud. An Oracle White Paper September 2008 Oracle Database Backup in the Cloud An Oracle White Paper September 2008 Oracle Database Backup in the Cloud Introduction... 2 Cloud backup Overview... 2 Introducing Oracle Secure Backup Cloud Module...

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

High Security Online Backup. A Cyphertite White Paper February, 2013. Cloud-Based Backup Storage Threat Models

High Security Online Backup. A Cyphertite White Paper February, 2013. Cloud-Based Backup Storage Threat Models A Cyphertite White Paper February, 2013 Cloud-Based Backup Storage Threat Models PG. 1 Definition of Terms Secrets Passphrase: The secrets passphrase is the passphrase used to decrypt the 2 encrypted 256-bit

More information

Continuous Data Protection. PowerVault DL Backup to Disk Appliance

Continuous Data Protection. PowerVault DL Backup to Disk Appliance Continuous Data Protection PowerVault DL Backup to Disk Appliance Continuous Data Protection Current Situation The PowerVault DL Backup to Disk Appliance Powered by Symantec Backup Exec offers the industry

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

Base One's Rich Client Architecture

Base One's Rich Client Architecture Base One's Rich Client Architecture Base One provides a unique approach for developing Internet-enabled applications, combining both efficiency and ease of programming through its "Rich Client" architecture.

More information

Zmanda Cloud Backup Frequently Asked Questions

Zmanda Cloud Backup Frequently Asked Questions Zmanda Cloud Backup Frequently Asked Questions Release 4.1 Zmanda, Inc Table of Contents Terminology... 4 What is Zmanda Cloud Backup?... 4 What is a backup set?... 4 What is amandabackup user?... 4 What

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

Simple Storage Service (S3)

Simple Storage Service (S3) Simple Storage Service (S3) Amazon S3 is storage for the Internet. It is designed to make web-scale computing easier for developers. Amazon S3 provides a simple web services interface that can be used

More information

Apptix Online Backup by Mozy

Apptix Online Backup by Mozy Apptix Online Backup by Mozy What is Apptix Online Backup by Mozy? Apptix Online Backup by Mozy is a secure online data backup service. It's a simple, smart, and economical way to protect your data from

More information

12 Key File Sync and Share Advantages of Transporter Over Box for Enterprise

12 Key File Sync and Share Advantages of Transporter Over Box for Enterprise WHITE PAPER 12 Key File Sync and Share Advantages of Transporter Over Box for Enterprise Cloud storage companies invented a better way to manage information that allows files to be automatically synced

More information

Deploying VSaaS and Hosted Solutions Using CompleteView

Deploying VSaaS and Hosted Solutions Using CompleteView SALIENT SYSTEMS WHITE PAPER Deploying VSaaS and Hosted Solutions Using CompleteView Understanding the benefits of CompleteView for hosted solutions and successful deployment architecture Salient Systems

More information

Cloud Computing. Chapter 6 Data Storage in the Cloud

Cloud Computing. Chapter 6 Data Storage in the Cloud Cloud Computing Chapter 6 Data Storage in the Cloud Learning Objectives Discuss the role of storage-area networks. Discuss the role of network-attached storage. Describe cloud-based storage solutions.

More information

Why back up the Cloud?

Why back up the Cloud? Why back up the Cloud? The CloudBerry Lab Whitepaper The introduction Always backup your data, even if it is in the cloud. The 3-2-1 rule of data protection says keep three copies of your data, on two

More information

CA ARCserve and CA XOsoft r12.5 Best Practices for protecting Microsoft Exchange

CA ARCserve and CA XOsoft r12.5 Best Practices for protecting Microsoft Exchange CA RECOVERY MANAGEMENT R12.5 BEST PRACTICES CA ARCserve and CA XOsoft r12.5 Best Practices for protecting Microsoft Exchange Overview Benefits The CA Advantage The CA ARCserve Backup Support and Engineering

More information

Meeting the Challenges of Remote Data Protection: Requirements and Best Practices

Meeting the Challenges of Remote Data Protection: Requirements and Best Practices Meeting the Challenges of Remote Data Protection: Requirements and Best Practices A Whitepaper by Stefan Utzinger, NovaStor CEO (March 2011) Table of Contents EXECUTIVE SUMMARY... 2 INTRODUCTION: THE CHALLENGE

More information

BackupAssist v6 quickstart guide

BackupAssist v6 quickstart guide New features in BackupAssist v6... 2 VSS application backup (Exchange, SQL, SharePoint)... 3 System State backup... 3 Restore files, applications, System State and mailboxes... 4 Fully cloud ready Internet

More information

Online Backup Solution with Disaster Recovery

Online Backup Solution with Disaster Recovery Online Backup Solution with Disaster Recovery Backup Replacement - Online For Businesses looking for Consistent, Reliable and Offsite Backup, with Minimal Data loss, Generational Management and Disaster

More information

Cloud Models and Platforms

Cloud Models and Platforms Cloud Models and Platforms Dr. Sanjay P. Ahuja, Ph.D. 2010-14 FIS Distinguished Professor of Computer Science School of Computing, UNF A Working Definition of Cloud Computing Cloud computing is a model

More information

Service Overview CloudCare Online Backup

Service Overview CloudCare Online Backup Service Overview CloudCare Online Backup CloudCare s Online Backup service is a secure, fully automated set and forget solution, powered by Attix5, and is ideal for organisations with limited in-house

More information

Version: 1.5 2014 Page 1 of 5

Version: 1.5 2014 Page 1 of 5 Version: 1.5 2014 Page 1 of 5 1.0 Overview A backup policy is similar to an insurance policy it provides the last line of defense against data loss and is sometimes the only way to recover from a hardware

More information

How To Use Quantum Rbs Inc. Small Business Backup

How To Use Quantum Rbs Inc. Small Business Backup Small Business Backup & Recovery (File Servers, Peer-to-Peer, Laptops, Desktops) Smart Features: Continuous Backup Anywhere Access to Backed Up Data Simple Rate Plan Secure Bank Grade Encryption Open Files

More information

Data Backup Options for SME s

Data Backup Options for SME s Data Backup Options for SME s As an IT Solutions company, Alchemy are often asked what is the best backup solution? The answer has changed over the years and depends a lot on your situation. We recognize

More information

A block based storage model for remote online backups in a trust no one environment

A block based storage model for remote online backups in a trust no one environment A block based storage model for remote online backups in a trust no one environment http://www.duplicati.com/ Kenneth Skovhede (author, kenneth@duplicati.com) René Stach (editor, rene@duplicati.com) Abstract

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

Flexible cloud backup service on CloudByte

Flexible cloud backup service on CloudByte Flexible cloud backup service on CloudByte Online Backup and Recovery Business Context Today there are number of cloud-based backup and restore service players which have emerged. Some of these players

More information

Office 365 Cheat Sheet OneDrive for Business

Office 365 Cheat Sheet OneDrive for Business DEPARTMENT OF EDUCATION Office 365 Cheat Sheet OneDrive for Business Introduction to OneDrive for Business OneDrive for Business is a new offering within Office 365 that has been enabled for all NTSchools

More information

Backing up your Data. October 2014 Gus Falkenberg/Kris Schwartz

Backing up your Data. October 2014 Gus Falkenberg/Kris Schwartz Backing up your Data October 2014 Gus Falkenberg/Kris Schwartz Welcome We will be covering Backup vs. Sharing Backup Sharing Files Questions Backup vs. Sharing Different Goals Backups Disaster Recovery

More information

Remote Network Accelerator

Remote Network Accelerator Remote Network Accelerator Evaluation Guide LapLink Software 10210 NE Points Drive Kirkland, WA 98033 Tel: (425) 952-6000 www.laplink.com LapLink Remote Network Accelerator Evaluation Guide Page 1 of 19

More information

How To Use Attix5 Pro For A Fraction Of The Cost Of A Backup

How To Use Attix5 Pro For A Fraction Of The Cost Of A Backup Service Overview Business Cloud Backup Techgate s Business Cloud Backup service is a secure, fully automated set and forget solution, powered by Attix5, and is ideal for organisations with limited in-house

More information

Introduction. Silverton Consulting, Inc. StorInt Briefing

Introduction. Silverton Consulting, Inc. StorInt Briefing Introduction Silverton Consulting, Inc. StorInt Briefing All too often in today s SMB data centers the overall backup and recovery process, including both its software and hardware components, is given

More information

Cloud Storage. Deep Dive. Extending storage infrastructure into the cloud SPECIAL REPORT JUNE 2011

Cloud Storage. Deep Dive. Extending storage infrastructure into the cloud SPECIAL REPORT JUNE 2011 SPECIAL REPORT JUNE 2011 Cloud Storage Deep Dive Extending storage infrastructure into the cloud Copyright 2011 InfoWorld Media Group. All rights reserved. Sponsored by 2 How to get the most from cloud-based

More information

Security of Cloud Storage: - Deduplication vs. Privacy

Security of Cloud Storage: - Deduplication vs. Privacy Security of Cloud Storage: - Deduplication vs. Privacy Benny Pinkas - Bar Ilan University Shai Halevi, Danny Harnik, Alexandra Shulman-Peleg - IBM Research Haifa 1 Remote storage and security Easy to encrypt

More information

CROSS PLATFORM AUTOMATIC FILE REPLICATION AND SERVER TO SERVER FILE SYNCHRONIZATION

CROSS PLATFORM AUTOMATIC FILE REPLICATION AND SERVER TO SERVER FILE SYNCHRONIZATION 1 E N D U R A D A T A EDpCloud: A File Synchronization, Data Replication and Wide Area Data Distribution Solution CROSS PLATFORM AUTOMATIC FILE REPLICATION AND SERVER TO SERVER FILE SYNCHRONIZATION 2 Resilient

More information

EZblue BusinessServer The All - In - One Server For Your Home And Business

EZblue BusinessServer The All - In - One Server For Your Home And Business EZblue BusinessServer The All - In - One Server For Your Home And Business Quick Start Guide Version 3.11 1 2 3 EZblue Server Overview EZblue Server Installation EZblue Server Configuration 4 EZblue Magellan

More information

Enterprise Private Cloud Storage

Enterprise Private Cloud Storage Enterprise Private Cloud Storage The term cloud storage seems to have acquired many definitions. At Cloud Leverage, we define cloud storage as an enterprise-class file server located in multiple geographically

More information

Peer-to-peer Cooperative Backup System

Peer-to-peer Cooperative Backup System Peer-to-peer Cooperative Backup System Sameh Elnikety Mark Lillibridge Mike Burrows Rice University Compaq SRC Microsoft Research Abstract This paper presents the design and implementation of a novel backup

More information

Online databackup solution combined comparisons

Online databackup solution combined comparisons Online databackup solution combined comparisons There are plenty of comparison articles about online backup solution. We have tried to gather the best ones for you in order to facilitate your online databackup

More information

An Introduction to Cloud Computing Concepts

An Introduction to Cloud Computing Concepts Software Engineering Competence Center TUTORIAL An Introduction to Cloud Computing Concepts Practical Steps for Using Amazon EC2 IaaS Technology Ahmed Mohamed Gamaleldin Senior R&D Engineer-SECC ahmed.gamal.eldin@itida.gov.eg

More information

Top 10 Information Technology Best Practices for the Architecture, Engineering, and Construction Industry

Top 10 Information Technology Best Practices for the Architecture, Engineering, and Construction Industry Top 10 Information Technology Best Practices for the Architecture, Engineering, and Construction Industry How can a business owner in the Architectural, Engineering, or Construction community improve their

More information

All can damage or destroy your company s computers along with the data and applications you rely on to run your business.

All can damage or destroy your company s computers along with the data and applications you rely on to run your business. All can damage or destroy your company s computers along with the data and applications you rely on to run your business. Losing your computers doesn t have to disrupt your business if you take advantage

More information

How To Restore Your Data On A Backup By Mozy (Windows) On A Pc Or Macbook Or Macintosh (Windows 2) On Your Computer Or Mac) On An Pc Or Ipad (Windows 3) On Pc Or Pc Or Micro

How To Restore Your Data On A Backup By Mozy (Windows) On A Pc Or Macbook Or Macintosh (Windows 2) On Your Computer Or Mac) On An Pc Or Ipad (Windows 3) On Pc Or Pc Or Micro Online Backup by Mozy Restore Common Questions Document Revision Date: June 29, 2012 Online Backup by Mozy Common Questions 1 How do I restore my data? There are five ways of restoring your data: 1) Performing

More information

Technical White Paper BlackBerry Enterprise Server

Technical White Paper BlackBerry Enterprise Server Technical White Paper BlackBerry Enterprise Server BlackBerry Enterprise Edition for Microsoft Exchange For GPRS Networks Research In Motion 1999-2001, Research In Motion Limited. All Rights Reserved Table

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

Choosing a Cloud Computing Company

Choosing a Cloud Computing Company Benefits of Cloud Computing - Pros of Cloud Computing - Arguments for Cloud Computing Choosing a Cloud Computing Company 1. With Cloud Computing, employee's computers will cost less, because essentially

More information

AWS Import/Export. Developer Guide API Version 2010-06-03

AWS Import/Export. Developer Guide API Version 2010-06-03 AWS Import/Export Developer Guide AWS Import/Export: Developer Guide Copyright 2014 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. The following are trademarks of Amazon Web Services,

More information

The ultimate backup solution for your company

The ultimate backup solution for your company The ultimate backup solution for your company Data loss is a nightmare (1) Your data are growing exponentially If you find yourself now in a situation where you have to deal with an explosion in the volume

More information

ENABLING GLOBAL HADOOP WITH EMC ELASTIC CLOUD STORAGE

ENABLING GLOBAL HADOOP WITH EMC ELASTIC CLOUD STORAGE ENABLING GLOBAL HADOOP WITH EMC ELASTIC CLOUD STORAGE Hadoop Storage-as-a-Service ABSTRACT This White Paper illustrates how EMC Elastic Cloud Storage (ECS ) can be used to streamline the Hadoop data analytics

More information

Financial Services Need More than Just Backup... But they don t need to spend more! axcient.com

Financial Services Need More than Just Backup... But they don t need to spend more! axcient.com Financial Services Need More than Just Backup... But they don t need to spend more! axcient.com Introduction Financial institutions need to keep their businesses up and running more than ever now. Considering

More information

IBM/Softlayer Object Storage for Offsite Backup

IBM/Softlayer Object Storage for Offsite Backup IBM/Softlayer Object Storage for Offsite Backup How to use IBM/Softlayer Object Storage for Offsite Backup How to use IBM/Softlayer Object Storage for Offsite Backup IBM/Softlayer Object Storage is a redundant

More information

eztechdirect Backup Service Features

eztechdirect Backup Service Features eztechdirect Backup Service Features Introduction Portable media is quickly becoming an outdated and expensive method for safeguarding important data, so it is essential to secure critical business assets

More information

Drupal in the Cloud. Scaling with Drupal and Amazon Web Services. Northern Virginia Drupal Meetup

Drupal in the Cloud. Scaling with Drupal and Amazon Web Services. Northern Virginia Drupal Meetup Drupal in the Cloud Scaling with Drupal and Amazon Web Services Northern Virginia Drupal Meetup 3 Dec 2008 Cast of Characters Eric at The Case Foundation: The Client With typical client challenges Cost:

More information

Mapping Your Path to the Cloud. A Guide to Getting your Dental Practice Set to Transition to Cloud-Based Practice Management Software.

Mapping Your Path to the Cloud. A Guide to Getting your Dental Practice Set to Transition to Cloud-Based Practice Management Software. Mapping Your Path to the Cloud A Guide to Getting your Dental Practice Set to Transition to Cloud-Based Practice Management Software. Table of Contents Why the Cloud? Mapping Your Path to the Cloud...4

More information

WaterfordTechnologies.com Frequently Asked Questions

WaterfordTechnologies.com Frequently Asked Questions WaterfordTechnologies.com Frequently Asked Questions 1 E-Mail How is an archive different than a backup? MailMeter email archiving captures a copy of every email that is sent or received through your email

More information

Enterprise Email Archive Managed Archiving & ediscovery Services User Manual

Enterprise Email Archive Managed Archiving & ediscovery Services User Manual Enterprise Email Archive Managed Archiving & ediscovery Services User Manual Copyright (C) 2012 MessageSolution Inc. All Rights Reserved Table of Contents Chapter 1: Introduction... 3 1.1 About MessageSolution

More information

Competitive Analysis Retrospect And Our Competition

Competitive Analysis Retrospect And Our Competition Competitive Analysis And Our Competition September 2013 Competitive Analysis: for Windows and our top competitors We ve taken a hard look at our competition and how we stack up. Here is a comparison of

More information

Click Studios. Passwordstate. High Availability Installation Instructions

Click Studios. Passwordstate. High Availability Installation Instructions Passwordstate High Availability Installation Instructions This document and the information controlled therein is the property of Click Studios. It must not be reproduced in whole/part, or otherwise disclosed,

More information

Drobo How-To Guide. Cloud Storage Using Amazon Storage Gateway with Drobo iscsi SAN

Drobo How-To Guide. Cloud Storage Using Amazon Storage Gateway with Drobo iscsi SAN The Amazon Web Services (AWS) Storage Gateway uses an on-premises virtual appliance to replicate a portion of your local Drobo iscsi SAN (Drobo B1200i, left below, and Drobo B800i, right below) to cloudbased

More information

1. Product Information

1. Product Information ORIXCLOUD BACKUP CLIENT USER MANUAL LINUX 1. Product Information Product: Orixcloud Backup Client for Linux Version: 4.1.7 1.1 System Requirements Linux (RedHat, SuSE, Debian and Debian based systems such

More information

Nasuni Management Console Guide

Nasuni Management Console Guide Nasuni Management Console Guide Version 5.5 April 2014 2014 Nasuni Corporation All Rights Reserved Document Information Nasuni Management Console Guide Version 5.5 April 2014 Copyright Copyright 2010-2014

More information

Table of Contents. OpenDrive Drive 2. Installation 4 Standard Installation Unattended Installation

Table of Contents. OpenDrive Drive 2. Installation 4 Standard Installation Unattended Installation User Guide for OpenDrive Application v1.6.0.4 for MS Windows Platform 20150430 April 2015 Table of Contents Installation 4 Standard Installation Unattended Installation Installation (cont.) 5 Unattended

More information

Online Backup Client User Manual Linux

Online Backup Client User Manual Linux Online Backup Client User Manual Linux 1. Product Information Product: Online Backup Client for Linux Version: 4.1.7 1.1 System Requirements Operating System Linux (RedHat, SuSE, Debian and Debian based

More information

FAQ - Frequently Asked Questions Sections of Questions

FAQ - Frequently Asked Questions Sections of Questions FAQ - Frequently Asked Questions Sections of Questions Bell Business Backup Service Installation & Setup Firewall Settings Connections & Backups Account Information Restoring Files Uninstalling the Bell

More information