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 2019/01/30 01:06:59 UTC

[kylin] branch document updated: update kafka tutorial and download page

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 699eca8  update kafka tutorial and download page
699eca8 is described below

commit 699eca8f10992d4b92a3045dbcae48fe0d739a8d
Author: shaofengshi <sh...@apache.org>
AuthorDate: Wed Jan 30 09:06:49 2019 +0800

    update kafka tutorial and download page
---
 website/_docs/install/index.cn.md           |  2 +-
 website/_docs/install/index.md              |  2 +-
 website/_docs/tutorial/cube_streaming.cn.md | 21 ++++++++++-----------
 website/_docs/tutorial/cube_streaming.md    | 21 ++++++++++-----------
 website/download/index.cn.md                |  8 ++++----
 website/download/index.md                   |  8 ++++----
 6 files changed, 30 insertions(+), 32 deletions(-)

diff --git a/website/_docs/install/index.cn.md b/website/_docs/install/index.cn.md
index d762f9c..125b4e6 100644
--- a/website/_docs/install/index.cn.md
+++ b/website/_docs/install/index.cn.md
@@ -11,7 +11,7 @@ permalink: /cn/docs/install/index.html
 * Hive: 0.13 - 1.2.1+
 * HBase: 1.1+, 2.0 (since v2.5)
 * Spark (可选) 2.1.1+
-* Kafka (可选) 0.10.0+
+* Kafka (可选) 1.0.0+ (since v2.5)
 * JDK: 1.8+ (since v2.5)
 * OS: Linux only, CentOS 6.5+ or Ubuntu 16.0.4+
 
diff --git a/website/_docs/install/index.md b/website/_docs/install/index.md
index 93a8537..76c7520 100644
--- a/website/_docs/install/index.md
+++ b/website/_docs/install/index.md
@@ -11,7 +11,7 @@ permalink: /docs/install/index.html
 * Hive: 0.13 - 1.2.1+
 * HBase: 1.1+, 2.0 (since v2.5)
 * Spark (optional) 2.1.1+
-* Kafka (optional) 0.10.0+
+* Kafka (optional) 1.0.0+ (since v2.5)
 * JDK: 1.8+ (since v2.5)
 * OS: Linux only, CentOS 6.5+ or Ubuntu 16.0.4+
 
diff --git a/website/_docs/tutorial/cube_streaming.cn.md b/website/_docs/tutorial/cube_streaming.cn.md
index 92f1035..cdd6c1c 100644
--- a/website/_docs/tutorial/cube_streaming.cn.md
+++ b/website/_docs/tutorial/cube_streaming.cn.md
@@ -7,22 +7,21 @@ permalink: /cn/docs/tutorial/cube_streaming.html
 Kylin v1.6 发布了可扩展的 streaming cubing 功能,它利用 Hadoop 消费 Kafka 数据的方式构建 cube,您可以查看 [这篇博客](/blog/2016/10/18/new-nrt-streaming/) 以进行高级别的设计。本文档是一步接一步的阐述如何创建和构建样例 cube 的教程;
 
 ## 前期准备
-您需要一个安装了 kylin v1.6.0 或以上版本和可运行的 Kafka(v0.10.0 或以上版本)的 Hadoop 环境。
+您需要一个安装了 kylin v1.6.0 或以上版本和可运行的 Kafka; 自 kylin v2.5 开始,需要 Kafka v1.0.0 或以上版本。
 
-本教程中我们使用 Hortonworks HDP 2.2.4 Sandbox VM + Kafka v0.10.0(Scala 2.10) 作为环境。
+本教程中我们使用 Hortonworks HDP 2.2.4 Sandbox VM + Kafka v1.0.2(Scala 2.11) 作为环境。
 
-## 安装 Kafka 0.10.0.0 和 Kylin
-不要使用 HDP 2.2.4 自带的 Kafka,因为它太旧了,如果其运行着请先停掉。
+## 安装 Kafka 1.0.2 和 Kylin
+不要使用 HDP 2.2.4 自带的 Kafka,因为它太旧了,如果其运行着请先停掉。然后前往 Kafka 项目下载其二进制包到本地 /usr/local/。
 {% highlight Groff markup %}
-curl -s https://archive.apache.org/dist/kafka/0.10.0.0/kafka_2.10-0.10.0.0.tgz | tar -xz -C /usr/local/
-
-cd /usr/local/kafka_2.10-0.10.0.0/
+tar -zxvf kafka_2.11-1.0.2.tgz
+cd kafka_2.11-1.0.2
 
 bin/kafka-server-start.sh config/server.properties &
 
 {% endhighlight %}
 
-从下载页下载 Kylin v1.6,在 /usr/local/ 文件夹中解压 tar 包。
+从下载页下载 Kylin,在 /usr/local/ 文件夹中解压 tar 包。
 
 ## 创建样例 Kafka topic 并填充数据
 
@@ -37,14 +36,14 @@ Created topic "kylin_streaming_topic".
 将样例数据放入 topic;Kylin 有一个实用类可以做这项工作;
 
 {% highlight Groff markup %}
-export KAFKA_HOME=/usr/local/kafka_2.10-0.10.0.0
-export KYLIN_HOME=/usr/local/apache-kylin-2.1.0-bin
+export KAFKA_HOME=/usr/local/kafka_2.11-1.0.2
+export KYLIN_HOME=/usr/local/apache-kylin-2.6.0-bin
 
 cd $KYLIN_HOME
 ./bin/kylin.sh org.apache.kylin.source.kafka.util.KafkaSampleProducer --topic kylin_streaming_topic --broker localhost:9092
 {% endhighlight %}
 
-工具每一秒会向 Kafka 发送 100 条记录。直至本教程结束请让其一直运行。现在您可以用 kafka-console-consumer.sh 查看样例消息:
+工具每一秒会向 Kafka 发送 100 条记录 (v2.6.0 此处有一个bug:KYLIN-3793)。直至本教程结束请让其一直运行。现在您可以用 kafka-console-consumer.sh 查看样例消息:
 
 {% highlight Groff markup %}
 cd $KAFKA_HOME
diff --git a/website/_docs/tutorial/cube_streaming.md b/website/_docs/tutorial/cube_streaming.md
index 27f1924..5778449 100644
--- a/website/_docs/tutorial/cube_streaming.md
+++ b/website/_docs/tutorial/cube_streaming.md
@@ -7,22 +7,21 @@ permalink: /docs/tutorial/cube_streaming.html
 Kylin v1.6 releases the scalable streaming cubing function, it leverages Hadoop to consume the data from Kafka to build the cube, you can check [this blog](/blog/2016/10/18/new-nrt-streaming/) for the high level design. This doc is a step by step tutorial, illustrating how to create and build a sample cube;
 
 ## Preparation
-To finish this tutorial, you need a Hadoop environment which has kylin v1.6.0 or above installed, and also have a Kafka (v0.10.0 or above) running.
+To finish this tutorial, you need a Hadoop environment which has kylin v1.6.0 or above installed; Since kylin v2.5.0, it needs a Kafka v1.0.0 or above.
 
-In this tutorial, we will use Hortonworks HDP 2.2.4 Sandbox VM + Kafka v0.10.0(Scala 2.10) as the environment.
+In this tutorial, we will use Hortonworks HDP 2.2.4 Sandbox VM + Kafka v1.0.2(Scala 2.11) as the environment.
 
-## Install Kafka 0.10.0.0 and Kylin
-Don't use HDP 2.2.4's build-in Kafka as it is too old, stop it first if it is running.
+## Install Kafka and Kylin
+Don't use HDP 2.2.4's build-in Kafka as it is too old, stop it first if it is running. Please download Kafka 1.0 binary package from Kafka project page, and then uncompress it under a folder like /usr/local/.
 {% highlight Groff markup %}
-curl -s https://archive.apache.org/dist/kafka/0.10.0.0/kafka_2.10-0.10.0.0.tgz | tar -xz -C /usr/local/
-
-cd /usr/local/kafka_2.10-0.10.0.0/
+tar -zxvf 
+cd /usr/local/kafka_2.11-1.0.2
 
 bin/kafka-server-start.sh config/server.properties &
 
 {% endhighlight %}
 
-Download the Kylin v1.6 from download page, expand the tar ball in /usr/local/ folder.
+Download the Kylin, expand the tar ball in /usr/local/ folder.
 
 ## Create sample Kafka topic and populate data
 
@@ -37,14 +36,14 @@ Created topic "kylin_streaming_topic".
 Put sample data to this topic; Kylin has an utility class which can do this;
 
 {% highlight Groff markup %}
-export KAFKA_HOME=/usr/local/kafka_2.10-0.10.0.0
-export KYLIN_HOME=/usr/local/apache-kylin-2.1.0-bin
+export KAFKA_HOME=/usr/local/kafka_2.11-1.0.2
+export KYLIN_HOME=/usr/local/apache-kylin-2.6.0-bin
 
 cd $KYLIN_HOME
 ./bin/kylin.sh org.apache.kylin.source.kafka.util.KafkaSampleProducer --topic kylin_streaming_topic --broker localhost:9092
 {% endhighlight %}
 
-This tool will send 100 records to Kafka every second. Please keep it running during this tutorial. You can check the sample message with kafka-console-consumer.sh now:
+This tool will send 100 records to Kafka every second (there is a bug in v2.6.0 on this, please check KYLIN-3793). Please keep it running during this tutorial. You can check the sample message with kafka-console-consumer.sh now:
 
 {% highlight Groff markup %}
 cd $KAFKA_HOME
diff --git a/website/download/index.cn.md b/website/download/index.cn.md
index d6c7aa9..92d6832 100644
--- a/website/download/index.cn.md
+++ b/website/download/index.cn.md
@@ -11,11 +11,11 @@ title: 下载
 - 源码下载: [apache-kylin-2.6.0-source-release.zip](https://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-2.6.0/apache-kylin-2.6.0-source-release.zip) \[[asc](https://www.apache.org/dist/kylin/apache-kylin-2.6.0/apache-kylin-2.6.0-source-release.zip.asc)\] \[[sha256](https://www.apache.org/dist/kylin/apache-kylin-2.6.0/apache-kylin-2.6.0-source-release.zip.sha256)\]
 - Hadoop 2 二进制包:
   - for HBase 1.x (includes HDP 2.3+, AWS EMR 5.0+, Azure HDInsight 3.4 - 3.6) - [apache-kylin-2.6.0-bin-hbase1x.tar.gz](https://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-2.6.0/apache-kylin-2.6.0-bin-hbase1x.tar.gz) \[[asc](https://www.apache.org/dist/kylin/apache-kylin-2.6.0/apache-kylin-2.6.0-bin-hbase1x.tar.gz.asc)\] \[[sha256](https://www.apache.org/dist/kylin/apache-kylin-2.6.0/apache-kylin-2.6.0-bin-hbase1x.tar.gz.sha256)\]
-  - for CDH 5.7+ - [apache-kylin-2.6.0-bin-cdh57.tar.gz](https://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-2.6.0/apache-kylin-2.6.0-bin-cdh57.tar.gz) \[[asc](https://www.apache.org/dist/kylin/apache-kylin-2.6.0/apache-kylin-2.6.0-bin-cdh57.tar.gz.asc)\] \[[sha256](https://www.apache.org/dist/kylin/apache-kylin-2.6.0/apache-kylin-2.6.0-bin-cdh57.tar.gz.sha256)\]
+  - for Cloudera CDH 5.7+ - [apache-kylin-2.6.0-bin-cdh57.tar.gz](https://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-2.6.0/apache-kylin-2.6.0-bin-cdh57.tar.gz) \[[asc](https://www.apache.org/dist/kylin/apache-kylin-2.6.0/apache-kylin-2.6.0-bin-cdh57.tar.gz.asc)\] \[[sha256](https://www.apache.org/dist/kylin/apache-kylin-2.6.0/apache-kylin-2.6.0-bin-cdh57.tar.gz.sha256)\]
 
 - Hadoop 3 二进制包:
   - for Hadoop 3.1 + HBase 2.0 (includes Hortonworks HDP 3.0) - [apache-kylin-2.6.0-bin-hadoop3.tar.gz](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.6.0-rc1/apache-kylin-2.6.0-bin-hadoop3.tar.gz) \[[asc](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.6.0-rc1/apache-kylin-2.6.0-bin-hadoop3.tar.gz.asc)\] \[[sha256](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.6.0-rc1/apache-kylin-2.6.0-bin-hadoop3.tar.gz.sha256)\]
-  - for CDH 6.0/6.1 - [apache-kylin-2.6.0-bin-cdh60.tar.gz](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.6.0-rc1/apache-kylin-2.6.0-bin-cdh60.tar.gz) \[[asc](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.6.0-rc1/apache-kylin-2.6.0-bin-cdh60.tar.gz.asc)\] \[[sha256](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.6.0-rc1/apache-kylin-2.6.0-bin-cdh60.tar.gz.sha256)\]
+  - for Cloudera CDH 6.0/6.1 (check [KYLIN-3564](https://issues.apache.org/jira/browse/KYLIN-3564) first) - [apache-kylin-2.6.0-bin-cdh60.tar.gz](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.6.0-rc1/apache-kylin-2.6.0-bin-cdh60.tar.gz) \[[asc](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.6.0-rc1/apache-kylin-2.6.0-bin-cdh60.tar.gz.asc)\] \[[sha256](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.6.0-rc1/apache-kylin-2.6.0-bin-cdh60.tar.gz.sha256)\]
 
 #### v2.5.2
 - 这是2.5.1 版本后的一个bugfix发布版本,包含了12 个以及各种改进。关于具体内容请查看发布说明. 
@@ -23,11 +23,11 @@ title: 下载
 - 源码下载: [apache-kylin-2.5.2-source-release.zip](https://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-2.5.2/apache-kylin-2.5.2-source-release.zip) \[[asc](https://www.apache.org/dist/kylin/apache-kylin-2.5.2/apache-kylin-2.5.2-source-release.zip.asc)\] \[[sha256](https://www.apache.org/dist/kylin/apache-kylin-2.5.2/apache-kylin-2.5.2-source-release.zip.sha256)\]
 - 二进制包下载:
   - for HBase 1.x (includes HDP 2.3+, AWS EMR 5.0+, Azure HDInsight 3.4 - 3.6) - [apache-kylin-2.5.2-bin-hbase1x.tar.gz](https://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-2.5.2/apache-kylin-2.5.2-bin-hbase1x.tar.gz) \[[asc](https://www.apache.org/dist/kylin/apache-kylin-2.5.2/apache-kylin-2.5.2-bin-hbase1x.tar.gz.asc)\] \[[sha256](https://www.apache.org/dist/kylin/apache-kylin-2.5.2/apache-kylin-2.5.2-bin-hbase1x.tar.gz.sha256)\]
-  - for CDH 5.7+ - [apache-kylin-2.5.2-bin-cdh57.tar.gz](https://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-2.5.2/apache-kylin-2.5.2-bin-cdh57.tar.gz) \[[asc](https://www.apache.org/dist/kylin/apache-kylin-2.5.2/apache-kylin-2.5.2-bin-cdh57.tar.gz.asc)\] \[[sha256](https://www.apache.org/dist/kylin/apache-kylin-2.5.2/apache-kylin-2.5.2-bin-cdh57.tar.gz.sha256)\]
+  - for Cloudera CDH 5.7+ - [apache-kylin-2.5.2-bin-cdh57.tar.gz](https://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-2.5.2/apache-kylin-2.5.2-bin-cdh57.tar.gz) \[[asc](https://www.apache.org/dist/kylin/apache-kylin-2.5.2/apache-kylin-2.5.2-bin-cdh57.tar.gz.asc)\] \[[sha256](https://www.apache.org/dist/kylin/apache-kylin-2.5.2/apache-kylin-2.5.2-bin-cdh57.tar.gz.sha256)\]
 
 - Hadoop 3 API 二进制包 (beta):
   - for Hadoop 3.1 + HBase 2.0 (includes Hortonworks HDP 3.0) - [apache-kylin-2.5.2-bin-hadoop3.tar.gz](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.5.2-rc2/apache-kylin-2.5.2-bin-hadoop3.tar.gz) \[[asc](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.5.2-rc2/apache-kylin-2.5.2-bin-hadoop3.tar.gz.asc)\] \[[sha256](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.5.2-rc2/apache-kylin-2.5.2-bin-hadoop3.tar.gz.sha256)\]
-  - for CDH 6.0 - [apache-kylin-2.5.2-bin-cdh60.tar.gz](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.5.2-rc2/apache-kylin-2.5.2-bin-cdh60.tar.gz) \[[asc](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.5.2-rc2/apache-kylin-2.5.2-bin-cdh60.tar.gz.asc)\] \[[sha256](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.5.2-rc2/apache-kylin-2.5.2-bin-cdh60.tar.gz.sha256)\]
+  - for Cloudera CDH 6.0 (check [KYLIN-3564](https://issues.apache.org/jira/browse/KYLIN-3564) first) - [apache-kylin-2.5.2-bin-cdh60.tar.gz](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.5.2-rc2/apache-kylin-2.5.2-bin-cdh60.tar.gz) \[[asc](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.5.2-rc2/apache-kylin-2.5.2-bin-cdh60.tar.gz.asc)\] \[[sha256](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.5.2-rc2/apache-kylin-2.5.2-bin-cdh60.tar.gz.sha256)\]
 
 #### JDBC 驱动程序
 
diff --git a/website/download/index.md b/website/download/index.md
index a00e3a0..7310752 100644
--- a/website/download/index.md
+++ b/website/download/index.md
@@ -12,11 +12,11 @@ You can verify the download by following these [procedures](https://www.apache.o
 - Source download: [apache-kylin-2.6.0-source-release.zip](https://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-2.6.0/apache-kylin-2.6.0-source-release.zip) \[[asc](https://www.apache.org/dist/kylin/apache-kylin-2.6.0/apache-kylin-2.6.0-source-release.zip.asc)\] \[[sha256](https://www.apache.org/dist/kylin/apache-kylin-2.6.0/apache-kylin-2.6.0-source-release.zip.sha256)\]
 - Binary for Hadoop 2 download:
   - for HBase 1.x (includes HDP 2.3+, AWS EMR 5.0+, Azure HDInsight 3.4 - 3.6) - [apache-kylin-2.6.0-bin-hbase1x.tar.gz](https://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-2.6.0/apache-kylin-2.6.0-bin-hbase1x.tar.gz) \[[asc](https://www.apache.org/dist/kylin/apache-kylin-2.6.0/apache-kylin-2.6.0-bin-hbase1x.tar.gz.asc)\] \[[sha256](https://www.apache.org/dist/kylin/apache-kylin-2.6.0/apache-kylin-2.6.0-bin-hbase1x.tar.gz.sha256)\]
-  - for CDH 5.7+ - [apache-kylin-2.6.0-bin-cdh57.tar.gz](https://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-2.6.0/apache-kylin-2.6.0-bin-cdh57.tar.gz) \[[asc](https://www.apache.org/dist/kylin/apache-kylin-2.6.0/apache-kylin-2.6.0-bin-cdh57.tar.gz.asc)\] \[[sha256](https://www.apache.org/dist/kylin/apache-kylin-2.6.0/apache-kylin-2.6.0-bin-cdh57.tar.gz.sha256)\]
+  - for Cloudera CDH 5.7+ - [apache-kylin-2.6.0-bin-cdh57.tar.gz](https://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-2.6.0/apache-kylin-2.6.0-bin-cdh57.tar.gz) \[[asc](https://www.apache.org/dist/kylin/apache-kylin-2.6.0/apache-kylin-2.6.0-bin-cdh57.tar.gz.asc)\] \[[sha256](https://www.apache.org/dist/kylin/apache-kylin-2.6.0/apache-kylin-2.6.0-bin-cdh57.tar.gz.sha256)\]
 
 - Binary for Hadoop 3 download:
   - for Hadoop 3.1 + HBase 2.0 (includes Hortonworks HDP 3.0) - [apache-kylin-2.6.0-bin-hadoop3.tar.gz](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.6.0-rc1/apache-kylin-2.6.0-bin-hadoop3.tar.gz) \[[asc](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.6.0-rc1/apache-kylin-2.6.0-bin-hadoop3.tar.gz.asc)\] \[[sha256](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.6.0-rc1/apache-kylin-2.6.0-bin-hadoop3.tar.gz.sha256)\]
-  - for CDH 6.0/6.1 - [apache-kylin-2.6.0-bin-cdh60.tar.gz](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.6.0-rc1/apache-kylin-2.6.0-bin-cdh60.tar.gz) \[[asc](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.6.0-rc1/apache-kylin-2.6.0-bin-cdh60.tar.gz.asc)\] \[[sha256](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.6.0-rc1/apache-kylin-2.6.0-bin-cdh60.tar.gz.sha256)\]
+  - for Cloudera CDH 6.0/6.1 (check [KYLIN-3564](https://issues.apache.org/jira/browse/KYLIN-3564) first) - [apache-kylin-2.6.0-bin-cdh60.tar.gz](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.6.0-rc1/apache-kylin-2.6.0-bin-cdh60.tar.gz) \[[asc](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.6.0-rc1/apache-kylin-2.6.0-bin-cdh60.tar.gz.asc)\] \[[sha256](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.6.0-rc1/apache-kylin-2.6.0-bin-cdh60.tar.gz.sha256)\]
 
 #### v2.5.2
 - This is a bugfix release after 2.5.1, with 12 bug fixes and enhancement. Check the release notes. 
@@ -24,11 +24,11 @@ You can verify the download by following these [procedures](https://www.apache.o
 - Source download: [apache-kylin-2.5.2-source-release.zip](https://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-2.5.2/apache-kylin-2.5.2-source-release.zip) \[[asc](https://www.apache.org/dist/kylin/apache-kylin-2.5.2/apache-kylin-2.5.2-source-release.zip.asc)\] \[[sha256](https://www.apache.org/dist/kylin/apache-kylin-2.5.2/apache-kylin-2.5.2-source-release.zip.sha256)\]
 - Binary download:
   - for HBase 1.x (includes HDP 2.3+, AWS EMR 5.0+, Azure HDInsight 3.4 - 3.6) - [apache-kylin-2.5.2-bin-hbase1x.tar.gz](https://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-2.5.2/apache-kylin-2.5.2-bin-hbase1x.tar.gz) \[[asc](https://www.apache.org/dist/kylin/apache-kylin-2.5.2/apache-kylin-2.5.2-bin-hbase1x.tar.gz.asc)\] \[[sha256](https://www.apache.org/dist/kylin/apache-kylin-2.5.2/apache-kylin-2.5.2-bin-hbase1x.tar.gz.sha256)\]
-  - for CDH 5.7+ - [apache-kylin-2.5.2-bin-cdh57.tar.gz](https://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-2.5.2/apache-kylin-2.5.2-bin-cdh57.tar.gz) \[[asc](https://www.apache.org/dist/kylin/apache-kylin-2.5.2/apache-kylin-2.5.2-bin-cdh57.tar.gz.asc)\] \[[sha256](https://www.apache.org/dist/kylin/apache-kylin-2.5.2/apache-kylin-2.5.2-bin-cdh57.tar.gz.sha256)\]
+  - for Cloudera CDH 5.7+ - [apache-kylin-2.5.2-bin-cdh57.tar.gz](https://www.apache.org/dyn/closer.cgi/kylin/apache-kylin-2.5.2/apache-kylin-2.5.2-bin-cdh57.tar.gz) \[[asc](https://www.apache.org/dist/kylin/apache-kylin-2.5.2/apache-kylin-2.5.2-bin-cdh57.tar.gz.asc)\] \[[sha256](https://www.apache.org/dist/kylin/apache-kylin-2.5.2/apache-kylin-2.5.2-bin-cdh57.tar.gz.sha256)\]
 
 - Hadoop 3 API binary packages (for beta):
   - for Hadoop 3.1 + HBase 2.0 (includes Hortonworks HDP 3.0) - [apache-kylin-2.5.2-bin-hadoop3.tar.gz](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.5.2-rc2/apache-kylin-2.5.2-bin-hadoop3.tar.gz) \[[asc](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.5.2-rc2/apache-kylin-2.5.2-bin-hadoop3.tar.gz.asc)\] \[[sha256](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.5.2-rc2/apache-kylin-2.5.2-bin-hadoop3.tar.gz.sha256)\]
-  - for CDH 6.0 - [apache-kylin-2.5.2-bin-cdh60.tar.gz](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.5.2-rc2/apache-kylin-2.5.2-bin-cdh60.tar.gz) \[[asc](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.5.2-rc2/apache-kylin-2.5.2-bin-cdh60.tar.gz.asc)\] \[[sha256](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.5.2-rc2/apache-kylin-2.5.2-bin-cdh60.tar.gz.sha256)\]
+  - for Cloudera CDH 6.0 (check [KYLIN-3564](https://issues.apache.org/jira/browse/KYLIN-3564) first) - [apache-kylin-2.5.2-bin-cdh60.tar.gz](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.5.2-rc2/apache-kylin-2.5.2-bin-cdh60.tar.gz) \[[asc](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.5.2-rc2/apache-kylin-2.5.2-bin-cdh60.tar.gz.asc)\] \[[sha256](https://dist.apache.org/repos/dist/dev/kylin/apache-kylin-2.5.2-rc2/apache-kylin-2.5.2-bin-cdh60.tar.gz.sha256)\]
 
 
 #### JDBC Driver