我正在使用 Jupyter Notebook,这是我使用过的路径之一:
my_df = sqlContext.read.parquet('hdfs://myPath/user/hive/warehouse/myDB.db/myTable/**')
因为我想检查下面的内容
hdfs://myPath/user/hive/warehouse
我做到了:
!ls hdfs://myPath/user/hive/warehouse
然后我得到了错误:
ls: cannot access hdfs://myPath/user/hive/warehouse: No such file or directory
我错过了什么吗?从 Jupyter Notebook 查看目录内容的正确方法是什么?谢谢!
请尝试以下命令,它应该可以工作
!hadoop fs -ls /user/hive/warehouse