Repository: kylin
Updated Branches:
  refs/heads/master 0a0a79424 -> 2bf5697da


KYLIN-2147 Move the creation of HTable after cube be built

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

Branch: refs/heads/master
Commit: 2bf5697da031dba21d2fb863018512fd89147402
Parents: 067282c
Author: shaofengshi <shaofeng...@apache.org>
Authored: Wed Nov 2 13:39:26 2016 +0800
Committer: shaofengshi <shaofeng...@apache.org>
Committed: Wed Nov 2 13:41:12 2016 +0800

----------------------------------------------------------------------
 .../apache/kylin/storage/hbase/steps/HBaseMROutput2Transition.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/2bf5697d/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/steps/HBaseMROutput2Transition.java
----------------------------------------------------------------------
diff --git 
a/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/steps/HBaseMROutput2Transition.java
 
b/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/steps/HBaseMROutput2Transition.java
index c4df354..a063efe 100644
--- 
a/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/steps/HBaseMROutput2Transition.java
+++ 
b/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/steps/HBaseMROutput2Transition.java
@@ -49,11 +49,11 @@ public class HBaseMROutput2Transition implements IMROutput2 
{
 
             @Override
             public void addStepPhase2_BuildDictionary(DefaultChainedExecutable 
jobFlow) {
-                
jobFlow.addTask(steps.createCreateHTableStepWithStats(jobFlow.getId()));
             }
 
             @Override
             public void addStepPhase3_BuildCube(DefaultChainedExecutable 
jobFlow) {
+                
jobFlow.addTask(steps.createCreateHTableStepWithStats(jobFlow.getId()));
                 
jobFlow.addTask(steps.createConvertCuboidToHfileStep(jobFlow.getId()));
                 jobFlow.addTask(steps.createBulkLoadStep(jobFlow.getId()));
             }

Reply via email to