Open pchaoda opened 2 years ago
#ifdef _WIN32
ARROW_ASSIGN_OR_RAISE(search_prefixes, MakeFilenameVector({""}));
ARROW_ASSIGN_OR_RAISE(search_suffixes,
MakeFilenameVector({"/jre/bin/server", "/bin/server"}));
file_name = "jvm.dll";
in /jre/bin/server
directory exist jvm.dll
OSError: Unable to load libjvm: �Ҳ���ָ����ģ�顣
and I can not tell what is the code after OSError: Unable to load libjvm:
Sorry for the delay. I've filed https://issues.apache.org/jira/browse/ARROW-16617 for the unreadable error message.
Hi all, I am using pyarrow==7.0.0 to connect hdfs. It run well with linux,but unfortunately get error in windows. I have set
JAVA_HOME
,HADOOPHOME
,ARROW_LIBHDFS_DIR
JAVA_HOME=C:\Users\think\Desktop\python-SDK-green\jdk18 HADOOP_HOME=C:\Users\think\Downloads\hadoop-2.10.1.tar\hadoop-2.10.1\hadoop-2.10.1 ARROW_LIBHDFS_DIR=C:\Users\think\Desktop\python-SDK-green\hadoop_client\lib\native;C:\Users\think\Desktop\python-SDK-green\jdk18\jre\bin\server; when I am using pyarrow.hdfs.connect(), I am getting the error:and by the way, before I got this error,hdfs.py was modified to avoid another problem by add shell=True
Thank you !!!