- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Re: Image backup on DDS3
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
08-13-2007 08:03 AM
08-13-2007 08:03 AM
Image backup on DDS3
We have OpenVMS 6.2 version running on Alpha Server 1000A 5/400. We have four DDS1 tape libraries where the image backup of several hard drives is taken.
The command for backup is:-
BACKUP/IMAGE/IGNORE=(INTERLOCK,LABEL)/BLOCK=65534/NOCRC-
/GROUP=0/RECORD/NOASSIST 'drive': 'tapedrive':w'drive'.bak/save-
/MEDIA_FORMAT=COMPACT
These commands are run in loop for several hard disks.
I also have a DDS3 tape library, and hence I would like to combine all four scripts to backup the data on a 24GB drive.
Currently 4X4GB=16GB data is being backed up in four DDS1 drives.
Now the question is, considering the amount of time spent in taking the image backup per hard drive, what would be the best possible way to reduce the time consumption.
Currently,
1 Backup tape finishes in around 4-5 hours (4-5 hard drives image backup)
concurrently, other three also take similar time... which means that the backup finishes in 4-5 hours.
After converting all the scripts to DDS3 it would take around 16 hours, since backup happens sequentially (correct me if I am wrong).
Hence please put in your thoughts on how can I reduce the time consumption to somewhat equal hours, compare to current.
Thanks,
Rahul Khare.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2007 08:38 AM
08-13-2007 08:38 AM
Re: Image backup on DDS3
> would take around 16 hours, since backup
> happens sequentially (correct me if I am
> wrong).
Certainly, _if_ the DDS3 drive writes to tape
at the same speed as the DDS1 drives, and
_if_ nothing else is different.
Knowing nothing, I'd expect a tape drive two
generations newer to be at least a _little_
faster. Of course, it depends on what the
limiting link in the chain is now. Reading
four disks at the same time may be slower
than reading one disk at a time, too.
Why not run a medium-sized test on both type
drives? I'd expect reality to be more
accurate that any guesses you get here from
people who don't know how your disk drives
and tape drives are connected, or where your
current bottleneck is.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2007 10:36 AM
08-13-2007 10:36 AM
Re: Image backup on DDS3
Off-load your disk I/O and your tape I/O onto different SCSI buses. Avoid bus-level contention.
Defragment the input disks.
Reduce application-level I/O contention.
Set up the quotas on your BACKUP account.
http://64.223.189.234/node/49
Replace the Alpha system here with something faster. The AlphaServer 1000A is an ancient and very slow Alpha box. A used AlphaServer DS- or ES-class box will run rings around this box, and these boxes are readily available on the used-equipment market.
Consider acquiring a shelf or three of StorageWorks disks, and run your BACKUP operations disk-to-disk 24 GB is a very small and very old disk by current standards, so disks in this range and larger will be available for little cash.
http://64.223.189.234/node/54
Remember that /IGNORE=INTERLOCK allows for silent application data corruptions within the output saveset.
Look at upgrading to a newer version of OpenVMS. Newer OpenVMS releases tend to have far faster I/O subsystems.
Stephen Hoffman
HoffmanLabs LLC
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2007 11:24 AM
08-16-2007 11:24 AM
Re: Image backup on DDS3
$ BACKUP input/your_qualifiers NLA0:a.a/SAVE
If that time is close to what you see with writing the save set to your tape drive then the disk access is most likely the bottleneck.
Try it with the four disk drives you have.
/Guenther
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2007 11:29 AM
08-16-2007 11:29 AM
Re: Image backup on DDS3
Make sure the DIOLM of the process doing the backups is less than 50. Make sure that PQL_MDIOLM is also less than 50.
With a large DIOLM and multiple backups going to disk at the same time I would expect a long I/O queue building up basically making the four operations sequential. Depends on how the disks are connected.
Watch MONITOR DISK/ITEM=QUEUE_LENGTH while your backups run.
/Guenther
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2007 11:52 AM
08-16-2007 11:52 AM
Re: Image backup on DDS3
I would add /GROUP=0/NOCRC if you want to minimize the processing done by backup.
It will still read the same amount from the drives, but won't create the XOR redundancy groups or calculate the CRC.
$ BACKUP input/your_qualifiers NLA0:a.a/SAVE/GROUP=0/NOCRC