欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

python访问hdfs的操作

程序员文章站 2022-06-29 17:11:34
pip install hdfspython 读取hdfs目录或文件import hdfs client =hdfs.client("http://10.10.1.4:50070")filedir="...

pip install hdfs

python 读取hdfs目录或文件

import hdfs
 
client =hdfs.client("http://10.10.1.4:50070")
filedir="/user/hive/warehouse/house.db/dm_house/dt=201800909"
try:
  status=client.status(filedir,false)
  if status:
    print (status)
    rst=client.download(filedir,"/home/dev/gewei")
    print (rst)
exception exception as e:
  print (e)

补充知识:用python访问hdfs出现webhdfs找不到的情况

有可能是webhdfs服务没有开启

向hdfs-site.xml文件中添加属性:

<property> 
  <name>dfs.webhdfs.enabled</name> 
  <value>true</value> 
</property> 

可以使用如下命令检测,

获得目录的列表:

curl -i "http://hadoop:50070/webhdfs/v1/?user.name=hadoop&op=liststatus"

以上这篇python访问hdfs的操作就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。