Author: rkanter
Date: Mon Feb 4 18:03:04 2013
New Revision: 1442255
URL: http://svn.apache.org/viewvc?rev=1442255&view=rev
Log:
OOZIE-1129 Add documentation for configurable filesystem support (rkanter)
Modified:
oozie/branches/branch-3.3/docs/src/site/twiki/AG_Install.twiki
oozie/branches/branch-3.3/release-log.txt
Modified: oozie/branches/branch-3.3/docs/src/site/twiki/AG_Install.twiki
URL:
http://svn.apache.org/viewvc/oozie/branches/branch-3.3/docs/src/site/twiki/AG_Install.twiki?rev=1442255&r1=1442254&r2=1442255&view=diff
==============================================================================
--- oozie/branches/branch-3.3/docs/src/site/twiki/AG_Install.twiki (original)
+++ oozie/branches/branch-3.3/docs/src/site/twiki/AG_Install.twiki Mon Feb 4
18:03:04 2013
@@ -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/branches/branch-3.3/release-log.txt
URL:
http://svn.apache.org/viewvc/oozie/branches/branch-3.3/release-log.txt?rev=1442255&r1=1442254&r2=1442255&view=diff
==============================================================================
--- oozie/branches/branch-3.3/release-log.txt (original)
+++ oozie/branches/branch-3.3/release-log.txt Mon Feb 4 18:03:04 2013
@@ -1,5 +1,6 @@
-- Oozie 3.3.2 (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)