wan kun created KYLIN-3367:
------------------------------
Summary: Add the compatibility for new version of hbase
Key: KYLIN-3367
URL: https://issues.apache.org/jira/browse/KYLIN-3367
Project: Kylin
Issue Type: Bug
Components: REST Service
Affects Versions: v2.4.0
Reporter: wan kun
The Hbase version is 1.4.3. The newly hbase version add some new method in
*{{Table}}* and *{{ResultScanner}}* interface.
So we should add the implementation method.
ResultScanner.java
{code:java}
/**
* Allow the client to renew the scanner's lease on the server.
* @return true if the lease was successfully renewed, false otherwise.
*/
boolean renewLease();
/**
* @return the scan metrics, or {@code null} if we do not enable metrics.
*/
ScanMetrics getScanMetrics();
{code}
{code:java}
/**
* @return the scan metrics, or {@code null} if we do not enable metrics.
*/
ScanMetrics getScanMetrics();
{code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)