- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Disk backup between boxes
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2006 05:02 PM
02-19-2006 05:02 PM
Disk backup between boxes
We want to eliminate the tape - and I have been testing an automated ftp script to do the job. It works - but causes a load on the system when running (there are 7 DB's here ranging in size from 4GB - 15GB). All of the scripts kickoff at the same time - I could reduce the load by making them sequential but that would increase the time for transfer (currently, it is taking about 15 minutes to transfer all 7 db's).
Someone recommended rsync - and I am looking into that. Wondering if anyone has experience with rsync and how it compares to ftp performance-wise.
Perhaps you use something different that would be more efficient?
TIA -
Betty
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2006 12:48 PM
02-20-2006 12:48 PM
Re: Disk backup between boxes
Have you looked into virtual tape? It will allow you to start writing to disk and still keep track of the database backups. After these are written to virtual tape then you are able to back them to physical tape and put them on a regular tape rotation for D/R and regulatory compliance.
Tom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2006 03:13 PM
02-20-2006 03:13 PM
Re: Disk backup between boxes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2006 01:17 AM
02-22-2006 01:17 AM
Re: Disk backup between boxes
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2006 01:26 AM
02-22-2006 01:26 AM
Re: Disk backup between boxes
If your files are small.. then rsynch may work for you so you wont have to deal with findng out what files are static...
Use the following example syntax:
rsync -avz --delete --exclude="lost+found" prdsrv1:/u/dbfiles /prdsrv1
Assuming on prdsrv1 your progress db files are in /u/dbfiles and on your other server, you want your backup reside on a filesystem/dir named /prdsrv1 - underneath it your dbfiles tree will be backed up.
The syntax states to bring in only changed files from prdsrv1 and to skip lost+found. It also directs to remove files on your destination that are not on the source.
Hope this helps..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2006 04:00 PM
02-22-2006 04:00 PM
Re: Disk backup between boxes
Thanks for the note are rsync. I've never used it but it sounds like it would be slower than the ftp.
There are 7 databases involved here. Ranging in size from 4GB - 15GB each. These are multi-volume databases - meaning that there are several files that make up each one. The db size is preallocated with each extent being 500mb.
I am moving - in total - about 55GB of data every three hours. Because of the structure of the db, one extent without the others has no value. So I really can't go with only those that have been 'modified'. When the db is started up, all of the extents are touched.
The other thought I had -
I am moving these concurrently - and I thought it might lighten the load to space out the start of the ftp process.
I also thought maybe it would be faster going from the L3K (1GB nic) to the D390 (100mb nic). Currently, the scripts are running on the d390 and pulling from the L3k.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2006 12:23 AM
02-23-2006 12:23 AM
Re: Disk backup between boxes
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2006 12:47 AM
02-23-2006 12:47 AM
Re: Disk backup between boxes
Betty, please clarify what data are actually backed up "several times per day". Are you actually backing up the database files or transaction logs? Most DB's need to be brought down (or be placed in hotbackup mode) to be usably backed up.
At 100Mbps w/c the maximum throughput the D390 is capable - you will only be able to transfer at best 9GB in 15 minutes! So I doubt that you really are transferring all 55GB every 15 minutes - unles I am reading and understanding your post wrong?
Based on years of using Rsync - I find no difference in speed w/ FTP -- in fact on trasferring text/ascii files, it is even significantly faster as it also compresses data.
HTH.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2006 02:04 AM
02-23-2006 02:04 AM
Re: Disk backup between boxes
Re-reading my post - the 15 minutes is wrong - it's actually about 30.
I am actually backing up the db files. Progress 'freezes' the db for a couple of seconds, takes a snapshot of the db, and then does the online backup using that snapshot. The online backup takes about 10 minutes per database (yes - 10 minutes).
The script files then pickup those files and move them to the d390. The files look like this:
etc
Each of these is 500mb.
I really am transferring 55gb.
When you say that it is significantly faster with text/ascii files, it sounds like rsync is the tool that I want to use. But when you say that it compresses the data, it makes me wonder about the integrity on the other side. Do the files have to be decompressed to be usable?
Think I will play with rsync and see what I get.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2006 02:15 AM
02-23-2006 02:15 AM