- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Why one mirror disk is much busier than anothe...
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
09-13-2006 08:51 PM
09-13-2006 08:51 PM
15:03:19 c2t1d0 38.00 0.50 2 24 0.49 53.49
c3t0d0 1.00 0.50 2 24 1.03 12.07
15:03:20
15:03:21
15:03:22
15:03:23 c2t1d0 24.00 0.50 1 2 0.97 248.05
c3t0d0 1.00 0.50 1 2 0.96 9.89
15:03:24 c2t1d0 12.00 0.50 1 8 1.05 127.17
15:03:25
15:03:26
15:03:27 c2t1d0 10.00 0.50 1 8 1.08 99.67
c3t0d0 4.00 0.50 1 8 1.08 41.66
15:03:28
15:03:29 c2t1d0 16.16 0.50 1 8 1.06 164.48
c3t0d0 4.04 0.50 1 8 1.07 43.70
15:03:30
15:03:31 c2t1d0 24.00 0.50 5 48 1.00 185.45
c3t0d0 6.00 0.50 5 48 1.02 54.20
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2006 08:59 PM
09-13-2006 08:59 PM
Re: Why one mirror disk is much busier than another one?
2 questions:
1) is there SWAP-space on c2t1d0 , which is used extensively?
2) Are c2t1d0 and c3t1d0 of different age which may result in different speed or even c2t1d0 may have some defects, which require several reads or writes on some pionts. Does 'dd if=/dev/rdsk/c2t1d0 of=/dev/null bs=1024k' work corectly?
Bye
Ralf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2006 11:08 PM
09-13-2006 11:08 PM
Re: Why one mirror disk is much busier than another one?
Other thing that you might want to thing about is the in lvm we mirror logical volumes not hard disks, maybe you also got some extra extra vg's on the other drive that might mike the drive works more than the other.
Regards,
Jaime.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2006 12:45 AM
09-14-2006 12:45 AM
Solutionin parallel with the above...
1 - even if everything is mirrored exactly on each disk, and the disks are exactly the same. When mirrored disk pair are not too busy (say < 60% util). Then generally the primary disks services ALL reads and writes, the mirror ONLY does the writes. As the system gets busier you will see the mirror disk getting a fairer share of the load.
2 - You have not fully mirrored all LVs on the primary disk
3 - All LVs are mirrored, but are mirrored in a different order.
4 - The disks are not of theb same specification
5 - One disks is failing.
From my point of view I think your disk are in trouble as the service times are enourmous (99-248ms for c2t1d0 & 10-54ms for c3t0d0).
Check your syslog.log
Regards
Tim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2006 01:13 AM
09-14-2006 01:13 AM
Re: Why one mirror disk is much busier than another one?
if you have LVM, please check vgdisplay -v
Bye
Ralf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2006 01:32 AM
09-14-2006 01:32 AM
Re: Why one mirror disk is much busier than another one?
#!/bin/sh
echo "" > /tmp/vg00_stales
echo "To merge, run: \n
vgsync /dev/vg00 to merge the whole volume group (vg)
or
lvsync /dev/vg00/lvolx (where 'x' is the logical volume number) \n
These CAN be run while the system is up and running. \n
If you run either of the above commands, then manually run '/ones/check_vg00_sync'
and check to see if there are still any stale extents, and if they persist, place
a hardware service call to HP immediately and advise then that we have a root disk
going bad." > /tmp/vg00_stales
echo "" >> /tmp/vg00_stales
echo "If properly synched, there should be nothing
below this line and NO ACTION is required:
-----------------------------------------" >> /tmp/vg00_stales
echo "" >> /tmp/vg00_stales
lvdisplay -v /dev/vg00/lvol1 | grep stale >> /tmp/vg00_stales
lvdisplay -v /dev/vg00/lvol2 | grep stale >> /tmp/vg00_stales
lvdisplay -v /dev/vg00/lvol3 | grep stale >> /tmp/vg00_stales
lvdisplay -v /dev/vg00/lvol4 | grep stale >> /tmp/vg00_stales
lvdisplay -v /dev/vg00/lvol5 | grep stale >> /tmp/vg00_stales
lvdisplay -v /dev/vg00/lvol6 | grep stale >> /tmp/vg00_stales
lvdisplay -v /dev/vg00/lvol7 | grep stale >> /tmp/vg00_stales
lvdisplay -v /dev/vg00/lvol8 | grep stale >> /tmp/vg00_stales
cat /tmp/vg00_stales | mailx -s "Checking merge status of root drives (vg00)" root@yourdomain.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2006 01:36 AM
09-14-2006 01:36 AM
Re: Why one mirror disk is much busier than another one?
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2006 02:31 AM
09-14-2006 02:31 AM
Re: Why one mirror disk is much busier than another one?
** YOUR ROOT DISK IS FAULTY AND COULD FAIL SOON **
Service times of 200ms should not exist on a good disk.
Tim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2006 04:34 PM
09-14-2006 04:34 PM