Categorygithub.com/beyondstorage/go-service-hdfs
repositorypackage
0.2.1
Repository: https://github.com/beyondstorage/go-service-hdfs.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# README

Build Status License

go-service-hdfs

Hadoop Distributed File System (HDFS) support for go-storage.

Install

go get github.com/beyondstorage/go-service-hdfs

Usage

import (
	"log"
	
	_ "github.com/beyondstorage/go-service-hdfs"
	"github.com/beyondstorage/go-storage/v4/services"
)

func main() {
	store, err := services.NewStoragerFromString("hdfs:///path/to/workdir?endpoint=tcp:<host>:<port>")
	if err != nil {
		log.Fatal(err)
	}
	
	// Write data from io.Reader into hello.txt
	n, err := store.Write("hello.txt", r, length)
}