Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1787#discussion_r160845775
--- Diff:
integration/spark-common/src/main/scala/org/apache/spark/util/FileUtils.scala
---
@@ -73,7 +73,8 @@ object FileUtils {
val stringBuild = new StringBuilder()
val filePaths = inputPath.split(",")
for (i <- 0 until filePaths.size) {
- val fileType = FileFactory.getFileType(filePaths(i))
+ val filePath = CarbonUtil.checkAndAppendHDFSUrl(filePaths(i))
--- End diff --
This is only for HDFS, right? How about other storage system support like
S3?
@SangeetaGulia Can you have a look at this, I think this may impact #1584
that you are working on
---