golang通过http端口访问hadoop

前端之家收集整理的这篇文章主要介绍了golang通过http端口访问hadoop前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

无聊尝试一下golang连接hdfs,写了个hello world

golang包地址

https://github.com/vladimirvivien/gowfs

安装

gogetgithub.com/vladimirvivien/gowfs

写程序之前需要修改hadoop的两个配置文件

分别是

  • hsdfs-site.xml 里的dfs.webhdfs.enabled

<property>
<name>dfs.webhdfs.enabled</name>
<value>true</value>
</property>
  • core-site.xml里的hadoop.http.staticuser.user

<property>
<name>hadoop.http.staticuser.user</name>
<value>hadoop</value>
</property>

简单的例子

packagemain

import(
	"fmt"
	"log"
	"github.com/vladimirvivien/gowfs"
)

funcmain(){
	fs,err:=gowfs.NewFileSystem(gowfs.Configuration{Addr:"localhost:50070",User:"hadoop"})
	iferr!=nil{
	log.Fatal(err)
	}
	checksum,err:=fs.GetFileChecksum(gowfs.Path{Name:"/user/kafka/hello.txt"})
	iferr!=nil{
	log.Fatal(err)
	}
	fmt.Println(checksum)

	createTestDir(fs,"/user/kafka/hello1.txt")	
}

funccreateTestDir(fs*gowfs.FileSystem,hdfsPathstring){
	path:=gowfs.Path{Name:hdfsPath}
	ok,err:=fs.MkDirs(path,0744)
	iferr!=nil||!ok{
		log.Fatal("Unabletocreatetestdirectory",hdfsPath,":",err)
	}
	log.Println("HDFSPath",path.Name,"created.")
}
原文链接:https://www.f2er.com/go/190888.html

猜你在找的Go相关文章