Closed jsgoller1 closed 5 years ago
Looks like a good feature. Please see if we can also cover some of it in a unit-test.
Locally, this PR is failing these tests:
test_torch_tensorable_types[int8]
TestSparkUtils.test_reading_subset_of_columns
TestSparkUtils.test_simple_read_rdd
I have confirmed that these tests are currently failing on master as well.
Do you intend to abandon this PR?
New PR that adds this functionality. #384
Problem
The
FilesystemResolver
class supports connecting to HDFS. However, there is no capability to pass a an HDFS username to the class - therefore, it is very easy to run into permissions issues on created directories; it is not clear if a user who creates a directory will be able to access it later on.Solution
Allow passing of a username parameter to
FileSystemResolver
to correct this issue.