gohbase icon indicating copy to clipboard operation
gohbase copied to clipboard

Pure-Go HBase client

Results 64 gohbase issues
Sort by recently updated
recently updated
newest added

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 …

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