gohbase icon indicating copy to clipboard operation
gohbase copied to clipboard

Pure-Go HBase client

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

We need a new api in client for incrementing one or more columns within a single row

only see the put method, can I put the multi-row in one request together?

@timoha We have come across a pretty major issue. When using ```Client.Get```, if no result is found in HBase, HBase will return an RPC with no value and no error....

It looks like this library automatically bundles up multiple simultaneous requests into a single multi-action. Is it possible for a consumer of the library to do batch requests easier than...

I'm using go 1.17, when run go mod tidy, it shows: github.com/tsuna/gohbase tested by github.com/tsuna/gohbase.test imports github.com/golang/mock/gomock loaded from github.com/golang/[email protected], but go 1.16 would select v1.5.0 To upgrade to the...

Would allow us to use their pool mechanism and get a bit of encoding/decoding performance

enhancement

* Removed RegionInfo.SetClient. The client is now set to nil by MarkUnavailable, and then set again with MarkAvailable. This removes bugs and races where a region info may have its...