![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| script to monitor process running on server and posting a mail if any process is dead | pradeepmacha | Shell Programming and Scripting | 13 | 03-06-2009 07:33 AM |
| Script - How to automatically start another process when the previous process ends? | luna_soleil | Shell Programming and Scripting | 10 | 02-18-2009 12:26 PM |
| What process is writing to disk? | otheus | UNIX for Advanced & Expert Users | 26 | 10-30-2008 05:57 AM |
| Killing of a process and send a mail if the process doesnot come up within 2 minutes | Prince89 | Shell Programming and Scripting | 1 | 02-15-2008 07:10 PM |
| Which Process is writing this Log file!! | Mohammed | Shell Programming and Scripting | 2 | 11-06-2006 08:08 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Which process is doing all the writing
Hi
We are running an IBM P570 with AIX and Unidata. The disk monitor in nmon is showing that one of our logical volumes is hitting 100% most of the time, and that 98% of it is write. I am trying to identify the top processes in terms of disk IO, obviously particularly write so that we can get the developers to look at the code. Can anybody help me? Thanks |
|
||||
|
Quote:
Thanks - Done this and the swap space in hdisk0... The hdisk2 volume contains our unidata database files. |
|
|||||
|
I assume that is where journaling is done - I don't know much about unidata but as far as I understand this is a bit like the redo-logs. If you have a bad distribution of your filesystems, this can easily produce a hot disk. filemon and fileplace commands could give you more information about what is on the disk - and if you have nmon on your box, you can sort by IO or you can use Code:
ps vx | head -1; ps vx | grep -v PID | sort -rn +4 | head -10 to find your top IO consumer processes. Hope that helps kind regards zxmaus |
![]() |
| Bookmarks |
| Tags |
| aix, disk, io, process, unidata |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|