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/04/05 05:45:47 UTC

kylin git commit: KYLIN-1557 add more message in log

Repository: kylin
Updated Branches:
  refs/heads/master 6304e9474 -> d1b0f9ca9


KYLIN-1557 add more message in log

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

Branch: refs/heads/master
Commit: d1b0f9ca95c9bea3d5767cdffce86aaaa0207bc3
Parents: 6304e94
Author: shaofengshi <sh...@apache.org>
Authored: Tue Apr 5 11:45:44 2016 +0800
Committer: shaofengshi <sh...@apache.org>
Committed: Tue Apr 5 11:45:44 2016 +0800

----------------------------------------------------------------------
 core-cube/src/main/java/org/apache/kylin/cube/model/CubeDesc.java | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/d1b0f9ca/core-cube/src/main/java/org/apache/kylin/cube/model/CubeDesc.java
----------------------------------------------------------------------
diff --git a/core-cube/src/main/java/org/apache/kylin/cube/model/CubeDesc.java b/core-cube/src/main/java/org/apache/kylin/cube/model/CubeDesc.java
index f9ec99e..89f297e 100644
--- a/core-cube/src/main/java/org/apache/kylin/cube/model/CubeDesc.java
+++ b/core-cube/src/main/java/org/apache/kylin/cube/model/CubeDesc.java
@@ -607,6 +607,7 @@ public class CubeDesc extends RootPersistentEntity {
 
             if (combination > config.getCubeAggrGroupMaxCombination()) {
                 String msg = "Aggregation group " + index + " has too many combinations, use 'mandatory'/'hierarchy'/'joint' to optimize; or update 'kylin.cube.aggrgroup.max.combination' to a bigger value.";
+                logger.error("Aggregation group " + index + " has " + combination + " combinations;");
                 logger.error(msg);
                 throw new IllegalStateException(msg);
             }