This is an automated email from the ASF dual-hosted git repository.
dionusos pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/oozie.git
The following commit(s) were added to refs/heads/master by this push:
new b4505c361 OOZIE-3680 Add default value to custom configuration of all
the supported file systems in Oozie (jmakai via dionusos)
b4505c361 is described below
commit b4505c3619f6bb996ce3c39bfa58b8ce897e706c
Author: Denes Bodo <[email protected]>
AuthorDate: Fri Dec 2 10:21:15 2022 +0100
OOZIE-3680 Add default value to custom configuration of all the supported
file systems in Oozie (jmakai via dionusos)
---
core/src/main/resources/oozie-default.xml | 49 ++++++++++++++++++++++++++++++-
release-log.txt | 1 +
2 files changed, 49 insertions(+), 1 deletion(-)
diff --git a/core/src/main/resources/oozie-default.xml
b/core/src/main/resources/oozie-default.xml
index 01c1095fe..38618ea41 100644
--- a/core/src/main/resources/oozie-default.xml
+++ b/core/src/main/resources/oozie-default.xml
@@ -2285,6 +2285,35 @@ will be the requeue interval for the actions which are
waiting for a long time w
</description>
</property>
+ <!-- Have default empty value for every file system enumerated in
oozie.service.HadoopAccessorService.supported.filesystems -->
+
+ <property>
+ <name>oozie.service.HadoopAccessorService.fs.hdfs</name>
+ <value> </value>
+ <description>
+ You can configure custom hdfs file system properties globally.
+ Value shall be a comma separated list of key=value pairs.
+ </description>
+ </property>
+
+ <property>
+ <name>oozie.service.HadoopAccessorService.fs.hftp</name>
+ <value> </value>
+ <description>
+ You can configure custom hftp file system properties globally.
+ Value shall be a comma separated list of key=value pairs.
+ </description>
+ </property>
+
+ <property>
+ <name>oozie.service.HadoopAccessorService.fs.webhdfs</name>
+ <value> </value>
+ <description>
+ You can configure custom webhdfs file system properties globally.
+ Value shall be a comma separated list of key=value pairs.
+ </description>
+ </property>
+
<property>
<name>oozie.service.HadoopAccessorService.fs.s3a</name>
<value> </value>
@@ -2297,6 +2326,24 @@ will be the requeue interval for the actions which are
waiting for a long time w
</description>
</property>
+ <property>
+ <name>oozie.service.HadoopAccessorService.fs.abfs</name>
+ <value> </value>
+ <description>
+ You can configure custom abfs file system properties globally.
+ Value shall be a comma separated list of key=value pairs.
+ </description>
+ </property>
+
+ <property>
+ <name>oozie.service.HadoopAccessorService.fs.abfss</name>
+ <value> </value>
+ <description>
+ You can configure custom abfss file system properties globally.
+ Value shall be a comma separated list of key=value pairs.
+ </description>
+ </property>
+
<!-- Credentials -->
<property>
<name>oozie.credentials.credentialclasses</name>
@@ -2544,7 +2591,7 @@ will be the requeue interval for the actions which are
waiting for a long time w
<property>
<name>oozie.service.HadoopAccessorService.supported.filesystems</name>
- <value>hdfs,hftp,webhdfs</value>
+ <value>hdfs,hftp,webhdfs,s3a,abfs,abfss</value>
<description>
Enlist the different filesystems supported for federation. If
wildcard "*" is specified,
then ALL file schemes will be allowed.
diff --git a/release-log.txt b/release-log.txt
index 372837af3..a4d6d39b9 100644
--- a/release-log.txt
+++ b/release-log.txt
@@ -1,5 +1,6 @@
-- Oozie 5.3.0 release (trunk - unreleased)
+OOZIE-3680 Add default value to custom configuration of all the supported file
systems in Oozie (jmakai via dionusos)
OOZIE-3606 Extend file system EL functions to use custom file system
properties (jmakai via dionusos)
OOZIE-3677 Oozie should accept a keyStoreType and trustStoreType property in
oozie-site.xml (jmakai via dionusos)
OOZIE-3678 Reduce the number of NameNode access when starting the Yarn job
(jmakai via dionusos)