- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: How to improve Disk I/O ?
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
10-27-2002 07:07 PM
10-27-2002 07:07 PM
18G HD x 2 (Mirror)
DB size : 1.5G
========================
My DB size is increasing quickly. And the system speed become very slow. I use:
#sar -u 10 10
I found the %wio is 95% or more. Of course this is disk bottleneck.
Adding more disks is impossible because of the budget. And, for data safety, the Mirror can't be broken.
How can I improve my disk's performance though tuning OS's or File System's parameters? or How to do?
Any suggestion is appreciated!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2002 07:10 PM
10-27-2002 07:10 PM
SolutionYou will get a huge improvement in speed by tuning the database program. The goal is to reduce the number of I/O's to disk and this can only be done with significant changes to the database parameters. Note: you may need a *LOT* more memory to take advantage of database tuning.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2002 07:19 PM
10-27-2002 07:19 PM
Re: How to improve Disk I/O ?
e.g.
/dev/apps/myfs /myfs vxfs rw,suid,delaylog,datainlog,mincache=tmpcache 0 2
Now, looking at your hardware and what your actually doing, you may not get any improvement at all. You would need to really spend some money on a disk array that can handle the volume. The reason is that most of the performance gain is in the cache that the disk arrays use and not utilising your actual server hardware.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2002 07:23 PM
10-27-2002 07:23 PM
Re: How to improve Disk I/O ?
Does the OS reside on this two disks also, i.e. all the OS, application and DB are running on these two disks only ? If so, I am afraid there is no other alternative to improve the IO performance unless you use a faster disk or buy more disks to share the IO !
Does your system got any other disk array such as SC10, AutoRaid or do you got a SAN over your network ?
Regards,
Patrick
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2002 07:25 PM
10-27-2002 07:25 PM
Re: How to improve Disk I/O ?
/dev/apps/myfs /myfs vxfs rw,suid,nolog 0 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2002 07:25 PM
10-27-2002 07:25 PM
Re: How to improve Disk I/O ?
You said that tuning DB's program , I agree too. But, a very simple program such as delete each records of a table over 60,0000:
for each tbl_name:
delete tbl_name.
end.
I found when running this program, the %wio is over 95% too. How can I tuning this program? (Obvious Impossible.)
Would you give any other tuning way to improve this?
Thanks in adv.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2002 07:33 PM
10-27-2002 07:33 PM
Re: How to improve Disk I/O ?
Actually you've already answered your own question by stating that there isn't money in your budget to replace or improve your disk sub-system. If the Company doesn't realize that data is money then it's time someone told them what's up, and if they wish to remain in business they have to pony up to the bar and pay their tab.
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2002 04:17 AM
10-29-2002 04:17 AM
Re: How to improve Disk I/O ?
2) You say that one simple program is to empty a table.
Are you using Oracle ?
If yes I suggest you use the truncate table command, this is immediate
my 2 cents
Jean-Luc