- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Concurrent Restores/Backups
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-07-2002 05:41 AM
02-07-2002 05:41 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2002 05:56 AM
02-07-2002 05:56 AM
Re: Concurrent Restores/Backups
As the main time limiting factor with backups is the speed at which data is written to (or read from) tape then I would expect your backup time to reduce to about 40 minutes if you run four concurrently.
Your main concern would be how to split up the backups into 4 equal chunks, this would depend on what utility you are using.
I have used this approach numerous times in the past. The only downside that I can think of is that you need four times as many tapes!
Regards,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2002 06:00 AM
02-07-2002 06:00 AM
SolutionThere is no way to answer this question because it is dependent upon your data. If your backups are tape device bound then yes it will help but if you are bound by disk I/O then multiple processes will almost certainly be slower.
In your case, using DDS3 I suspect that you are tape drive bound but only doing a trial will tell for sure.
If you are going to drop multiple processes into background, I suggest that you do it something like this:
bkup1 &
bkup2 &
bkup3 &
bkup4 &
wait
The wait will cause the parent process to wait fore all the background to finish before proceeding and thus you have some means of knowing the process finished.
While this will not speed up your restores, let me give you a plan B than will make your backups almost instantaneous.
Why not use vxfs snapshot mounts. This process takes only seconds and then you have nice, stable data that you can backup at leisure. Your regular processing can continue while you backup. When the backup is done, you unmount the snapshots.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2002 06:01 AM
02-07-2002 06:01 AM
Re: Concurrent Restores/Backups
Since fbackup works well and has a graph file to define each backup use that.
See man fbackup frecover.
You can also schedule the backups via sam.
Steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2002 07:57 AM
02-07-2002 07:57 AM
Re: Concurrent Restores/Backups
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2002 08:01 AM
02-07-2002 08:01 AM
Re: Concurrent Restores/Backups
Try this link from the docs site,
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90742/B2355-90742_top.html&con=/hpux/onlinedocs/B2355-90742/00/00/51-con.html&toc=/hpux/onlinedocs/B2355-90742/00/00/51-toc.html&searchterms=snapshot&queryid=20020207-080638
Look for "Backing Up a JFS Snapshot File System"
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2002 08:03 AM
02-07-2002 08:03 AM
Re: Concurrent Restores/Backups
Here is a lin from itrc, which deals with snapshot backup,
http://us-support.external.hp.com/cki/bin/doc.pl/sid=404956410caeee7380/screen=ckiDisplayDocument?docId=200000049791102
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2002 01:42 PM
02-07-2002 01:42 PM
Re: Concurrent Restores/Backups
So add at least 2 additional SCSI cards for the 4 drives, 4 SCSI cards would be ideal. Then make sure fbackup is running with a config file that looks like this:
blocksperrecord 256
records 32
checkpointfreq 1024
readerprocesses 6
maxretries 5
retrylimit 5000000
maxvoluses 200
filesperfsm 2000
Now the only problem is making sure all four tape drives are going blinky-blinky (technical term) all the time. That will in large part depend on the speed of the processors (note: plural) and speed of the disks. If all that is done, you should see a full backup in 1/4 of the time.
But your mileage may vary...
Bill Hassell, sysadmin