- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: need suggestion on likely IO intensive files i...
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-06-2004 05:40 AM
08-06-2004 05:40 AM
need suggestion on likely IO intensive files in /var
We have a large oracle database server (64 way SD, 196GB RAM). During the avg daily activity, I see IO rates btw 70 and 100 for /var. Of these IO's, about 98% are writes. Besides /var/tmp, any other potential high IO write rate files in var for a very intesive oralce OLTP env.
I'm planning on adding an EMC SAN device and mounting it as /var/tmp. I suppose I could move /var to the EMC device to be sure I get all the high IO files, but I wanted to be able to boot even if the SAN device was not available...
Any thoughts/recommendations?
I could also use any white papers about SAN disk in vg00 -- I saw one link in the archives, but the doc was missing/moved.
tia,
Dan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2004 05:50 AM
08-06-2004 05:50 AM
Re: need suggestion on likely IO intensive files in /var
If oracle is producing large print files on a system with a fast CPU, I can see that as a place to look.
I've never had i/o issues with log files like /var/adm/syslog log files.
If you are producing PDF reports, it could be even more data that needs to be written. The fact that its a lot of writes says print spooling to me.
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
08-06-2004 06:27 AM
08-06-2004 06:27 AM
Re: need suggestion on likely IO intensive files in /var
Since you aren't necessarily filling /var up, it sounds like print queues, as SEP suggests, since these get flushed once the print completes. There are other things in /var that come and go, however... sockets act like this, I seem to recall, but I don't remember them taking up much space, they're more placeholders than anything else.
Anyway, try the du command for a look at what is changing in /var, maybe it will give you a leg up on this curiosity.
Lastly, don't put /var out on the SAN. All standard root VG file systems are best left on the boot disk, IMHO. You know why... you need a working system to troubleshoot a non-working SAN. Putting /var/tmp out there? I think that could work... if it proved to be the busy directory or FS, if you mount it up as its own FS.
I'm sure there are more sophisticated ways to monitor I/O to /var or any FS, but if you can see the source of your trouble from a quick and dirty du command, life is good.
Regards, --bmr
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2004 06:50 AM
08-06-2004 06:50 AM
Re: need suggestion on likely IO intensive files in /var
How about /var/spool/mqueue. Do you see lot of mail traffic in the system ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2004 06:56 AM
08-06-2004 06:56 AM
Re: need suggestion on likely IO intensive files in /var
Few things to look for,
1. entries in the /etc/syslog.conf and see if any of the common logs are set for high debugging, for eg; if lpr is set to log each debug entry for every printer, that could easily produce a lot fo logs.
2. Check the mail queues that are being updated frequently.
3. Check the cron logs.
4. Check the print spool directories and monitor the spooler activity.
5. Run a find command to look for new files being created by using the -newer option.
eg: find /var -newer 'somefile' -print
and finally, separate any application related log files that may be using the /var filesystem inadvertently by moving them into a different filesystem than relocating /var itself to the SAN.
Else you should think about relocating the entire root volumegroup to the SAN.
just my $.02,
regds,
Abdul.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2004 08:44 AM
08-06-2004 08:44 AM
Re: need suggestion on likely IO intensive files in /var
As far as I know, Oracle DBs cause high I/O rate in /var/spool/sockets directory.
I'm not sure that put /var on a SAN device is very good solution. If you have a free disk, which you can include in vg00 and move to it /var, IMHO, this is better.
HTH