- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- RAC used filesystem vxfs
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
08-12-2004 03:17 PM
08-12-2004 03:17 PM
RAC used filesystem vxfs
archivelog must used filesystem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2004 04:04 PM
08-12-2004 04:04 PM
Re: RAC used filesystem vxfs
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2004 04:41 PM
08-12-2004 04:41 PM
Re: RAC used filesystem vxfs
Chapter 6 in the "Oracle9 i Real Application Clusters: Administration" manual has several pages dedicated to explaining this.
Check out: RMAN Archiving Configuration Schemes
Notably: Non-CFS Local Archiving Scheme
Indeed RAC requires a (shared) RAW device (or a Cluster File System (Which hp-ux native currently does not offer). In RAW device setup the devices are pretty much fixed in number and size.
Now consider archive logs. They are ever increasing in numbers, and can easily be of varying size (alter system switch logfile). This does not jive with RAW. Thus a filesystem MUST be used.
For instance crash recovery, just the REDO files are needed and those are (required to be) on shared storage. No problemo.
For media recovery, just one node is performing this, and all the archives must be applied, but you have time to make them available to the recovering node. Pick your poisin: Cluster File System (best, but hard to get for hpux), NFS mounts (not bad, over GB local net), ftp (yuck), carrier pigeon, whatever... Just make the files available and off you go.
hth,
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2004 05:36 PM
08-12-2004 05:36 PM
Re: RAC used filesystem vxfs
Oracle support both Vxfs and raw file systems. archive log can be on any of these 2.
In my databases it will be always on vxfs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2004 06:34 PM
08-12-2004 06:34 PM
Re: RAC used filesystem vxfs
Sep, Oracle RAC puts a twist on things.
Ravi, Archive logs must be on filesystems. I realy don't think it makes sense to even consider raw for those. How would Oracle know how much data is valid in there?
For example:
http://metalink.oracle.com/metalink/plsql/ml2_documents.showFrameDocument?p_database_id=NOT&p_id=37914.1
"Raw Devices and Oracle - 20 Common Questions and Answers"
14. Can I use raw partitions for archive logs? No. Archive logs must be stored on a partition with a UNIX filesystem.
With respect RAC to I saw some oracle notes ('ask tom' ?) recommending a central nfs server. The doc set suggests cross mounted nfs mount points (I dislike those, notably since it does not protect you against node failure without subsequent archive log shipping).
Cheers,
Hein