Jupyter Notebook:检查hdfs目录内容

问题描述 投票:0回答:1

我正在使用 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 查看目录内容的正确方法是什么?谢谢!

python hadoop hdfs
1个回答
0
投票

请尝试以下命令,它应该可以工作

!hadoop fs -ls /user/hive/warehouse
© www.soinside.com 2019 - 2024. All rights reserved.