[kylin] branch document updated: new logo add TM mark

2018-09-09 Thread shaofengshi
This is an automated email from the ASF dual-hosted git repository.

shaofengshi pushed a commit to branch document
in repository https://gitbox.apache.org/repos/asf/kylin.git


The following commit(s) were added to refs/heads/document by this push:
 new f90ee86  new logo add TM mark
f90ee86 is described below

commit f90ee8620deb6f1546bb71b94ec0e5115e9b7ee1
Author: shaofengshi 
AuthorDate: Mon Sep 10 11:55:32 2018 +0800

new logo add TM mark
---
 website/assets/images/ApacheKylin_Logo_Adjust.png | Bin 169904 -> 249410 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/website/assets/images/ApacheKylin_Logo_Adjust.png 
b/website/assets/images/ApacheKylin_Logo_Adjust.png
index dac6cfd..99a60e2 100644
Binary files a/website/assets/images/ApacheKylin_Logo_Adjust.png and 
b/website/assets/images/ApacheKylin_Logo_Adjust.png differ



[kylin] branch master updated: KYLIN-3258 No check for duplicate cube name when creating a hybrid cube

2018-09-09 Thread shaofengshi
This is an automated email from the ASF dual-hosted git repository.

shaofengshi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kylin.git


The following commit(s) were added to refs/heads/master by this push:
 new 7a77141  KYLIN-3258 No check for duplicate cube name when creating a 
hybrid cube
7a77141 is described below

commit 7a7714175a9d479678abb70740977c46e8507247
Author: GinaZhai 
AuthorDate: Fri Sep 7 11:33:13 2018 +0800

KYLIN-3258 No check for duplicate cube name when creating a hybrid cube
---
 .../main/java/org/apache/kylin/rest/job/HybridCubeCLI.java | 14 ++
 1 file changed, 14 insertions(+)

diff --git 
a/server-base/src/main/java/org/apache/kylin/rest/job/HybridCubeCLI.java 
b/server-base/src/main/java/org/apache/kylin/rest/job/HybridCubeCLI.java
index 48e7f40..e332e1d 100644
--- a/server-base/src/main/java/org/apache/kylin/rest/job/HybridCubeCLI.java
+++ b/server-base/src/main/java/org/apache/kylin/rest/job/HybridCubeCLI.java
@@ -20,11 +20,14 @@ package org.apache.kylin.rest.job;
 
 import java.io.IOException;
 import java.util.ArrayList;
+import java.util.Collection;
+import java.util.HashSet;
 import java.util.List;
 
 import org.apache.commons.cli.Option;
 import org.apache.commons.cli.OptionBuilder;
 import org.apache.commons.cli.Options;
+import org.apache.commons.collections.CollectionUtils;
 import org.apache.commons.lang3.StringUtils;
 import org.apache.kylin.common.KylinConfig;
 import org.apache.kylin.common.persistence.ResourceStore;
@@ -145,6 +148,17 @@ public class HybridCubeCLI extends AbstractApplication {
 
realizationEntries.add(RealizationEntry.create(RealizationType.CUBE, 
cube.getName()));
 }
 
+int realizationEntriesLen = realizationEntries.size();
+HashSet hashSet = new HashSet<>();
+for (int i = 0; i < realizationEntriesLen; i++) {
+hashSet.add(realizationEntries.get(i));
+}
+int hashSetLen = hashSet.size();
+if (realizationEntriesLen != hashSetLen) {
+Collection duplicateCubes = 
CollectionUtils.subtract(realizationEntries, hashSet);
+throw new IllegalArgumentException("The Cubes name does duplicate, 
could not create: " + duplicateCubes);
+}
+
 if ("create".equals(action)) {
 if (hybridInstance != null) {
 throw new IllegalArgumentException("The Hybrid Cube does 
exist, could not create: " + hybridName);



svn commit: r1840401 - in /kylin/site: cn/download/index.html docs/release_notes.html download/index.html feed.xml

2018-09-09 Thread lidong
Author: lidong
Date: Sun Sep  9 12:05:05 2018
New Revision: 1840401

URL: http://svn.apache.org/viewvc?rev=1840401=rev
Log:
KYLIN-3504 move the release notes from _docs23 to _docs

Modified:
kylin/site/cn/download/index.html
kylin/site/docs/release_notes.html
kylin/site/download/index.html
kylin/site/feed.xml

Modified: kylin/site/cn/download/index.html
URL: 
http://svn.apache.org/viewvc/kylin/site/cn/download/index.html?rev=1840401=1840400=1840401=diff
==
--- kylin/site/cn/download/index.html (original)
+++ kylin/site/cn/download/index.html Sun Sep  9 12:05:05 2018
@@ -174,15 +174,15 @@ var _hmt = _hmt || [];
   
 您可以按照这些https://www.apache.org/info/verification.html;>步骤 
并使用这些https://kylin.apache.org/KEYS;>KEYS来验证下载文件的有效性.
 
-v2.4.0
+v2.4.1
 
-  This is a major release after 2.3.x, with 8 new features and more than 
30 bug fixes and enhancement. For the detail list please check release 
notes.
+  This is a bug fix release after 2.4.0, with 22 bug fixes and 
enhancement. For the detail list please check release notes.
   Release notes and upgrade guide
-  源代码下载: http://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-2.4.0/apache-kylin-2.4.0-source-release.zip;>apache-kylin-2.4.0-src.tar.gz
 [https://www.apache.org/dist/kylin/apache-kylin-2.4.0/apache-kylin-2.4.0-source-release.zip.asc;>asc]
 [https://www.apache.org/dist/kylin/apache-kylin-2.4.0/apache-kylin-2.4.0-source-release.zip.sha1;>sha1]
+  源代码下载: http://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-source-release.zip;>apache-kylin-2.4.1-src.tar.gz
 [https://www.apache.org/dist/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-source-release.zip.asc;>asc]
 [https://www.apache.org/dist/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-source-release.zip.sha256;>sha256]
   二进制包下载:
 
-  for HBase 1.x (includes HDP 2.3+, AWS EMR 5.0+, Azure HDInsight 3.4 
- 3.6) - http://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-2.4.0/apache-kylin-2.4.0-bin-hbase1x.tar.gz;>apache-kylin-2.4.0-bin-hbase1x.tar.gz
 [https://www.apache.org/dist/kylin/apache-kylin-2.4.0/apache-kylin-2.4.0-bin-hbase1x.tar.gz.asc;>asc]
 [https://www.apache.org/dist/kylin/apache-kylin-2.4.0/apache-kylin-2.4.0-bin-hbase1x.tar.gz.sha1;>sha1]
-  for CDH 5.7+ - http://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-2.4.0/apache-kylin-2.4.0-bin-cdh57.tar.gz;>apache-kylin-2.4.0-bin-cdh57.tar.gz
 [https://www.apache.org/dist/kylin/apache-kylin-2.4.0/apache-kylin-2.4.0-bin-cdh57.tar.gz.asc;>asc]
 [https://www.apache.org/dist/kylin/apache-kylin-2.4.0/apache-kylin-2.4.0-bin-cdh57.tar.gz.tar.gz.sha1;>sha1]
+  for HBase 1.x (includes HDP 2.3+, AWS EMR 5.0+, Azure HDInsight 3.4 
- 3.6) - http://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-bin-hbase1x.tar.gz;>apache-kylin-2.4.1-bin-hbase1x.tar.gz
 [https://www.apache.org/dist/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-bin-hbase1x.tar.gz.asc;>asc]
 [https://www.apache.org/dist/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-bin-hbase1x.tar.gz.sha256;>sha256]
+  for CDH 5.7+ - http://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-bin-cdh57.tar.gz;>apache-kylin-2.4.1-bin-cdh57.tar.gz
 [https://www.apache.org/dist/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-bin-cdh57.tar.gz.asc;>asc]
 [https://www.apache.org/dist/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-bin-cdh57.tar.gz.sha256;>sha256]
 
   
 

Modified: kylin/site/docs/release_notes.html
URL: 
http://svn.apache.org/viewvc/kylin/site/docs/release_notes.html?rev=1840401=1840400=1840401=diff
==
--- kylin/site/docs/release_notes.html (original)
+++ kylin/site/docs/release_notes.html Sun Sep  9 12:05:05 2018
@@ -5613,6 +5613,36 @@ there are source code package, binary pa
   Development relative: 
 
 
+v2.4.1 - 2018-09-09
+Tag: https://github.com/apache/kylin/tree/kylin-2.4.1;>kylin-2.4.1
+This is a bug fix release after 2.4.0, with 22 bug fixes and enhancement. 
Check How to upgrade.
+
+Improvement
+* [KYLIN-3421] - Improve job scheduler fetch performance
+* [KYLIN-3424] - Missing invoke addCubingGarbageCollectionSteps in the cleanup 
step for HBaseMROutput2Transition
+* [KYLIN-3422] - Support multi-path of domain for kylin connection
+* [KYLIN-3463] - Improve optimize job by avoiding creating empty output files 
on HDFS
+* [KYLIN-3503] - Missing java.util.logging.config.file when starting kylin 
instance
+* [KYLIN-3507] - Query NPE when project is not found
+
+Bug
+* [KYLIN-2662] - NegativeArraySizeException in “Extract Fact Table Distinct 
Columns
+* [KYLIN-3025] - kylin odbc error : {fn CONVERT} for bigint type in tableau 
10.4
+* [KYLIN-3255] - Cannot save cube
+* [KYLIN-3347] - QueryService Exception when using calcite function ex : 

svn commit: r29226 - /release/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-source-release.zip.asc.sha256

2018-09-09 Thread nju_yaho
Author: nju_yaho
Date: Sun Sep  9 11:28:27 2018
New Revision: 29226

Log:
remove checksum files for signature files

Removed:

release/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-source-release.zip.asc.sha256



[kylin] branch document updated: KYLIN-3504 move the release notes from _docs23 to _docs

2018-09-09 Thread nju_yaho
This is an automated email from the ASF dual-hosted git repository.

nju_yaho pushed a commit to branch document
in repository https://gitbox.apache.org/repos/asf/kylin.git


The following commit(s) were added to refs/heads/document by this push:
 new e896163  KYLIN-3504 move the release notes from _docs23 to _docs
e896163 is described below

commit e89616333d86ce5c384e55222b36827378eeed3b
Author: Zhong 
AuthorDate: Sun Sep 9 18:32:08 2018 +0800

KYLIN-3504 move the release notes from _docs23 to _docs
---
 website/_docs/release_notes.md   | 31 +++
 website/_docs23/release_notes.md | 30 --
 2 files changed, 31 insertions(+), 30 deletions(-)

diff --git a/website/_docs/release_notes.md b/website/_docs/release_notes.md
index 34abcd5..f92e9ea 100644
--- a/website/_docs/release_notes.md
+++ b/website/_docs/release_notes.md
@@ -16,6 +16,37 @@ or send to Apache Kylin mailing list:
 * Development relative: [d...@kylin.apache.org](mailto:d...@kylin.apache.org)
 
 
+## v2.4.1 - 2018-09-09
+_Tag:_ [kylin-2.4.1](https://github.com/apache/kylin/tree/kylin-2.4.1)
+This is a bug fix release after 2.4.0, with 22 bug fixes and enhancement. 
Check [How to upgrade](/docs23/howto/howto_upgrade.html).
+
+__Improvement__
+* [KYLIN-3421] - Improve job scheduler fetch performance
+* [KYLIN-3424] - Missing invoke addCubingGarbageCollectionSteps in the cleanup 
step for HBaseMROutput2Transition
+* [KYLIN-3422] - Support multi-path of domain for kylin connection
+* [KYLIN-3463] - Improve optimize job by avoiding creating empty output files 
on HDFS
+* [KYLIN-3503] - Missing java.util.logging.config.file when starting kylin 
instance
+* [KYLIN-3507] - Query NPE when project is not found
+
+__Bug__
+* [KYLIN-2662] - NegativeArraySizeException in "Extract Fact Table Distinct 
Columns
+* [KYLIN-3025] - kylin odbc error : {fn CONVERT} for bigint type in tableau 
10.4
+* [KYLIN-3255] - Cannot save cube
+* [KYLIN-3347] - QueryService Exception when using calcite function ex : {fn 
CURRENT_TIMESTAMP(0)}
+* [KYLIN-3391] - BadQueryDetector only detect first query
+* [KYLIN-3403] - Querying sample cube with filter "KYLIN_CAL_DT.WEEK_BEG_DT >= 
CAST('2001-09-09' AS DATE)" returns unexpected empty result set
+* [KYLIN-3428] - java.lang.OutOfMemoryError: Requested array size exceeds VM 
limit
+* [KYLIN-3438] - mapreduce.job.queuename does not work at 'Convert Cuboid Data 
to HFile' Step
+* [KYLIN-3451] - Cloned cube doesn't have Mandatory Cuboids copied
+* [KYLIN-3456] - Cube level's snapshot config does not work
+* [KYLIN-3460] - {fn CURRENT_DATE()} parse error
+* [KYLIN-3461] - "metastore.sh refresh-cube-signature" not updating cube 
signature as expected
+* [KYLIN-3476] - Fix TupleExpression verification when parsing sql
+* [KYLIN-3492] - Wrong constant value in 
KylinConfigBase.getDefaultVarcharPrecision
+* [KYLIN-3500] - kylin 2.4 use jdbc datasource :Unknown column 'A.A.CRT_DATE' 
in 'where clause'
+* [KYLIN-3505] - DataType.getType wrong usage of cache
+
+
 ## v2.4.0 - 2018-06-23
 _Tag:_ [kylin-2.4.0](https://github.com/apache/kylin/tree/kylin-2.4.0)
 This is a major release after 2.3.x, with 8 new features and more than 30 bug 
fixes bug fixes and enhancement. Check [How to 
upgrade](/docs/howto/howto_upgrade.html).
diff --git a/website/_docs23/release_notes.md b/website/_docs23/release_notes.md
index 21dd26b..d95a00e 100644
--- a/website/_docs23/release_notes.md
+++ b/website/_docs23/release_notes.md
@@ -15,36 +15,6 @@ or send to Apache Kylin mailing list:
 * User relative: [u...@kylin.apache.org](mailto:u...@kylin.apache.org)
 * Development relative: [d...@kylin.apache.org](mailto:d...@kylin.apache.org)
 
-## v2.4.1 - 2018-09-09
-_Tag:_ [kylin-2.4.1](https://github.com/apache/kylin/tree/kylin-2.4.1)
-This is a bug fix release after 2.4.0, with 22 bug fixes and enhancement. 
Check [How to upgrade](/docs23/howto/howto_upgrade.html).
-
-__Improvement__
-* [KYLIN-3421] - Improve job scheduler fetch performance
-* [KYLIN-3424] - Missing invoke addCubingGarbageCollectionSteps in the cleanup 
step for HBaseMROutput2Transition
-* [KYLIN-3422] - Support multi-path of domain for kylin connection
-* [KYLIN-3463] - Improve optimize job by avoiding creating empty output files 
on HDFS
-* [KYLIN-3503] - Missing java.util.logging.config.file when starting kylin 
instance
-* [KYLIN-3507] - Query NPE when project is not found
-
-__Bug__
-* [KYLIN-2662] - NegativeArraySizeException in "Extract Fact Table Distinct 
Columns
-* [KYLIN-3025] - kylin odbc error : {fn CONVERT} for bigint type in tableau 
10.4
-* [KYLIN-3255] - Cannot save cube 
-* [KYLIN-3347] - QueryService Exception when using calcite function ex : {fn 
CURRENT_TIMESTAMP(0)}
-* [KYLIN-3391] - BadQueryDetector only detect first query
-* [KYLIN-3403] - Querying sample cube with filter "KYLIN_CAL_DT.WEEK_BEG_DT >= 
CAST('2001-09-09' AS DATE)" returns unexpected empty result set 
-* [KYLIN-3428] - java.lang.OutOfMemoryError: 

[kylin] branch document updated: KYLIN-3504 Update release notes and download for 2.4.1

2018-09-09 Thread nju_yaho
This is an automated email from the ASF dual-hosted git repository.

nju_yaho pushed a commit to branch document
in repository https://gitbox.apache.org/repos/asf/kylin.git


The following commit(s) were added to refs/heads/document by this push:
 new 6fbcbd3  KYLIN-3504 Update release notes and download for 2.4.1
6fbcbd3 is described below

commit 6fbcbd314d8a2601b35650d88ea4c70534f3ce08
Author: Zhong 
AuthorDate: Sun Sep 9 18:26:04 2018 +0800

KYLIN-3504 Update release notes and download for 2.4.1
---
 website/_docs23/release_notes.md | 31 +++
 website/download/index.cn.md | 10 +-
 website/download/index.md| 10 +-
 3 files changed, 41 insertions(+), 10 deletions(-)

diff --git a/website/_docs23/release_notes.md b/website/_docs23/release_notes.md
index fa8027a..21dd26b 100644
--- a/website/_docs23/release_notes.md
+++ b/website/_docs23/release_notes.md
@@ -15,6 +15,37 @@ or send to Apache Kylin mailing list:
 * User relative: [u...@kylin.apache.org](mailto:u...@kylin.apache.org)
 * Development relative: [d...@kylin.apache.org](mailto:d...@kylin.apache.org)
 
+## v2.4.1 - 2018-09-09
+_Tag:_ [kylin-2.4.1](https://github.com/apache/kylin/tree/kylin-2.4.1)
+This is a bug fix release after 2.4.0, with 22 bug fixes and enhancement. 
Check [How to upgrade](/docs23/howto/howto_upgrade.html).
+
+__Improvement__
+* [KYLIN-3421] - Improve job scheduler fetch performance
+* [KYLIN-3424] - Missing invoke addCubingGarbageCollectionSteps in the cleanup 
step for HBaseMROutput2Transition
+* [KYLIN-3422] - Support multi-path of domain for kylin connection
+* [KYLIN-3463] - Improve optimize job by avoiding creating empty output files 
on HDFS
+* [KYLIN-3503] - Missing java.util.logging.config.file when starting kylin 
instance
+* [KYLIN-3507] - Query NPE when project is not found
+
+__Bug__
+* [KYLIN-2662] - NegativeArraySizeException in "Extract Fact Table Distinct 
Columns
+* [KYLIN-3025] - kylin odbc error : {fn CONVERT} for bigint type in tableau 
10.4
+* [KYLIN-3255] - Cannot save cube 
+* [KYLIN-3347] - QueryService Exception when using calcite function ex : {fn 
CURRENT_TIMESTAMP(0)}
+* [KYLIN-3391] - BadQueryDetector only detect first query
+* [KYLIN-3403] - Querying sample cube with filter "KYLIN_CAL_DT.WEEK_BEG_DT >= 
CAST('2001-09-09' AS DATE)" returns unexpected empty result set 
+* [KYLIN-3428] - java.lang.OutOfMemoryError: Requested array size exceeds VM 
limit
+* [KYLIN-3438] - mapreduce.job.queuename does not work at 'Convert Cuboid Data 
to HFile' Step
+* [KYLIN-3451] - Cloned cube doesn't have Mandatory Cuboids copied
+* [KYLIN-3456] - Cube level's snapshot config does not work
+* [KYLIN-3460] - {fn CURRENT_DATE()} parse error
+* [KYLIN-3461] - "metastore.sh refresh-cube-signature" not updating cube 
signature as expected
+* [KYLIN-3476] - Fix TupleExpression verification when parsing sql
+* [KYLIN-3492] - Wrong constant value in 
KylinConfigBase.getDefaultVarcharPrecision
+* [KYLIN-3500] - kylin 2.4 use jdbc datasource :Unknown column 'A.A.CRT_DATE' 
in 'where clause'
+* [KYLIN-3505] - DataType.getType wrong usage of cache
+
+
 ## v2.3.2 - 2018-07-08
 _Tag:_ [kylin-2.3.2](https://github.com/apache/kylin/tree/kylin-2.3.2)
 This is a bug fix release after 2.3.1, with 12 bug fixes and enhancement. 
Check [How to upgrade](/docs23/howto/howto_upgrade.html).
diff --git a/website/download/index.cn.md b/website/download/index.cn.md
index 9d64c33..134b64e 100644
--- a/website/download/index.cn.md
+++ b/website/download/index.cn.md
@@ -5,13 +5,13 @@ title: 下载
 
 您可以按照这些[步骤](https://www.apache.org/info/verification.html) 
并使用这些[KEYS](https://kylin.apache.org/KEYS)来验证下载文件的有效性.
 
- v2.4.0
-- This is a major release after 2.3.x, with 8 new features and more than 30 
bug fixes and enhancement. For the detail list please check release notes. 
+ v2.4.1
+- This is a bug fix release after 2.4.0, with 22 bug fixes and enhancement. 
For the detail list please check release notes. 
 - [Release notes](/docs/release_notes.html) and [upgrade 
guide](/docs/howto/howto_upgrade.html)
-- 源代码下载: 
[apache-kylin-2.4.0-src.tar.gz](http://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-2.4.0/apache-kylin-2.4.0-source-release.zip)
 
\[[asc](https://www.apache.org/dist/kylin/apache-kylin-2.4.0/apache-kylin-2.4.0-source-release.zip.asc)\]
 
\[[sha1](https://www.apache.org/dist/kylin/apache-kylin-2.4.0/apache-kylin-2.4.0-source-release.zip.sha1)\]
+- 源代码下载: 
[apache-kylin-2.4.1-src.tar.gz](http://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-source-release.zip)
 
\[[asc](https://www.apache.org/dist/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-source-release.zip.asc)\]
 
\[[sha256](https://www.apache.org/dist/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-source-release.zip.sha256)\]
 - 二进制包下载:
-  - for HBase 1.x (includes HDP 2.3+, AWS EMR 5.0+, Azure HDInsight 3.4 - 3.6) 
- 

[kylin] branch 2.4.x updated: KYLIN-3504 update CURRENT_KYLIN_VERSION to 2.4.2

2018-09-09 Thread nju_yaho
This is an automated email from the ASF dual-hosted git repository.

nju_yaho pushed a commit to branch 2.4.x
in repository https://gitbox.apache.org/repos/asf/kylin.git


The following commit(s) were added to refs/heads/2.4.x by this push:
 new 450aadb  KYLIN-3504 update CURRENT_KYLIN_VERSION to 2.4.2
450aadb is described below

commit 450aadbf36d55fec4c299eee61fd6feb48d12349
Author: Zhong 
AuthorDate: Sun Sep 9 17:59:59 2018 +0800

KYLIN-3504 update CURRENT_KYLIN_VERSION to 2.4.2
---
 core-common/src/main/java/org/apache/kylin/common/KylinVersion.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 d9b942a..a1541bd 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
@@ -95,7 +95,7 @@ public class KylinVersion implements Comparable {
 /**
  * Require MANUAL updating kylin version per ANY upgrading.
  */
-private static final KylinVersion CURRENT_KYLIN_VERSION = new 
KylinVersion("2.4.1.20500");
+private static final KylinVersion CURRENT_KYLIN_VERSION = new 
KylinVersion("2.4.2");
 
 private static final KylinVersion VERSION_200 = new KylinVersion("2.0.0");
 



svn commit: r29224 - /release/kylin/apache-kylin-2.4.1/

2018-09-09 Thread nju_yaho
Author: nju_yaho
Date: Sun Sep  9 09:55:07 2018
New Revision: 29224

Log:
checkin release binary artifacts

Added:
release/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-bin-cdh57.tar.gz
  - copied unchanged from r29223, 
dev/kylin/apache-kylin-2.4.1-rc1/apache-kylin-2.4.1-bin-cdh57.tar.gz
release/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-bin-cdh57.tar.gz.asc
  - copied unchanged from r29223, 
dev/kylin/apache-kylin-2.4.1-rc1/apache-kylin-2.4.1-bin-cdh57.tar.gz.asc
release/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-bin-cdh57.tar.gz.sha256
  - copied unchanged from r29223, 
dev/kylin/apache-kylin-2.4.1-rc1/apache-kylin-2.4.1-bin-cdh57.tar.gz.sha256
release/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-bin-hbase1x.tar.gz
  - copied unchanged from r29223, 
dev/kylin/apache-kylin-2.4.1-rc1/apache-kylin-2.4.1-bin-hbase1x.tar.gz
release/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-bin-hbase1x.tar.gz.asc
  - copied unchanged from r29223, 
dev/kylin/apache-kylin-2.4.1-rc1/apache-kylin-2.4.1-bin-hbase1x.tar.gz.asc

release/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-bin-hbase1x.tar.gz.sha256
  - copied unchanged from r29223, 
dev/kylin/apache-kylin-2.4.1-rc1/apache-kylin-2.4.1-bin-hbase1x.tar.gz.sha256



svn commit: r29223 - /dev/kylin/apache-kylin-2.4.1-rc1/

2018-09-09 Thread nju_yaho
Author: nju_yaho
Date: Sun Sep  9 09:51:23 2018
New Revision: 29223

Log:
Add 2.4.1 binary package to staging

Added:
dev/kylin/apache-kylin-2.4.1-rc1/apache-kylin-2.4.1-bin-cdh57.tar.gz   
(with props)
dev/kylin/apache-kylin-2.4.1-rc1/apache-kylin-2.4.1-bin-cdh57.tar.gz.asc
dev/kylin/apache-kylin-2.4.1-rc1/apache-kylin-2.4.1-bin-cdh57.tar.gz.sha256
dev/kylin/apache-kylin-2.4.1-rc1/apache-kylin-2.4.1-bin-hbase1x.tar.gz   
(with props)
dev/kylin/apache-kylin-2.4.1-rc1/apache-kylin-2.4.1-bin-hbase1x.tar.gz.asc

dev/kylin/apache-kylin-2.4.1-rc1/apache-kylin-2.4.1-bin-hbase1x.tar.gz.sha256

Added: dev/kylin/apache-kylin-2.4.1-rc1/apache-kylin-2.4.1-bin-cdh57.tar.gz
==
Binary file - no diff available.

Propchange: dev/kylin/apache-kylin-2.4.1-rc1/apache-kylin-2.4.1-bin-cdh57.tar.gz
--
svn:mime-type = application/octet-stream

Added: dev/kylin/apache-kylin-2.4.1-rc1/apache-kylin-2.4.1-bin-cdh57.tar.gz.asc
==
--- dev/kylin/apache-kylin-2.4.1-rc1/apache-kylin-2.4.1-bin-cdh57.tar.gz.asc 
(added)
+++ dev/kylin/apache-kylin-2.4.1-rc1/apache-kylin-2.4.1-bin-cdh57.tar.gz.asc 
Sun Sep  9 09:51:23 2018
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCAAdFiEEZe+yJYO9IoWFYgdVHlTyBZSQahwFAluU5oQACgkQHlTyBZSQ
+ahwXYRAAmDkuDwkxnMJamzTd6ucuW52iJjhbiUTMVyfD0pEofSt8OCyzNc+v3GSz
+AxscyG7YjtB6OpcnYQPEbjy8EkDWzvtZa5NqtqJ1yAGg0glRGVr+VJ17btmbZqNz
+/VotWGp8nc+3/ijC/Go7pdMlauY4LXJ4vP5DPeD46/BEI/+0TWNo2BamunqXzSvk
+8hGrW+wBmIPBOvMaEwSXPv/ENNgeCMg5mAlaE3NarUCKPxxHkTjRJs/FMIV7nOyR
+ezq3Pv8v0x6FJpn1Kj3nLW/6gU3XvfTiIazz62Dl4BR1iYgMM+PIt3D40f04gdEX
+2XahXXLkAQM9bwYzH8uWppignSP3kfSEcFL9mX6UGS4+M2bqUVxJWJkciJpf7LYx
+IoIRkoX1VQI163Tntqvv7qAKQd+JIBVs1NGwMbr6TqufZo4Lx6scu4LYI78tU4nS
+OHjcS2/WPzLtWfq5JabLo2/b6blHBY/evDoNvgl/lFw1xvHr28jQTOV9BwtjXOih
+JJjyW/nKc059BdwN89NJPjG3owBHYCNnWo7fOY9QgGu6NwyVfM9IseXg2ukeJMA5
+6BtjdX6JQhHpmhQny8023tyhD5qeCv/YGOW58XRXndGNoZ9EfMDB5YsId6MVl8Si
+TDzg8o409TuyhrZmc+mugXyM2p7Xjoku8u/CX7bvsr77c+7do6o=
+=6Wxi
+-END PGP SIGNATURE-

Added: 
dev/kylin/apache-kylin-2.4.1-rc1/apache-kylin-2.4.1-bin-cdh57.tar.gz.sha256
==
--- dev/kylin/apache-kylin-2.4.1-rc1/apache-kylin-2.4.1-bin-cdh57.tar.gz.sha256 
(added)
+++ dev/kylin/apache-kylin-2.4.1-rc1/apache-kylin-2.4.1-bin-cdh57.tar.gz.sha256 
Sun Sep  9 09:51:23 2018
@@ -0,0 +1 @@
+SHA256(apache-kylin-2.4.1-bin-cdh57.tar.gz)= 
a04ec7edb4db2e221309907f4db794c3fc315bd73f47301f3238c7124ee42b44

Added: dev/kylin/apache-kylin-2.4.1-rc1/apache-kylin-2.4.1-bin-hbase1x.tar.gz
==
Binary file - no diff available.

Propchange: 
dev/kylin/apache-kylin-2.4.1-rc1/apache-kylin-2.4.1-bin-hbase1x.tar.gz
--
svn:mime-type = application/octet-stream

Added: 
dev/kylin/apache-kylin-2.4.1-rc1/apache-kylin-2.4.1-bin-hbase1x.tar.gz.asc
==
--- dev/kylin/apache-kylin-2.4.1-rc1/apache-kylin-2.4.1-bin-hbase1x.tar.gz.asc 
(added)
+++ dev/kylin/apache-kylin-2.4.1-rc1/apache-kylin-2.4.1-bin-hbase1x.tar.gz.asc 
Sun Sep  9 09:51:23 2018
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCAAdFiEEZe+yJYO9IoWFYgdVHlTyBZSQahwFAluU5X8ACgkQHlTyBZSQ
+ahwyBhAAxkb4Uk6mjnxYdlCBsge3PeVMnJQrYr4xn+rxAvRkz6Y9Art8giIXvxkn
+W0L0AV/WjONDmCTYOGscC+5FAhBoD4FNl+hC5C60QmD6klR08esfPIdyxleR2y0F
+jeJiP3jJE3Z8zjE+Nmvn5MtfEJkeAqFcO3cy7XpUEpC5giS7YTRW7scu5HhQEAZq
+njDtYIfTzvabmspxWa4w7ZbTLhC6S19S7PAZlQrMxTVxD1RkQAt5wZZ2iktkRNkL
+iZAHZQWwQnv7ejGQPSON98EqUy2HLjSG87J6jJDV/C4HxN8U+wsBJ9ZscoZc2d+1
+NtlxZahKhN0hPJ1aA9nGE61Q2p86QmjyDmpgSfyO87eLOL90ZZW1YdHhZffCZAAu
+N/Up5Ci054IojeJuM7OYuS3m9iewldjlCfotZdLQ8PocLTesAMQytPsWiNsLh97D
+tNSgOHfmTU6dG46Pmg+IOc7xdfC7FePS0Yb/rAJKI9l9i0t48GoyrelF1yo1NJE5
+vlgpoNCzhDYxRzsl9GK6b3xMM2WKuEdbL88f6nsF4mEtZZgvzYZv9r4TrWxJ/zxl
+RfhEoOPOz2TGyG6QU6LdwYheuXFgYyYCAhVXYM0hHBRk1vCr+Hd1LhGvSZ+wx8gi
+Of8q5JSH6K4mGw657OxUXnz46/+GUOyFavMXG8tb88UzBrfBeys=
+=sGeu
+-END PGP SIGNATURE-

Added: 
dev/kylin/apache-kylin-2.4.1-rc1/apache-kylin-2.4.1-bin-hbase1x.tar.gz.sha256
==
--- 
dev/kylin/apache-kylin-2.4.1-rc1/apache-kylin-2.4.1-bin-hbase1x.tar.gz.sha256 
(added)
+++ 
dev/kylin/apache-kylin-2.4.1-rc1/apache-kylin-2.4.1-bin-hbase1x.tar.gz.sha256 
Sun Sep  9 09:51:23 2018
@@ -0,0 +1 @@
+SHA256(apache-kylin-2.4.1-bin-hbase1x.tar.gz)= 
ee324812ff1b585e01d3d9d17c5f1361ddbe46cd04f1ce24df57605d2cbac5be




svn commit: r29222 - /release/kylin/apache-kylin-2.3.1/

2018-09-09 Thread nju_yaho
Author: nju_yaho
Date: Sun Sep  9 08:19:43 2018
New Revision: 29222

Log:
Remove old release

Removed:
release/kylin/apache-kylin-2.3.1/



svn commit: r29221 - in /release/kylin/apache-kylin-2.4.1: ./ apache-kylin-2.4.1-source-release.zip apache-kylin-2.4.1-source-release.zip.asc apache-kylin-2.4.1-source-release.zip.asc.sha256 apache-ky

2018-09-09 Thread nju_yaho
Author: nju_yaho
Date: Sun Sep  9 08:17:13 2018
New Revision: 29221

Log:
checkin release artifacts

Added:
release/kylin/apache-kylin-2.4.1/
release/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-source-release.zip   
(with props)
release/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-source-release.zip.asc

release/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-source-release.zip.asc.sha256

release/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-source-release.zip.sha256

Added: release/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-source-release.zip
==
Binary file - no diff available.

Propchange: 
release/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-source-release.zip
--
svn:mime-type = application/octet-stream

Added: 
release/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-source-release.zip.asc
==
--- release/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-source-release.zip.asc 
(added)
+++ release/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-source-release.zip.asc 
Sun Sep  9 08:17:13 2018
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCgAdFiEEZe+yJYO9IoWFYgdVHlTyBZSQahwFAluPHF8ACgkQHlTyBZSQ
+ahy2jQ//YIPaMzLTJqMxo5XmqGz7wjkov3HnT+fcdEbuMjFbubSd7cZAHGyYyq+9
+cwj9VkblHeS0pZzKVIJWz1ZZt14dgz7N+8C2rIwUmmnqrO3mi9FHuilfX1/FZGNG
+TBlP355b6Lea2qKLl1zclSBFON2w+Ne8DMHRKa2y1gwSCy2OEmYbdiM23FHUD1vB
+UMEELShM0JlYjx9RYMILVHvRxJlXM5xQ6FHsNN8uLNQ3NwOhFhCyF7HlwbPK1fMP
+Vv5EjFH/HAWVGPAUdDx5SkiqX+FEGpnRC3Bg4kDjVB6VogUFw63ifhJbeqh3MBVh
+4N9C5x9IHS4IoS68yjOFPU1YujvsIUk0CZt/L0CuFQZWmYudPlIjj9P5MFfFeFaZ
+FLPU3r2vKRsgXQ0nu+EDGkNth7MEsi2BBvekiQkTkaDW99W12ElE0tkANchfdhAp
+QeTz8UZOwwndaNfv886D1H1FYLbsOdGJzYTOwRAWU6bdjX4QxtNhM53eSectwLf8
+TJzovX/Yco7Q10rXM4aNrgJfzNP2wz+G1XlQcm9OtI2HA9mYB7JlRL7lXRMKklee
+cSyxVAlLtbYtKEs7HLmvGOJuYTrH9gmaYJc6+qQrfkLgl/0/qLJQxvCC0UbvmOlb
+KCqSf1Ut7J7HVdLr9AXlHE20WczkbSOvDbEh1Zw0d8jBUsK6qKA=
+=+KFT
+-END PGP SIGNATURE-

Added: 
release/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-source-release.zip.asc.sha256
==
--- 
release/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-source-release.zip.asc.sha256
 (added)
+++ 
release/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-source-release.zip.asc.sha256
 Sun Sep  9 08:17:13 2018
@@ -0,0 +1 @@
+d6af75e1062504d5c5730dd0c534a89d182a069b62c8f3dedce78b7cb847
\ No newline at end of file

Added: 
release/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-source-release.zip.sha256
==
--- 
release/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-source-release.zip.sha256 
(added)
+++ 
release/kylin/apache-kylin-2.4.1/apache-kylin-2.4.1-source-release.zip.sha256 
Sun Sep  9 08:17:13 2018
@@ -0,0 +1 @@
+12449d0d8d1c8f3151d713dcec33b8bd69077f2ccfb78708ad1a6122fab8faf6
\ No newline at end of file