This is an automated email from the ASF dual-hosted git repository.

stigahuang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git

commit e8ec384824ccf4d9cdc535c262d97b9ac05ba230
Author: Michael Smith <[email protected]>
AuthorDate: Thu Sep 29 14:35:40 2022 -0700

    IMPALA-11562: (Addendum) Update core-site to include ofs impl
    
    Drops setting `fs.AbstractFileSystem.o3fs.impl` as we no longer support
    o3fs as a default filesystem.
    
    Prior to this change, ofs is added via `fs.AbstractFileSystem.ofs.impl`
    in Hadoop's core-default.xml. The documented way to add ofs is via
    `fs.ofs.impl`, so we explicitly set the value for cleanliness.
    
    Change-Id: I41cbc875bef29e730ee2afcbda42f07017119593
    Reviewed-on: http://gerrit.cloudera.org:8080/19081
    Reviewed-by: Joe McDonnell <[email protected]>
    Tested-by: Impala Public Jenkins <[email protected]>
---
 testdata/cluster/node_templates/common/etc/hadoop/conf/core-site.xml.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/testdata/cluster/node_templates/common/etc/hadoop/conf/core-site.xml.py 
b/testdata/cluster/node_templates/common/etc/hadoop/conf/core-site.xml.py
index 573800232..1614faed1 100644
--- a/testdata/cluster/node_templates/common/etc/hadoop/conf/core-site.xml.py
+++ b/testdata/cluster/node_templates/common/etc/hadoop/conf/core-site.xml.py
@@ -125,7 +125,7 @@ if target_filesystem == 's3':
     })
 
 if target_filesystem == 'ozone':
-  CONFIG.update({'fs.AbstractFileSystem.o3fs.impl': 
'org.apache.hadoop.fs.ozone.OzFs'})
+  CONFIG.update({'fs.ofs.impl': 
'org.apache.hadoop.fs.ozone.RootedOzoneFileSystem'})
 
 if kerberize:
   CONFIG.update({

Reply via email to