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 2015/03/03 10:59:14 UTC

[10/23] incubator-kylin git commit: update max region number to 300

update max region number to 300


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

Branch: refs/heads/master
Commit: 0ade9ae6438c829a7e156aca3ad104194ac4c599
Parents: 51cb6c1
Author: liyang@apache.org <ya...@D-SHC-00801746.corp.ebay.com>
Authored: Wed Feb 11 03:17:02 2015 +0000
Committer: liyang@apache.org <ya...@D-SHC-00801746.corp.ebay.com>
Committed: Wed Feb 11 03:17:02 2015 +0000

----------------------------------------------------------------------
 .../com/kylinolap/job/hadoop/cube/RangeKeyDistributionReducer.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/0ade9ae6/job/src/main/java/com/kylinolap/job/hadoop/cube/RangeKeyDistributionReducer.java
----------------------------------------------------------------------
diff --git a/job/src/main/java/com/kylinolap/job/hadoop/cube/RangeKeyDistributionReducer.java b/job/src/main/java/com/kylinolap/job/hadoop/cube/RangeKeyDistributionReducer.java
index e7f22cf..9167b87 100644
--- a/job/src/main/java/com/kylinolap/job/hadoop/cube/RangeKeyDistributionReducer.java
+++ b/job/src/main/java/com/kylinolap/job/hadoop/cube/RangeKeyDistributionReducer.java
@@ -39,7 +39,7 @@ public class RangeKeyDistributionReducer extends KylinReducer<Text, LongWritable
     public static final int MEDIUM_CUT = 20; //  20 GB per region
     public static final int LARGE_CUT = 100; // 100 GB per region
     
-    public static final int MAX_REGION = 200;
+    public static final int MAX_REGION = 300;
 
     private LongWritable outputValue = new LongWritable(0);