Author: rkanter
Date: Wed Dec 12 01:45:36 2012
New Revision: 1420506
URL: http://svn.apache.org/viewvc?rev=1420506&view=rev
Log:
OOZIE-1129 Add documentation for configurable filesystem support (rkanter)
Modified:
oozie/trunk/docs/src/site/twiki/AG_Install.twiki
oozie/trunk/release-log.txt
Modified: oozie/trunk/docs/src/site/twiki/AG_Install.twiki
URL:
http://svn.apache.org/viewvc/oozie/trunk/docs/src/site/twiki/AG_Install.twiki?rev=1420506&r1=1420505&r2=1420506&view=diff
==============================================================================
--- oozie/trunk/docs/src/site/twiki/AG_Install.twiki (original)
+++ oozie/trunk/docs/src/site/twiki/AG_Install.twiki Wed Dec 12 01:45:36 2012
@@ -374,6 +374,20 @@ shown):
oozie.system.id=oozie-${user.name}
</verbatim>
+---+++ Filesystem Configuration
+
+Oozie lets you to configure the allowed Filesystems by using the following
configuration property in oozie-site.xml:
+<verbatim>
+ <property>
+ <name>oozie.service.HadoopAccessorService.supported.filesystems</name>
+ <value>hdfs</value>
+ </property>
+</verbatim>
+
+The above value, =hdfs=, which is the default, means that Oozie will only
allow HDFS filesystems to be used. Examples of other
+filesystems that Oozie is compatible with are: hdfs, hftp, webhdfs, and
viewfs. Multiple filesystems can be specified as
+comma-separated values. Putting a * will allow any filesystem type,
effectively disabling this check.
+
---+++ Fine Tuning an Oozie Server
Refer to the [[./oozie-default.xml][oozie-default.xml]] for details.
Modified: oozie/trunk/release-log.txt
URL:
http://svn.apache.org/viewvc/oozie/trunk/release-log.txt?rev=1420506&r1=1420505&r2=1420506&view=diff
==============================================================================
--- oozie/trunk/release-log.txt (original)
+++ oozie/trunk/release-log.txt Wed Dec 12 01:45:36 2012
@@ -1,5 +1,6 @@
-- Oozie 3.4.0 release (trunk - unreleased)
+OOZIE-1129 Add documentation for configurable filesystem support (rkanter)
OOZIE-1084 When use IBM jdk , UT TestCallbackServlet and TestHadoopELFunctions
fail (zhujinwei via rkanter)
OOZIE-1127 Missed one services.destroy() in OOZIE-1114 (rkanter)
OOZIE-1071 latest EL function is based on action materialization time (rohini
via virag)