简体   繁体   中英

can't read csv file on hdfs - Hadoop

I'm trying to read a csv file but i get : No such file or directory.

the file is on tmp folder.

This is the commands:

1

Your file is not at hdfs:///user/hdfs/titles.csv , and this is what the error is saying.

You are only showing ls , not hdfs dfs -ls , so you should be using just cat titles.csv

If you want to read a file from HDFS, you need to hdfs dfs -put titles.csv /user/hdfs/ first. (And create the user directory using hdfs dfs -mkdir -p /user/hdfs if it doesn't already exist)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM