- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Throughput to DDS5 tape drive
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
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
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
тАО06-19-2005 11:47 PM
тАО06-19-2005 11:47 PM
Throughput to DDS5 tape drive
I have a customer with the following Server spec:
HP 9000 RP4440 running HPUX 11i
4Gb RAM
Tape device: Internal DDS5/DAT72
Most recent o/s patches applied: Jun 04
This customer runs a nightly data backup which usually writes about 80Gb to tape. When this runs successfully the transfer rate is approx 2Gb/min. It is now a regular occurrence for this to slow down to 200Mb/min & this has a knock-on affect on other processes that cannot run due to the backup still being in progress. If a reboot is performed, the subsequent nightly backup will write to tape at the correct speed. Usually the next night the problem will reoccur though. There are no other processes that should be interferring with this whilst the backup is running.
I have been told by an HP engineer that it is not likely to be a problem with the tape device nor any other hardware. Advised it is possible that software may be responsible. Possibly a memory leak?
Has anyone any ideas or come across this before?
Many thanks,
David Stedman
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-20-2005 12:03 AM
тАО06-20-2005 12:03 AM
Re: Throughput to DDS5 tape drive
IT is NOT a tape drive issue, like the HP engineer pointed out.
You need to look at the software you are using to perform backups (which you didn't post).
Additionally, you NEED to bring your machine up to date with at least the DECEMBER 04 patch bundle!! http://www1.itrc.hp.com/service/patch/releasePage.do?BC=patch.breadcrumb.main|patch.breadcrumb.bundle|patch.breadcrumb.releaseIndexPage|&releaseId=5013-3299
live free or die
harry d brown jr
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-20-2005 12:12 AM
тАО06-20-2005 12:12 AM
Re: Throughput to DDS5 tape drive
Hardware concerns:
Don't put the tape on a daisy chain with disk or other high volume scsi devices. This will significantly hinder performance.
Otherwise get decent software, keep the machine patched as Harry says and have a good time.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-20-2005 04:23 AM
тАО06-20-2005 04:23 AM
Re: Throughput to DDS5 tape drive
Modern tape drives (DDS-5, Ultrium, etc) have enormous throughput but are crippled by simple file backup tools. The reason is that something like tar will:
find a file
read the file one record at a time
write each record to the tape
close the file
And if anything else is going on in your system, especially in the same filesystem that is getting backed up, tar has to stand in line with all the other requests. There is no way to improve tar (and tar/cpio/etc should never be used with large files and important databases).
It's not just the slower response for file access..the 1/10th normal performance is also caused by missing the buffer requirements in the tape drive. Modern tapes are streamers, that is, they do not write one record at a time. Rather, they start up and continuously record non-stop. If data isn't supplied fast enough, the tape drive slows down, stops, backs up a ways, starts up, syncs to the previous records and then starts writing at the next record. This restart can take 3-8 seconds, an enormous amount of time, especially if it occurs dozens of times each minute. And thus, the very slow throughput.
So if the hardware is dedicated, start by using fbackup rather than legacy tools. Make sure you *ALWAYS* specify the following config file (fbackup defaults are for very slow systems and reel-to-reel drives):
blocksperrecord 512
records 64
checkpointfreq 1024
readerprocesses 6
maxretries 5
retrylimit 5000000
maxvoluses 200
filesperfsm 2000
fbackup will spawn 6 separate processes to keep the tape drive busy. Other commerical backup software products for HP-UX will do similar things to maximize the throughput. You'll always get the best performance when the system is not busy.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-21-2005 04:32 AM
тАО06-21-2005 04:32 AM
Re: Throughput to DDS5 tape drive
Just one additional thing. I forgot to mention that the problem occurs after a tape is NOT inserted into the drive. For eg, someone forgets to insert a tape & as a result, the backup fails. Then the following night the backup throughput issue starts to occur.
Not sure if this changes anything.
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-21-2005 05:12 AM
тАО06-21-2005 05:12 AM
Re: Throughput to DDS5 tape drive
Bill Hassell, sysadmin