- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- 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
05-25-2003 11:46 PM
05-25-2003 11:46 PM
could be that the performance are lower then situation that the process will write the logs in the same file system ?
Does it care ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-25-2003 11:52 PM
05-25-2003 11:52 PM
Re: performance
It will depend entirely upon whether both of the filesystems are on the same disk, how big the writes to disk are, what type of disks you have .... generally speaking if they are on a separate physical disk, the performance should be better. You can check easily enough using:
e.g.
# lvdisplay -v /dev/myvg/mylvol (for each one, this will display the same or different disks.
More information would be needed to assist more, type of process, database etc.
Regards
Michael
"When I have trouble spelling, it's called fat finger syndrome"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2003 12:01 AM
05-26-2003 12:01 AM
Re: performance
Do your filesystems reside on the same disk ?
Check with
lvdisplay -v /dev/vg#/lvol# | more
Have a look at the I/O on the disks with
sar -d 2 10
This will give you
08:59:05 device %busy avque r+w/s blks/s avwait avserv
08:59:07 c1t2d0 13.86 0.50 18 170 5.13 11.23
Have a look at the man pages for sar for a further description
Also have a think abouth wether your disks are internal or external to the server. Are any of them fibre connected. Are your filesystems striped across disks. There are numerous things to think about
HTH
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2003 12:43 AM
05-26-2003 12:43 AM
Re: performance
Sunil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2003 12:50 AM
05-26-2003 12:50 AM
SolutionBut to categorize the reasons why the logs are written to seperate file system
1.Normally in unix /var takes care of all the auditing and accounting.
All the logs are kept here so that the administration becomes easier so that they are not distributed on all file systems.
2.It could also be due to performance like take an example of Oracle database.
You have the redo log files which can cause more I/O and performance bottleneck.
Thus by distributing files across different file systems the I/O is reduced and thus improvement in performance.
Revert
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2003 12:52 AM
05-26-2003 12:52 AM
Re: performance
It should not decrase performance, if it increases performance depends on how I/O intensive the application is but an general rule with I/O intensive applications is (if possible) to distribute the I/O across several disks.