- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- SDLT tape unit very slow
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
01-24-2006 07:57 PM
01-24-2006 07:57 PM
I have attached a Compaq SDLT 110/220 Drive to my A500 HP-UX 11i v1 server.
Backing up 100G takes approx 12 hours.
I think this is excessive, I'm just backing up using fbackup and our old DLT tape unit (which is now broken) was taking about as long.
Any ideas on how I can speed this up?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2006 08:02 PM
01-24-2006 08:02 PM
Re: SDLT tape unit very slow
Have you tried cleaning?
Even DLT should not have taken that much time for this data. Is data in use while being backup up?
Have to tried some other backup command with same hardware to verify the throughput?
How is the utilization of the server when backup is going on?
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2006 08:05 PM
01-24-2006 08:05 PM
Re: SDLT tape unit very slow
http://www2.itrc.hp.com/service/james/search.do?searchtext=SDLT+tape+unit+very+slow&x=6&y=4&searchcriteria=anyword&searchtype=SEARCH_FORUMS&rn=25&presort=rank
--
Muthu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2006 08:07 PM
01-24-2006 08:07 PM
Re: SDLT tape unit very slow
The server has a large Oracle database on it, but we shut this down for the backup.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2006 08:09 PM
01-24-2006 08:09 PM
Re: SDLT tape unit very slow
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2006 08:59 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2006 10:02 PM
01-24-2006 10:02 PM
Re: SDLT tape unit very slow
I suspect that fbackup simply cannot feed the data fast enough to keep the drive "streaming". The modern tape drives are designed to "stream" the data onto the tape very quickly. If the drive doesn't get enough data, it has to stop the high speed forward motion of the tape, rewind it, find where it left off and then try to resume from there. This constant stopping, rewinding, and resuming not only slows down the transfer, it is probably what contributed to the demise of your previous drive.
In order to fully utilize your drive, you would need to use a more sophisticated backup package that sends multiple streams of data to the drive in order to keep it fed. With fbackup, I would think you might to better off writing to a DAT drive. If you've got one around, I would definitely give it a try.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2006 10:12 PM
01-24-2006 10:12 PM
Re: SDLT tape unit very slow
Your A class may not be able to supply the fbackup processes with data at the required rate. This may be caused by slow disks, fragmented files or not enough cpu to drive multiple fbackup processes at once.
I can stream to an LTO2 with fbackup, but I have 15krpm disks and at least 4 cpus at 750 Mhz, the point it you need to look at the whole system end-to-end, from source through cpu, fbackup config file, interface card speed, to the tape drive.
Another possible reason may be plugging the tape drive into the same SCSI bus as the disk - that is not recommended.
Another possibility is to check the SCSI RATE in the BCH menus. It can be set to things like FAST and ULTRA, you would need to verify you got the right one - I think ULTRA is a safe bet for SDLT.
HP have a useful tape testing utility you can download which will give you more information.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2006 11:22 PM
01-24-2006 11:22 PM
Re: SDLT tape unit very slow
Using SAM has actually speeded it up so thanks for that Eric :)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2006 01:08 AM
01-25-2006 01:08 AM
Re: SDLT tape unit very slow
To maximize the throughput, fbackup has a config file to improve performance. fbackup's defaults are NOT compatible with modern tape drives, they were designed for reel-to-reel magtapes. So change your fbackup command to use a config file (-c option), something like this:
blocksperrecord 256
records 32
checkpointfreq 1024
readerprocesses 6
maxretries 5
retrylimit 5000000
maxvoluses 200
filesperfsm 2000
For SAM, edit the file: /usr/sam/config/br/fbackup_config with the above values and retry the backup. That should improve the backup speed considerably.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2006 10:55 PM
01-25-2006 10:55 PM
Re: SDLT tape unit very slow
The config file shaved approx 30% off the backup time