Github user xubo245 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2161#discussion_r241264360
--- Diff:
core/src/main/java/org/apache/carbondata/core/datastore/impl/FileFactory.java
---
@@ -470,10 +475,11 @@ public static void
createDirectoryAndSetPermission(String directoryPath, FsPermi
switch (fileType) {
case S3:
case HDFS:
+ case ALLUXIO:
case VIEWFS:
try {
Path path = new Path(directoryPath);
- FileSystem fs = path.getFileSystem(getConfiguration());
+ FileSystem fs = path.getFileSystem(FileFactory.configuration);
--- End diff --
Why do you need change this?
---