gohbase
gohbase copied to clipboard
Pure-Go HBase client
Hi, Does this library support Kerberos and if so is its use documented somewhere? Thanks
Hi, Does this library support Kerberos and if so is its use documented somewhere? Thanks Hari
optimise code in region/client.go
Is there an interface to determine if the table exists
I want to get deleted rows/ column families in the table, but i don't see a way to do raw scan in go-hbase. However Java version of Scan supports the...
Hi, When tried to connect to HBase through Go program using 'gohbase', we are getting below errors: ------------------ ERRO[0018] failed looking up region backoff=16ms err="failed to read the /hbase/meta-region-server znode:...
When I open 1 100 200 500 goroutines it's all ok, but when 1000 goroutines the program crashed with the error "concurrent map iteration and map write" os: macOs Mojave...
Modified cache to use map, so get performance benefit nearly 70ms to …
Can't connect to the remote hbase with gohbase however works smoothly with happybase(Python Client)
Hi, we tried to connect the remote hbase server from a Ubuntu Server with the following gohbase code. ```go package main import ( "context" "fmt" "github.com/tsuna/gohbase" "github.com/tsuna/gohbase/hrpc" ) func main()...
How to use FuzzyRowFilter? Can you give me an example? Thank you