tangs b030ce89ca openbilibili | 5 years ago | |
---|---|---|
.. | ||
BUILD | 5 years ago | |
README.md | 5 years ago | |
config.go | 5 years ago | |
hbase.go | 5 years ago | |
hbase_test.go | 5 years ago |
Hbase Client,进行封装加入了链路追踪和统计。
package main
import (
"context"
"fmt"
"go-common/conf"
"go-common/database/hbase.v2"
)
func main() {
config := &hbase.Config{Zookeeper: &conf.Zookeeper{Addrs: []string{"localhost"}}}
client := hbase.NewClient(config)
values := map[string]map[string][]byte{"name": {"firstname": []byte("hello"), "lastname": []byte("world")}}
ctx := context.Background()
_, err := client.PutStr(ctx, "user", "user1", values)
if err != nil {
panic(err)
}
result, err := client.GetStr(ctx, "user", "user1")
if err != nil {
panic(err)
}
fmt.Printf("%v", result)
}
请只用golang v1.8.x以上版本编译执行。
1.gohbase