- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- stripe with 7 disks
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
04-22-2004 04:00 AM
04-22-2004 04:00 AM
The Unix buffercache is dynamic and at the moment 2,5 GB is allocated (also the max).
If I do a lot of io, for example a tar (without any compression) of a couple of 2GB datafiles, i only get a iorate of 10K block/second/disk. So 10K * 1/2K blocksize * 7 disks = 35 MB/second. I think this not what is should be. On my own pc, with only two 7200rpm disk in a stripe I can do more io's in the same time.
At first I did suspect tar, but with a copy of a 2GB file a did get the same io rates.
The disk are not 100% busy (average is 15%-20% busy)
Who can tell me whats wrong. What is the bottleneck in this case?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2004 04:21 AM
04-22-2004 04:21 AM
SolutionAlso, you need to get the disk (or tape) read io out of the picture when you do this sort of testing so use /dev/zero as an input device. In general tar, being single threaded, is not going to give you peak i/o for backups. You need something like fbackup with multiple readers.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2004 06:21 AM
04-22-2004 06:21 AM
Re: stripe with 7 disks
How did you create your stripe?
here is an example of my setup. I also have these on an EMC frame with caching redirected to the frame.
delaylog,largefiles,nodatainlog,mincache=direct,convosync=direct
# lvdisplay /dev/vgoradt13/oradt_fs102
--- Logical volumes ---
LV Name /dev/vgoradt13/oradt_fs102
VG Name /dev/vgoradt13
LV Permission read/write
LV Status available/syncd
Mirror copies 0
Consistency Recovery MWC
Schedule striped
LV Size (Mbytes) 69024
Current LE 17256
Allocated PE 17256
Stripes 8
Stripe Size (Kbytes) 128
Bad block NONE
Allocation strict
IO Timeout (Seconds) default
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2004 09:39 AM
04-22-2004 09:39 AM
Re: stripe with 7 disks
OK basic calculation here..
15 krpm disk does about 6ms service time. If you transfer 8kB each IO at 100 % util you can get 1.3 MB/s for each disk.. 7 disks you get 9MB/s.... This is reasonable for a really random stripe.
I'm slightly confused you say you do 10,000 BLOCKS per second/disk, is this IO/s or 0.5kB disk blocks? I will assume it is disk blocks & the OS is writing 8kB IO's (I assume you are using VxFS) so 625 IO/s, this is VERY good as it gives 0.625 ms service time IF THE DISKS ARE FLAT OUT.. (which you say they are not) the Seagate site says 0.4ms is the traso if they are 20% utilised this is 0.125 ms!!
Basically the 35MB/s figure to me seems fine.. I am suspicious that the disks are only running at 15-20%.. my guess is
o Buffer cache.. 2.5 GB is enourmous, if you are doing a read test then the system will sacan the buffer cache before going to disk. 400MB is usually ample..
o I would guess the SCSI interface, but you say it is U160. Check the syslog etc and make sure it has not re-negotiated down to a lower level.
o I assume you are connecting to a 2x DS2300.. If only 1xDS2300 is it in full bus mode or split bus mode?
anyway good luck
Tim
http://www.seagate.com/support/disc/specs/scsi/st336753lc.html
SPINDLE SPEED (RPM) ______________15k
AVERAGE LATENCY (mSEC) ___________2.0
INTERFACE ________________________Ultra-SCSI Wide
Low Voltage Differential ______Ultra3-SCSI Wide
AVERAGE ACCESS (ms read/write)____3.6/4.0
Drive level without controller overhead
SINGLE TRACK SEEK (ms read/write)_0.20/0.40
MAX FULL SEEK (ms read/write) ____6.5/6.9
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2004 11:06 PM
04-22-2004 11:06 PM
Re: stripe with 7 disks
I have tried some different way's to do IO. Also I used dd to read a 3,5 GB file and write it to /dev/null. It is faster, but not much. In this way I only do reads, so that was expected.
So, maybe Stephenson is right, and the extend based stripe is the bottleneck. Because the size of the FS's I use 4MB extent size, I configured the database (with blocksizes and multblockreadcount) so that every IO is 1MB.
Then I have looked at the scsi controllers. I have 2 DS2300's with full bus. I do not know how I can see if the scsi adapter are really running on 160MB/s. But because I only have the DS2300 with the disks on this strings, I think it's ok. In the test below you see that I can read with 120GB/s, so thatâ s also ok.
I also have done some testing with a real stripe with a 16K stripesize over three disks. I see that actions that do a read and write on the stripe are a little bit faster than the extent based stripe.
If I do only reads from the stripe to /dev/null the real stripe is more then 2 time as fast. I can read 120MB/s on a stripe over three disks. For the extend based stripe I read 55MB/s.
So, because read and write at the same time is the most production like, I am still a little bit disappointed. But I didn't get any complaints,â ¦â
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2004 01:37 AM
04-23-2004 01:37 AM
Re: stripe with 7 disks
I cant stress enough...
If this is for an Oracle or other similar DB, on attached disks, then I would definitely use the mount options I suggested.
Using UNIX buffer cache, for DB i/o, will greatly reduce the performance of your OS and also your app....