- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- performance of block device - raw device
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
01-18-2005 11:33 PM
01-18-2005 11:33 PM
i want to know which will have good performance Raw / block device and where can i find this documents
raw device are used for swap and oracle but how this imporves the performance
Thanks
Thiyagarajan
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-18-2005 11:47 PM
01-18-2005 11:47 PM
Re: performance of block device - raw device
if you are having a performance problem with oracle and raw devices make sure your kernel parameter max_async_ports is set as high as possible.
Oracle will use async to write to raw until the limit is reached, then switch to sync writes.
I prefer block devices as I am more used to working with them and I can control everthing from sam ( I know I'm lazy....)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2005 12:08 AM
01-19-2005 12:08 AM
Re: performance of block device - raw device
Thanks for your response
i want to know the generic information of raw and block device
mean while i will go through the doc for kernal parameters
Thanks
Thiyagarajan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2005 12:29 AM
01-19-2005 12:29 AM
Solutionhave not found a proper document on this, but a simple explanation:
"Raw" devices are Character devices.
"Cooked" devices are block devices.
The difference is that "Cooked" devices are accessed thru the OS with
standard "read" and "write" commands. Since they are accessed through the
operating system, the OS will handle the underlying raw device's structure
and allow you to create files and directories on the raw device. Because
they are easier to use, there is a (slight) performance tradeoff.
"Raw" devices can be read from and written to as well, but they are single
"files". You cannot create files and directories within a raw device
(unless you write complex software to do so, and if you were to do that you
might as well use a cooked device).
The only time that there is a noticeable difference is with large databases.
Sybase, Oracle, Ingres, etc allow the use of Raw devices because they can
squeeze out a 10-15% performance kick on heavily read/write intensive
operations. The tradeoff is that Raw devices are much harder to manage from
the OS, because from the OS's perspective they are simply "unused" disk.
Put another way, raw/cooked is the oldest tradeoff in the computing world:
Speed vs. Ease of use
Hope this answers your question ;-)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2005 01:16 AM
01-19-2005 01:16 AM
Re: performance of block device - raw device
But I think Clay said it well at this thread, and maybe you'll appreciate it too:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=62288
Rgrds,
Rita
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2005 01:57 AM
01-19-2005 01:57 AM
Re: performance of block device - raw device
Thanks for your reply
i will be more equipped if i have a document can anyone help me for finding docs of concepts of HP - ux related