Andrey Elenskiy

Results 11 comments of Andrey Elenskiy

@LG991103 you have to use context with deadine/timeout if you want your requests to exit without retrying forever. It's not stuck, the default behavior is to retry forever until the...

I'll try to investigate soon, been a bit occupied. The error that you are seeing should not affect anything in your code, as it happens in the background. Would be...

Yeah, sound like you either take a long time between calling Next() or your regionserver died in the process of scanning. For the first case, we could implement periodic scanner...

Haven't checked AsyncHBase code or standard client code in a while, but previously neither actually handled the case of partial row scanners. The problem is that if the scanner times...

AFAIK, scanner timeout values are configurable on the server side: https://github.com/apache/hbase/blob/branch-2.0/hbase-common/src/main/resources/hbase-default.xml#L597 I don't see any relevant fields in ScanRequest (https://github.com/apache/hbase/blob/branch-2.0/hbase-protocol/src/main/protobuf/Client.proto#L289) or Scan (https://github.com/apache/hbase/blob/branch-2.0/hbase-protocol/src/main/protobuf/Client.proto#L246) that would allow the client to specify...

Well, it depends on how you define an empty case. In our codebase, if we have an empty result (no cells), that means that no values have been found. It...

I've done the work on this on my fork: https://github.com/timoha/docker-pgbouncer/pull/1 It successfully published the images for various platforms: https://hub.docker.com/r/timoha/pgbouncer/tags?page=1&ordering=last_updated Let me know if you'd like me to send PR for...

Having the same issue. It's a bit weird, first time it works, the second time it doesn't as if there's some caching issue. I've seen this come up multiple time...

I've created the following helper function to calculate row height based on content in case it's useful to someone: ``` func calcRowHeight(m pdf.Maroto, text string, textProp props.Text, gridWidth, colWidth uint)...