You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by sh...@apache.org on 2016/09/24 06:41:11 UTC

[1/2] kylin git commit: minor, more logging in storage query

Repository: kylin
Updated Branches:
  refs/heads/1.5.4.1-rc2 [created] 5e513f730


minor, more logging in storage query


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

Branch: refs/heads/1.5.4.1-rc2
Commit: e5cfd615fd1b5ce9d560d8cdc0ac1e76ea1b699d
Parents: 2141b21
Author: lidongsjtu <li...@apache.org>
Authored: Sat Sep 24 10:26:44 2016 +0800
Committer: shaofengshi <sh...@apache.org>
Committed: Sat Sep 24 14:30:32 2016 +0800

----------------------------------------------------------------------
 .../org/apache/kylin/storage/gtrecord/GTCubeStorageQueryBase.java   | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/e5cfd615/core-storage/src/main/java/org/apache/kylin/storage/gtrecord/GTCubeStorageQueryBase.java
----------------------------------------------------------------------
diff --git a/core-storage/src/main/java/org/apache/kylin/storage/gtrecord/GTCubeStorageQueryBase.java b/core-storage/src/main/java/org/apache/kylin/storage/gtrecord/GTCubeStorageQueryBase.java
index 31663d0..4ba134d 100644
--- a/core-storage/src/main/java/org/apache/kylin/storage/gtrecord/GTCubeStorageQueryBase.java
+++ b/core-storage/src/main/java/org/apache/kylin/storage/gtrecord/GTCubeStorageQueryBase.java
@@ -103,6 +103,7 @@ public abstract class GTCubeStorageQueryBase implements IStorageQuery {
         dimensionsD.addAll(groupsD);
         dimensionsD.addAll(otherDimsD);
         Cuboid cuboid = Cuboid.identifyCuboid(cubeDesc, dimensionsD, metrics);
+        logger.info("Cuboid identified: cube={}, cuboidId={}", cubeInstance.getName(), cuboid.getId());
         context.setCuboid(cuboid);
 
         // isExactAggregation? meaning: tuples returned from storage requires no further aggregation in query engine


[2/2] kylin git commit: KYLIN-2040 update KylinVersion

Posted by sh...@apache.org.
KYLIN-2040 update KylinVersion


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

Branch: refs/heads/1.5.4.1-rc2
Commit: 5e513f7306d6d548b740dca30cb389f9f50aa00e
Parents: e5cfd61
Author: shaofengshi <sh...@apache.org>
Authored: Sat Sep 24 14:32:33 2016 +0800
Committer: shaofengshi <sh...@apache.org>
Committed: Sat Sep 24 14:32:33 2016 +0800

----------------------------------------------------------------------
 .../src/main/java/org/apache/kylin/common/KylinVersion.java        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/5e513f73/core-common/src/main/java/org/apache/kylin/common/KylinVersion.java
----------------------------------------------------------------------
diff --git a/core-common/src/main/java/org/apache/kylin/common/KylinVersion.java b/core-common/src/main/java/org/apache/kylin/common/KylinVersion.java
index 6aa773c..d882a01 100644
--- a/core-common/src/main/java/org/apache/kylin/common/KylinVersion.java
+++ b/core-common/src/main/java/org/apache/kylin/common/KylinVersion.java
@@ -67,7 +67,7 @@ public class KylinVersion {
     /**
      * Require MANUAL updating kylin version per ANY upgrading.
      */
-    private static final KylinVersion CURRENT_KYLIN_VERSION = new KylinVersion("1.6.0");
+    private static final KylinVersion CURRENT_KYLIN_VERSION = new KylinVersion("1.5.4.1");
 
     private static final Set<KylinVersion> SIGNATURE_INCOMPATIBLE_REVISIONS = new HashSet<KylinVersion>();