- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: rcp performance
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-12-2003 12:43 AM
08-12-2003 12:43 AM
rcp performance
I have a strange problem. If striped files are copied between 2 systems, the rcp performance is very slow. In contrast, if non-striped files are copied under the same situation, the rcp performance is normal.
OS: HP-UX 11.0
Lan Card: GELAN
What is the likely cause?
Thanks a lot,
Jason
Aug 12,2003
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2003 12:48 AM
08-12-2003 12:48 AM
Re: rcp performance
In that case, the reason could be the bus load, due to the transfer of files. K are not really performance-oriented.
Massimo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2003 12:49 AM
08-12-2003 12:49 AM
Re: rcp performance
What is the output of this from both systems?
# lanadmin -x 0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2003 12:56 AM
08-12-2003 12:56 AM
Re: rcp performance
are striped disk separate in different buses?
how stripe size do you have?
do you hAve striping or distributed vols?
send details please
thank you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2003 04:04 AM
08-12-2003 04:04 AM
Re: rcp performance
1. The disk array is EMC CX600.
2. HP system is N4000/440MHz.
3. The striped and non-striped volumes reside on the same area on CX600.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2003 05:35 AM
08-12-2003 05:35 AM
Re: rcp performance
Can you try comparing time of a file copy from the san to local disk?
time cp filename localdiskfilename
Are the stripped and non-striped files on the same array? If so, there should be no noticable difference in copy time.
After confirming the above, I'd look at the SAN setup for things like fiber path, including HBA and switch ports, to see if there is a config difference between the physical locations of the stripped and non-stripped portions of the array.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2003 06:18 AM
08-12-2003 06:18 AM
Re: rcp performance
I don't know that disk, but take a look at the logical to physical relationships of hte stripes.
Striping is best when done on different disks on different controllers. Striping on the same disk is a catastophe, and striping on the same controller is of limited value.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2003 04:12 AM
08-13-2003 04:12 AM
Re: rcp performance
Tips
Ftp usage:
We want to measure only the link speed, so we don't want to be hit with the overhead of disk transfers:
For 11.0 you need to create the device file:
# mknod /dev/zero c 3 4
This already exists in 11i and after
# ftp
ftp> put "| dd if=/dev/zero count=4096000 bs=1k " /dev/null
Send 4 GB data through the interface to "remote". On "remote" data will not be written to disk but instead will be sent to /dev/null.
TRY THIS IN BOTH DIRECTIONS!
Hope that helps,
-> Brian Hackley