Jon Bonazza

Results 49 comments of Jon Bonazza

@timoha this also occurs when using the scanner API directly and not using a channel. Any idea what is going on here? For context, for each cell in the scan,...

@timoha Interesting... I thought that was the error that was being returned by the Next() call. Unless, maybe, an ```io.EOF``` error is being returned. I'll investigate more once I get...

@timoha Sorry for the (very) late reply here. So basically, this _is_ the error that is being returned from the ```Next()``` call and then immedately following that, Next() returns ```io.EOF```.

@timoha the [docs](https://hbase.apache.org/apidocs/org/apache/hadoop/hbase/UnknownScannerException.html) for ```UnknownScannerException``` seem to suggest the client isn't "checking in" with the server and the server is closing the connection. > Thrown if a region server is...

More information. Looks like when I see this UnknownScannerException, **only that one rpc fails**. If there are more RPCs to make, then they will continue on, but I will have...

@timoha I was able to confirm that it is the former. In this event will it miss data? If so, I am not sure what I can do here as...

@timoha We are again encountering this time, we are not doing anything heavy, but we are doing _a lot_ of scanning and inserting. I am worried we are overloading the...

Also, @timoha Do you think you could give me a run down of how scanner lease renewal should work? I'd be happy to submit a PR for this, but don't...

Currently, explicit batch operations are not support, however if you spawn multiple goroutines and multiple PUT operations are executed within a small window, these ops will all be batched automatically...

Unfortunately it's been deprioritized for us as we have decided to move to a different datastore for other reasons. I wouldn't count on this work from us any time soon,...