You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by ni...@apache.org on 2020/06/27 04:25:01 UTC

[kylin] branch v3.1.0-release updated (fb842bc -> 30ff1ec)

This is an automated email from the ASF dual-hosted git repository.

nic pushed a change to branch v3.1.0-release
in repository https://gitbox.apache.org/repos/asf/kylin.git.


 discard fb842bc  [maven-release-plugin] prepare release kylin-3.1.0
 discard 4512b89  KYLIN-4598 Missing dependency when run kylin.sh org.apache.kylin.*
 discard da44e57  KYLIN-4597 Fix NPE when download diagnosis info for a job
     new 6d5f5b0  KYLIN-4597 Fix NPE when download diagnosis info for a job
     new 30ff1ec  KYLIN-4598 Missing dependency when run kylin.sh org.apache.kylin.*

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (fb842bc)
            \
             N -- N -- N   refs/heads/v3.1.0-release (30ff1ec)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 assembly/pom.xml               |  2 +-
 cache/pom.xml                  |  5 +++--
 core-common/pom.xml            |  2 +-
 core-cube/pom.xml              |  2 +-
 core-dictionary/pom.xml        |  2 +-
 core-job/pom.xml               |  2 +-
 core-metadata/pom.xml          |  2 +-
 core-metrics/pom.xml           |  2 +-
 core-storage/pom.xml           |  2 +-
 cube-migration/pom.xml         |  2 +-
 datasource-sdk/pom.xml         |  6 ++++--
 engine-flink/pom.xml           |  6 ++++--
 engine-mr/pom.xml              |  2 +-
 engine-spark/pom.xml           |  2 +-
 jdbc/pom.xml                   |  2 +-
 kylin-it/pom.xml               |  4 ++--
 metrics-reporter-hive/pom.xml  |  2 +-
 metrics-reporter-kafka/pom.xml |  2 +-
 pom.xml                        | 11 ++++++-----
 query/pom.xml                  |  2 +-
 server-base/pom.xml            |  2 +-
 server/pom.xml                 |  2 +-
 source-hive/pom.xml            |  2 +-
 source-jdbc/pom.xml            |  5 +++--
 source-kafka/pom.xml           |  2 +-
 storage-hbase/pom.xml          |  8 +++++---
 storage-stream/pom.xml         |  2 +-
 stream-coordinator/pom.xml     |  5 +++--
 stream-core/pom.xml            |  2 +-
 stream-receiver/pom.xml        | 14 +++++++++-----
 stream-source-kafka/pom.xml    |  2 +-
 tomcat-ext/pom.xml             |  2 +-
 tool-assembly/pom.xml          |  2 +-
 tool/pom.xml                   |  2 +-
 34 files changed, 64 insertions(+), 50 deletions(-)


[kylin] 02/02: KYLIN-4598 Missing dependency when run kylin.sh org.apache.kylin.*

Posted by ni...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

nic pushed a commit to branch v3.1.0-release
in repository https://gitbox.apache.org/repos/asf/kylin.git

commit 30ff1ec11201ca1fedf0f177bdfa3fe780ae90cc
Author: Zhichao Zhang <44...@qq.com>
AuthorDate: Mon Jun 22 23:47:55 2020 +0800

    KYLIN-4598 Missing dependency when run kylin.sh org.apache.kylin.*
    
    Problems:
    It throws 'NoClassDefFoundError: org/apache/kafka/clients/producer/Producer' when run kylin.sh org.apache.kylin.source.kafka.util.KafkaSampleProducer.
    
    Solutions:
    Add 'export kafka_dependency' before export HBASE_CLASSPATH in kylin.sh
---
 build/bin/kylin.sh | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/build/bin/kylin.sh b/build/bin/kylin.sh
index 59d6de7..d56976b 100755
--- a/build/bin/kylin.sh
+++ b/build/bin/kylin.sh
@@ -40,10 +40,16 @@ function retrieveDependency() {
         source ${dir}/cached-hive-dependency.sh
         source ${dir}/cached-hbase-dependency.sh
         source ${dir}/cached-hadoop-conf-dir.sh
+        source ${dir}/cached-kafka-dependency.sh
+        source ${dir}/cached-spark-dependency.sh
+        source ${dir}/cached-flink-dependency.sh
     else
         source ${dir}/find-hive-dependency.sh
         source ${dir}/find-hbase-dependency.sh
         source ${dir}/find-hadoop-conf-dir.sh
+        source ${dir}/find-kafka-dependency.sh
+        source ${dir}/find-spark-dependency.sh
+        source ${dir}/find-flink-dependency.sh
     fi
 
     #retrive $KYLIN_EXTRA_START_OPTS


[kylin] 01/02: KYLIN-4597 Fix NPE when download diagnosis info for a job

Posted by ni...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

nic pushed a commit to branch v3.1.0-release
in repository https://gitbox.apache.org/repos/asf/kylin.git

commit 6d5f5b0aba1207e2a187bd4e9d2428ad5e09ca51
Author: Zhichao Zhang <44...@qq.com>
AuthorDate: Mon Jun 22 23:41:08 2020 +0800

    KYLIN-4597 Fix NPE when download diagnosis info for a job
    
    Problems:
    When download diagnosis info for a job, it throws NPE.
    
    Solutions:
    Don't replace '-' to '' for job id, which will change the value of job id and can't find the job.
---
 .../src/main/java/org/apache/kylin/common/util/CliCommandExecutor.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core-common/src/main/java/org/apache/kylin/common/util/CliCommandExecutor.java b/core-common/src/main/java/org/apache/kylin/common/util/CliCommandExecutor.java
index 74ea1f9..bb08b4c 100644
--- a/core-common/src/main/java/org/apache/kylin/common/util/CliCommandExecutor.java
+++ b/core-common/src/main/java/org/apache/kylin/common/util/CliCommandExecutor.java
@@ -163,7 +163,7 @@ public class CliCommandExecutor {
         }
     }
 
-    public static final String COMMAND_BLOCK_LIST = "[ &`>|{}()$;\\-#~!+*\\\\]+";
+    public static final String COMMAND_BLOCK_LIST = "[ &`>|{}()$;\\#~!+*\\\\]+";
     public static final String COMMAND_WHITE_LIST = "[^\\w%,@/:=?.\"\\[\\]]";
     public static final String HIVE_BLOCK_LIST = "[ <>()$;\\-#!+*\"'/=%@]+";