1834456 Members
2873 Online
110067 Solutions
New Discussion

RAC used filesystem vxfs

 
Martin_171
Occasional Advisor

RAC used filesystem vxfs

I want to add the archivelog vg to RAC,the document say that RAC used the raw device,but
archivelog must used filesystem
4 REPLIES 4
Steven E. Protter
Exalted Contributor

Re: RAC used filesystem vxfs

Oracle supports cooked (filesystem) or raw filesystems. Thats pretty universal. You need not be concerned so long as there is enough disk space in the target filesystem.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Hein van den Heuvel
Honored Contributor

Re: RAC used filesystem vxfs

Yes.

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.

Ravi_8
Honored Contributor

Re: RAC used filesystem vxfs

Hi,

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
never give up
Hein van den Heuvel
Honored Contributor

Re: RAC used filesystem vxfs

I beg to differ.

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