-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Will Cloudpathlib support HDFS path? #394
Comments
Hi @daviddwlee84, we're open to supporting HDFS as a provider. None of the core developers use it regularly, so it would be great to have it from a contributor. A few questions:
Otherwise, implementation will be creating the |
Thanks @pjbull, I see. For the first question, as far as I know, Here is an example of how For the second question, I haven't used Hadoop within the container before. For single-node deployment, this requires a matched Java & Hadoop version. With minimal configuration on <configuration>
<property>
<name>dfs.replication</name>
<value>1</value>
</property>
<property>
<name>dfs.namenode.name.dir</name>
<value>file:///nvme/HDFS/HadoopName</value>
</property>
<property>
<name>dfs.datanode.data.dir</name>
<value>file:///nvme/HDFS/HadoopData</value>
</property>
</configuration> Then can start with |
I found that Cloudpathlib only supports prefixes with
['az://', 's3://', 'gs://']
currently.Is there any plan to support HDFS path
hdfs://
in the future?The text was updated successfully, but these errors were encountered: