You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by li...@apache.org on 2017/01/05 03:58:25 UTC

kylin git commit: revert 53b6c8c18033f92feadd2295456fa4f31011b5bb

Repository: kylin
Updated Branches:
  refs/heads/master 7e71df947 -> e6a84c569


revert 53b6c8c18033f92feadd2295456fa4f31011b5bb


Project: http://git-wip-us.apache.org/repos/asf/kylin/repo
Commit: http://git-wip-us.apache.org/repos/asf/kylin/commit/e6a84c56
Tree: http://git-wip-us.apache.org/repos/asf/kylin/tree/e6a84c56
Diff: http://git-wip-us.apache.org/repos/asf/kylin/diff/e6a84c56

Branch: refs/heads/master
Commit: e6a84c56961063f4ba83919ec1f689e9f37d1719
Parents: 7e71df9
Author: Hongbin Ma <ma...@apache.org>
Authored: Thu Jan 5 11:57:29 2017 +0800
Committer: Hongbin Ma <ma...@apache.org>
Committed: Thu Jan 5 11:57:40 2017 +0800

----------------------------------------------------------------------
 .../hbase/cube/v2/coprocessor/endpoint/CubeVisitService.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/e6a84c56/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/cube/v2/coprocessor/endpoint/CubeVisitService.java
----------------------------------------------------------------------
diff --git a/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/cube/v2/coprocessor/endpoint/CubeVisitService.java b/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/cube/v2/coprocessor/endpoint/CubeVisitService.java
index de53d0d..21a0efb 100644
--- a/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/cube/v2/coprocessor/endpoint/CubeVisitService.java
+++ b/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/cube/v2/coprocessor/endpoint/CubeVisitService.java
@@ -236,8 +236,8 @@ public class CubeVisitService extends CubeVisitProtos.CubeVisitService implement
             }
 
             final MutableBoolean scanNormalComplete = new MutableBoolean(true);
-            final long deadline = scanReq.getStartTime() + scanReq.getTimeout();
-            logger.info("deadline is " + deadline);
+            final long deadline = serviceStartTime + scanReq.getTimeout();
+            logger.info("deadline(local) is " + deadline);
             final long storagePushDownLimit = scanReq.getStoragePushDownLimit();
 
             final CellListIterator cellListIterator = new CellListIterator() {