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

ERRO[0030] failed looking up region backoff=16ms err="context deadline exceeded" key="\"300605_1658758250_abce\"" table="\"student\"" DEBU[0001] region was not established, retrying backoff=1.024s err="region.NotServingRegionError: HBase Java exception org.apache.hadoop.hbase.NotServingRegionException:\norg.apache.hadoop.hbase.NotServingRegionException: Region hbase:meta,,1 is not online on hbase-regionserver-1,16020,1658850222232\n\tat...

i set the hrpc.NumberOfRows to 2,but i got a length of 1600

It is not immediately clear when creating a Scan request how one should specify the columns in a row that they are interested in retrieving. After seeing some existing code...

enhancement

i can't connect our hbase cluster I was expecting to exit with an error after 10 retries, but I've been looping infinitely in the lookupRegion method and I can't exit....

We are experiencing an issue where Put RPCs (and possibly any other types of RPCs) for a specific region may end up continuously failing with a `ServerError`. This seems to...

At the beginning of client start, there is no table region info in cache. If there are many go routine to access a table at same time, they will miss...

While this code works, this is not yet a fully baked solution. Creating a PR for discussion on the approach and how Kerberos support should best be integrated into gohbase....

create/delete/disable/enable action support set namespace

Not only is it a bad practice to store the `Context` in a struct, but it actually led to a race condition being introduced when we added tracing (being fixed...

I am using the new scanner api like so: ```go func ScanCh(scanner hrpc.Scanner, errCallbacks ...func(row *hrpc.Result, err error))