hadoop - Not able to view files on HDFS -
i created files on hdfs. able execute hadoop fs -ls command view them , worked fine. later not able view them. hence tried format namenode , add files in , says files exits. idea why happening? how can delete files if not able view them ?
i able view files on browser.
you appear logged in user yeshwanthvenkatesh
. when run hadoop fs -ls
no path, hadoop shows contents of home directory (probably /user/yeshwanthvenkatesh
) appears empty. can try running:
hadoop fs -ls /user/hadoop/scolopax/input/ebird/autogen
but since directory belongs user hadoop
, don't have permissions. if not, try this:
sudo -u hadoop hadoop fs -ls /user/hadoop/scolopax/input/ebird/autogen
Comments
Post a Comment