Skip to content
/ gohbase Public

hbase golang client to make operation simplify and convenience

Notifications You must be signed in to change notification settings

yusank/gohbase

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gohbase

gohbase is a hbase client for golang. This package written based on github.com/tsuna/gohbase and defines some interface to operate hbase more simple and convenience. For example :

result := dbClient.Context(context.Background()).
    Table(msg.TableName()).
    Key(msg.HbaseRowKey()).
    Values(msg.HbaseValues()).
    Put() // define Put, Get, Delete, Scan etc.
if result.Err() != nil {
    return result.Err()
}
// result has more methos

About

hbase golang client to make operation simplify and convenience

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages