Scan.setMaxResultSize and Result.isPartial

2016-06-17 Thread Bryan Beaudreault
Hello, We are running 1.2.0-cdh5.7.0 on our server side, and 1.0.0-cdh5.4.5 on the client side. We're in the process of upgrading the client, but aren't there yet. I'm trying to figure out the relationship of Result.isPartial and the user, when setMaxResultSize is used. I've done a little reading

Re: Scan.setMaxResultSize and Result.isPartial

2016-06-17 Thread Enis Söztutar
You should probably read https://blogs.apache.org/hbase/entry/scan_improvements_in_hbase_1 first. In HBase-1.1 and later code bases, you can call Scan.allowPartialResults() to instruct the ClientScanner to give you partial results. In this case, you can use Result.isPartial() to stitch together mu

Re: Scan.setMaxResultSize and Result.isPartial

2016-06-18 Thread Bryan Beaudreault
Thanks Enis, I had forgotten about that post! All of this makes sense now On Fri, Jun 17, 2016 at 10:12 PM Enis Söztutar wrote: > You should probably read > https://blogs.apache.org/hbase/entry/scan_improvements_in_hbase_1 first. > > In HBase-1.1 and later code bases, you can call Scan.allowPart