I am trying to access remote file system from my windows machine
My code is very simple:
Configuration conf = new Configuration();
conf.set("fs.defaultFS","hdfs://remoteHostName.com:8020/");
FileSystem fs = FieSystem.get(conf);
System.out.println("Hi");
Warn:
unable to load native hadoop library for your platform using builtin
java classes where applicable
I am not able to understand the reason. Any suggestions?