- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Does OnLine JFS help?
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
11-05-2001 06:59 AM
11-05-2001 06:59 AM
Here is an overview of situation:
We have L class HP-UX 11 with JFS filesystems, whose reside on an EMC storage. There is running only an Oracle Data warehouse. We have the problem with reading performance. Sometime is there reading throughput from the EMC 80MB/s, but mostly only around 20MB/s.
I investigated, that when I achieved big performances was wait state less then 10% (I observed it in Glance and it means that heavily reading processes are blocked on the fs cache). Usually is wait state of those processes between 50-70% (I know it is too much, but I am not able to decrease it).
Because I have no OnLine JFS than I am not able to switch off OS filesystem caching by mincache VXFS option. Actually has the fs cache size 80 MB on the system (dbc_max_pct=2, db_min_pct=2, nbuf=0, bufpages=0, phys. memory is 4GB).
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2001 07:03 AM
11-05-2001 07:03 AM
Re: Does OnLine JFS help?
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2001 07:08 AM
11-05-2001 07:08 AM
SolutionIn almost all cases I have found a significant improvement using the OnlineJFS mount options -o mincache=direct,convosync=direct,nodatainlog,delaylog.
If you have a bit of spare disk you could actually test this by moving your data to raw devices. Raw and these mount option are essentially equivalent.
I would test it by choosing a few heavily used
database files and dd'ing each one to a raw device. Then rename the original database file and set up a symbolic link between the raw device and the database file. This way you can test the effects without making any Oracle changes and without having to spend any money.
The other side od this is that with these mount options, you can greatly decrease UNIX buffer cache and increase the size of the SGA buffers - where Oracle likes to do its cacheing.
From my perspective, OnlineJFS is worth the price simply because it makes an Admin's job much easier.
Regards, Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2001 07:08 AM
11-05-2001 07:08 AM
Re: Does OnLine JFS help?
if filesystem performance is a problem, you can always opt for raw device datafiles, which should give you maximum performance.
regards,
Thierry.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2001 07:12 AM
11-05-2001 07:12 AM
Re: Does OnLine JFS help?
Veritas has a product "VERITAS Database Edition??? for Oracle on HP-UX" of which they claim that it is as fast as raw devices, but still gives you "plain" filesystems (comes with a price tag however).
regards,
Thierry.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2001 07:22 AM
11-05-2001 07:22 AM
Re: Does OnLine JFS help?
If the processes are blocked
on FS cache,you can try increasing the Buffer cache size , rather than decreasing
or disabling them!!
2% is too less for a read-intensive database. I think,
that is the problem.
Increase dbc_max_pct to 10%
and min_pct to 5%. It would
give you a comfortable 400Mb of buffer cache which should
improve the performance.
I have a all-FS database
with similar configuration
running fine. I didn''t
need to use the adv vxfs options.
I would suggest you to
try this and monitor the
performance before going
on other routes.
Also, see whether the problem is with only specific
FS''s or is it consitently
across all FS's.
-raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2001 07:22 AM
11-05-2001 07:22 AM
Re: Does OnLine JFS help?
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B3929-90011/B3929-90011_top.html&con=/hpux/onlinedocs/B3929-90011/00/00/12-con.html&toc=/hpux/onlinedocs/B3929-90011/00/00/12-toc.html&searchterms=online%7cjfs%7cperformance&queryid=20011105-072454
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2001 02:06 PM
11-10-2001 02:06 PM
Re: Does OnLine JFS help?
The default block size is usually 1024, but we use 8192 since we generally have larger reads/writes. Check using fstyp -v /dev/vg??/lvol?? (It is the one marked f_frsize).