Github user shivaram commented on a diff in the pull request:
https://github.com/apache/spark/pull/14960#discussion_r77751910
--- Diff: core/src/main/scala/org/apache/spark/SparkContext.scala ---
@@ -992,7 +992,7 @@ class SparkContext(config: SparkConf) extends Logging
with ExecutorAllocationCli
// This is a hack to enforce loading hdfs-site.xml.
// See SPARK-11227 for details.
- FileSystem.get(new URI(path), hadoopConfiguration)
+ FileSystem.get(new Path(path).toUri, hadoopConfiguration)
--- End diff --
Yeah I'm not sure what part of the URI we are using here. If its just the
scheme, authority then I think its fine to use that from the first path. FWIW
there is a method in Hadoop to parse comma separated path strings but its
private [1].
IMHO this problem existed even before this PR so I'm fine not fixing it
here if thats okay with @sarutak
[1]
https://hadoop.apache.org/docs/r2.7.1/api/src-html/org/apache/hadoop/mapred/FileInputFormat.html#line.467
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]