Open wmkai opened 1 month ago
The HadoopFileSystem
finds and loads a third-party library on your system to actually access the HDFS filesystem. Depending on your system, the library is called hdfs.dll
(Windows), libhdfs.so
(Linux) or libhdfs.dylib
(macOS).
Can you find where that library is located, how it was installed and what its version is?
Also, is :8020
part of your HDFS URL?
Describe the usage question you have. Please include as many useful details as possible.
When I use
hdfs = fs.HadoopFileSystem(host="xxx")
and thenit prints
:8020/home/xxx/
But I use another machine to run the same code, it prints
/home/xxx/pretrained_models
without:8020
.I check the version of python and pyarrow between these two machines, and found they are the same. Why does it return the port number? How do I get it to not return the port number?
Component(s)
Python