Skip to content

Commit

Permalink
KYLIN-4580 Add 90, 360 days auto-merge thresholds for system cubes
Browse files Browse the repository at this point in the history
  • Loading branch information
kyotoYaho authored and hit-lacus committed Jun 18, 2020
1 parent 8d0fc5d commit 996d249
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ public static CubeDesc generateKylinCubeDesc(String tableName, int storageType,
desc.setHbaseMapping(hBaseMapping);
desc.setNotifyList(Lists.<String> newArrayList());
desc.setStatusNeedNotify(Lists.newArrayList(JobStatusEnum.ERROR.toString()));
desc.setAutoMergeTimeRanges(new long[] { 86400000L, 604800000L, 2419200000L });
desc.setAutoMergeTimeRanges(new long[] { 86400000L, 604800000L, 2419200000L, 7776000000L, 31104000000L });
desc.setEngineType(IEngineAware.ID_MR_V2);
desc.setStorageType(storageType);
desc.setAggregationGroups(Lists.newArrayList(aggGroup));
Expand Down

0 comments on commit 996d249

Please sign in to comment.