Description
HBASE-6073 adds the following to the overall patch:
- return resultsFromHBase(scanner.next(numRows)); + List<TResult> results = resultsFromHBase(scanner.next(numRows)); + if(results.size() < numRows) { + removeScanner(scannerId); + } + return results;
We need to see if we have to add this to Thrift2 as separate patch.
Attachments
Issue Links
- is related to
-
HBASE-3852 ThriftServer leaks scanners
- Closed
-
HBASE-8946 Add a new function to Thrift 2 to open scanner, get results and close scanner
- Closed