You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oozie.apache.org by di...@apache.org on 2022/12/06 10:39:05 UTC

[oozie] branch master updated: Revert "OOZIE-3680 Add default value to custom configuration of all the supported file systems in Oozie (jmakai via dionusos)" The change was mistakenly merged with unit test failures.

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 567b82f66 Revert "OOZIE-3680 Add default value to custom configuration of all the supported file systems in Oozie (jmakai via dionusos)" The change was mistakenly merged with unit test failures.
567b82f66 is described below

commit 567b82f663598074f2297c070a0f80aac75253af
Author: Denes Bodo <di...@apache.org>
AuthorDate: Tue Dec 6 11:37:12 2022 +0100

    Revert "OOZIE-3680 Add default value to custom configuration of all the supported file systems in Oozie (jmakai via dionusos)"
    The change was mistakenly merged with unit test failures.
    
    This reverts commit b4505c3619f6bb996ce3c39bfa58b8ce897e706c.
---
 core/src/main/resources/oozie-default.xml | 49 +------------------------------
 release-log.txt                           |  1 -
 2 files changed, 1 insertion(+), 49 deletions(-)

diff --git a/core/src/main/resources/oozie-default.xml b/core/src/main/resources/oozie-default.xml
index 38618ea41..01c1095fe 100644
--- a/core/src/main/resources/oozie-default.xml
+++ b/core/src/main/resources/oozie-default.xml
@@ -2285,35 +2285,6 @@ 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>
@@ -2326,24 +2297,6 @@ 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>
@@ -2591,7 +2544,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,s3a,abfs,abfss</value>
+        <value>hdfs,hftp,webhdfs</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 a4d6d39b9..372837af3 100644
--- a/release-log.txt
+++ b/release-log.txt
@@ -1,6 +1,5 @@
 -- 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)