- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- EMC, Oracle, file systems
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
03-12-2002 01:04 PM
03-12-2002 01:04 PM
We have a V2250 w/ 16x 240MHz CPU and 16GB RAM.
It has 12 Oracle databases. The largest one is approx. 1.5TB. There is approx. 2TB of EMC disk space connected with 2 fibre interfaces which is balanced with EMC Powerpath software.
Typically you try to spread databases out over several disk drives. However, using EMC disks, which are logical disks, this is not an issue according to EMC because everything is in cache.
My concern is that the DBAs have mixed several of the databases together in the same file systems. When the 1.5TB database is doing loads Glance shows many disk bottle necks and some of the users of the other databases complain about response time. The CPUs are busy but they are not all 100% maxed out. Does having multiple databases on the same file system cause file system contention, assuming that the EMC disks are not a problem. (According to my EMC manager the EMC disks are showing very little I/O)
Thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2002 01:13 PM
03-12-2002 01:13 PM
Re: EMC, Oracle, file systems
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2002 01:14 PM
03-12-2002 01:14 PM
SolutionIt is very possible that this will cause disk contention (experienced it a few times myself), especially when you would have indexes and temp on the same vg, or some other mix of the heavily hit filesystems. I would sit down with your dbas and see where they have things situated. You should also, if you have it, pull up the IO stats through measureware and see what it says.
Hope this helps
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2002 01:18 PM
03-12-2002 01:18 PM
Re: EMC, Oracle, file systems
That doesn't mean you don't have a problem with disk access, though. 2 things to lok at:
1--make sure you are using the Oracle recommended, JFS mount options (Online JFS required). This will prevent "double buffering" of oracle writes in system buffer cache.
2--look at the load on the fibre/switch/SCSI going to the EMC. It is possible that you are exceeding the bandwidth for your connection.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2002 01:25 PM
03-12-2002 01:25 PM
Re: EMC, Oracle, file systems
Let me qualify this by saying that this is an educated guess because I would never consider configuring Oracle instances like this - the backup/restore problems and difficulties alone would be terrible. However, I don't think the filesystem itself is a major constraint because, in general, all the Oracle files are pre-allocated and thus very little in the way of locking has to be done to protect filesystem metadata. Also, Glance can give you misleading results when examining arrays. Remember, all it knows is that an awful lot of I/O is going through what appears to it to be a single disk or a small number of disks. It doesn't know that this single LUN is actually comprised of N physical disks.
It would help to know if you are running the convosync=direct,mincache=direct,nodatainlog,delaylog mount options. Typically, you want to use the options only for datafiles/indices and the more conventional fully buffered mount options for redo/archive logs.
There is just not enough here to determine anything yet but in every reasonably configured database the first thing I do is look at the SQL code itself. In the vast majority of cases that is where the problem lies. Since you mentioned Oracle, the other thing I always look at is the setting of timeslice. Some of the tuned parameter sets adjust it to 1 rather than 10 and that can lead to all sorts of problems.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2002 02:07 AM
03-13-2002 02:07 AM
Re: EMC, Oracle, file systems
<
Not really, because there is always a limit to Cache size and what it can do. Especially on an busy system with number of databases.
SO, generally the good practice is to lay out the Luns of a disk in such a way that two databases do not sit on the same disks! I dont think even the customers/dba would like that situation. Another thing is to make sure that that the luns of the same disk do not have busy tablespaces or indexes+datafiles sitting on the same disks. This would need planning at the emclayout/lun/vgmapping stage itself.
In some cases, there can be exceptions since it is a huge EMC frame and there are many databases.
Which is not good either. But if the VGs themselves are sitting on the same disks, then it doesn't matter, because even if they put databases on different filesystems, it would still be sitting on the same disks.
sar -d is another good measure for getting disk response time. The disk bottle necks could be due to many reasons. Reconfirm again with your EMC engineer whether he is seeing more activity on specific disk adaptors compared to the others. Normally EMC folks check the FA end (host end) and say everything is fine. Dont take that at face value. Tell them to run a detailed performance check using the EMC performance tool to make sure of the figures.
Also, make sure your PVs are really getting distributed by powerpath. (use vgdisplay -v ).
Work at the database end with the DBA to see whether they could figure out somethign at their end and tune up accordingly.
Check what sort of jobs/times the problem occurs.
Revisit your emc layout - disk/lun/vg mapping and see whether it is ok.
This should give you a fair idea on where the problem is. It can be multiple things combined making the issue.
HTH
raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2002 06:46 AM
03-13-2002 06:46 AM
Re: EMC, Oracle, file systems
Everything I read said these were the best options.
Can someone tell me what a good IO rate is. Right now there is a process using 50% CPU , Phys IO Rt 80-88, IO Byte Rt 12692, IO Wait 50%.(Glance)
I am not sure if everything is going as fast as it can or if there is really a bottle neck that can be fixed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2002 06:49 AM
03-13-2002 06:49 AM
Re: EMC, Oracle, file systems
The EMC disks are configured in as RAID S.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2002 07:00 AM
03-13-2002 07:00 AM
Re: EMC, Oracle, file systems
We had an issue very close to yours several years ago. It came down to a few indexes being in the same filesystem as data. These are the easy ones to find. What can be much more diffcult is knowing if they are on the same physical drive in the EMC frame. I.E. index file is on c2t2d2 and data file is on c4t4d4 it could very easily be on the same physical drive in the frame. One way to track this down is to use EMC control center and map things out. EMC does have a product that can do the maping for you. Show you all the hosts/filesystems for a physical drive in the frame, but of course this is not free.
Another thing to check in glance is the queue length of any drive. In glance type i then IOByDisk (f2). This will let you know if the logical drive ( physical to the OS ) has any requests queued. Glance will also tell you the % of time it has a queue length of zero.
Then of course there is a chance you will do all of this, learn and research a lot about your system and find out it is an application issue. BAD SQL'S as Clay has mentioned.
0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2002 08:34 AM
03-13-2002 08:34 AM
Re: EMC, Oracle, file systems
Comments?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2002 10:30 AM
03-13-2002 10:30 AM
Re: EMC, Oracle, file systems
The next question is when you look at your top process are they takeing a high % of system, user or idle time?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2002 10:49 AM
03-13-2002 10:49 AM
Re: EMC, Oracle, file systems
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2005 03:25 AM
10-20-2005 03:25 AM
Re: EMC, Oracle, file systems
Jim