If I ssh into the sandbox (ssh hue@127.0.0.1 -p 2222) and issue the following command, it displays the file content.
“hadoop fs -cat hdfs://sandbox.hortonworks.com:8020/user/hue/Batting.csv”
However, the Pig tutorial fails to read the same file. Why?
I received this error – Failed to read data from “hdfs://sandbox.hortonworks.com:8020/user/hue/Batting.csv”. I believe it is produced from the following line in the Pig script.
“batting = load ‘Batting.csv’ using PigStorage(‘,’);”
Any information will be greatly appreciated.