- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Cach Size
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
Discussions
Discussions
Discussions
Forums
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
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
тАО12-05-2001 04:57 AM
тАО12-05-2001 04:57 AM
I would like to ask:
I have a V Class System 8 GB Memory 8 Processors. I run Oracle 8.1.7 (8i) with SGA 1GB. I have FC10 for storage. As I know these hard disks do not have any cache.
Would it be good ides to use 1GB of my memory for cahcing between SGA and FC10?
How can I check the size of the cache I have now, and how can I change the cache size.
Thanks a lot
George Nikoloudis
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-05-2001 05:11 AM
тАО12-05-2001 05:11 AM
SolutionTo find those values you can do a kmtune and look for 3 values: dbc_max_pct,dbc_min_pct, and bufpages. If bufpages is non-zero, multiply that value by 4K and that is your UNIX buffer cache. If bufpages = 0, the buffer cache varies between dbc_min_pct and dbc_max_pct as percentages of your total memory. In most case, 1GB is way too much buffer cache and will actually degrade performance. I would set bufpages to about 80000 (320 MB and that is generous) and measure. Bear in mind, if you are using raw/io buffer cache does not matter or if your are using the OnlineJFS mount options convosync=direct,mincache=direct which also bypass the buffers. I do suggest that you do not use dynamic buffer cache and set bufpages to some non-zero value.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-05-2001 05:26 AM
тАО12-05-2001 05:26 AM
Re: Cach Size
What do you thing?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-05-2001 05:47 AM
тАО12-05-2001 05:47 AM
Re: Cach Size
You can check your current cache size/usage by going into glance and use the "t" option .
You can check your Cache hit rate by doing
sar -b
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-05-2001 05:58 AM
тАО12-05-2001 05:58 AM
Re: Cach Size
Here is what I have found to work well and to indeed be as good as raw/io.
Datafiles/Indices convosync=direct,mincache=direct,nodatainlog,delaylog,rw
Archive/Redo Logs nodatainlog,delaylog,rw
If you don't set nodatainlog, you are limited to 1MB chunks before AND the data has to written twice. So set this option before going back to cooked i/o. On 11.11 I have found that often cooked i/o is actually better than raw for Oracle in some cases - but again the real answer is to measure for yourself. This does assume very generous buffers in the SGA where Oracle likes to do its buffering.
By the way, it is considered polite to assign point to those who try to assist you; your points assignment has been terrible.
Clay