| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
|
@windoze could you help with tagging the right reviewers ? |
Sorry, something went wrong.
|
@jaymo001 @rakeshkashyap123 could you please review ? cc @windoze |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Description
when HDFS is configured with fs.defaultsFS pointing to blob storage, we are not able to give local path as source location in feature definition config. this is because hdfsutils.scala uses FileSystem.get(conf) API. instead using FileSystem.get(URI, conf) solves the problem where one can give source location as file:///xyz even though defaultFS points to blob.
Testing
manually tested using notebook session configured with fs.defaultFS= wasbs://xyz
FileSystem.get(conf).exists("file:///path") returns false
FileSystem.get(URI, conf).exists("file:///path") returns true
Does this PR introduce any user-facing changes?