You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by mo...@apache.org on 2016/08/23 04:24:02 UTC

zeppelin git commit: [gh-pages][ZEPPELIN-1216] Add a matrix table for "Zeppelin version X available interpreters"

Repository: zeppelin
Updated Branches:
  refs/heads/gh-pages a98a66bc2 -> 9c9e6bc06


[gh-pages][ZEPPELIN-1216] Add a matrix table for "Zeppelin version X available interpreters"

### What is this PR for?
I added a matrix table for "Zeppelin version X available interpreters(with specific version)" to [zeppelin.apache.org/download.html](zeppelin.apache.org/download.html). Please see the attached screenshot images :)

### What type of PR is it?
Improvement & Documentation

### Todos
* [x] - Change `_site` -> `_site/` in `.gitignore`
* [x] - Update `safe_yaml` version 0.9.7 -> 1.0.4 like `master` branch
* [x] - Add `0.6.1` column

### What is the Jira issue?
[ZEPPELIN-1216](https://issues.apache.org/jira/browse/ZEPPELIN-1216)

### Screenshots (if appropriate)
![matrix](https://cloud.githubusercontent.com/assets/10060731/17693087/29e6bf2a-63d8-11e6-9b2b-7ff0aff587d2.gif)

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: AhyoungRyu <fb...@hanmail.net>

Closes #1208 from AhyoungRyu/gh-page/ZEPPELIN-1216 and squashes the following commits:

d764e9a [AhyoungRyu] Update Spark logo
2a71cf2 [AhyoungRyu] Add 0.6.1 column & Change interpreter orders
f7bc1ef [AhyoungRyu] Remove 'incubating' in _config.yml
f7d428e [AhyoungRyu] Update Gemfile.lock again
9bfbde1 [AhyoungRyu] Change safe_yaml ver 0.9.7->1.0.4 like master
df0ef3c [AhyoungRyu] Address @minahlee's feedback
835e231 [AhyoungRyu] Remove each specific version info except Spark
a9002b3 [AhyoungRyu] Add 'Available interpreter' matrix to download.md
e76bf97 [AhyoungRyu] Change '_site' -> '_site/' in .gitignore


Project: http://git-wip-us.apache.org/repos/asf/zeppelin/repo
Commit: http://git-wip-us.apache.org/repos/asf/zeppelin/commit/9c9e6bc0
Tree: http://git-wip-us.apache.org/repos/asf/zeppelin/tree/9c9e6bc0
Diff: http://git-wip-us.apache.org/repos/asf/zeppelin/diff/9c9e6bc0

Branch: refs/heads/gh-pages
Commit: 9c9e6bc0671fe0ec3eb97cbeb833943a3a36c9d3
Parents: a98a66b
Author: AhyoungRyu <fb...@hanmail.net>
Authored: Thu Aug 18 17:43:34 2016 +0900
Committer: Lee moon soo <mo...@apache.org>
Committed: Mon Aug 22 21:23:59 2016 -0700

----------------------------------------------------------------------
 .gitignore                                |   4 +-
 Gemfile.lock                              |   4 +-
 _config.yml                               |   8 +-
 assets/themes/zeppelin/img/spark_logo.jpg | Bin 32200 -> 25886 bytes
 download.md                               | 229 ++++++++++++++++++++++++-
 5 files changed, 229 insertions(+), 16 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/9c9e6bc0/.gitignore
----------------------------------------------------------------------
diff --git a/.gitignore b/.gitignore
index 2a6877b..516be01 100644
--- a/.gitignore
+++ b/.gitignore
@@ -27,5 +27,5 @@ auto-save-list
 tramp
 .\#*
 
-
-_site
\ No newline at end of file
+# Generated by Jekyll
+_site/
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/9c9e6bc0/Gemfile.lock
----------------------------------------------------------------------
diff --git a/Gemfile.lock b/Gemfile.lock
index 170579e..aaccff9 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -27,7 +27,7 @@ GEM
       maruku (~> 0.6.0)
       pygments.rb (~> 0.5.0)
       redcarpet (~> 2.3.0)
-      safe_yaml (~> 0.9.7)
+      safe_yaml (~> 1.0.4)
     kramdown (1.2.0)
     liquid (2.5.4)
     listen (1.3.1)
@@ -47,7 +47,7 @@ GEM
       ffi (>= 0.5.0)
     rdiscount (2.1.7)
     redcarpet (2.3.0)
-    safe_yaml (0.9.7)
+    safe_yaml (1.0.4)
     syntax (1.0.0)
     yajl-ruby (1.1.0)
 

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/9c9e6bc0/_config.yml
----------------------------------------------------------------------
diff --git a/_config.yml b/_config.yml
index ee0e727..a2241d9 100644
--- a/_config.yml
+++ b/_config.yml
@@ -10,11 +10,11 @@ encoding: utf-8
 # Themes are encouraged to use these universal variables 
 # so be sure to set them if your theme uses them.
 #
-title : Apache Zeppelin (incubating)
+title : Apache Zeppelin
 tagline: Simplify bigdata analytics
 author :
   name : The Apache Software Foundation
-  email : dev@zeppelin.incubator.apache.org
+  email : dev@zeppelin.apache.org
   github : apache
   twitter : ASF
   feedburner : feedname
@@ -27,7 +27,7 @@ author :
 # Else if you are pushing to username.github.io, replace with your username.
 # Finally if you are pushing to a GitHub project page, include the project name at the end.
 #
-production_url : http://zeppelin.incubator.apache.org
+production_url : http://zeppelin.apache.org
 # All Jekyll-Bootstrap specific configurations are namespaced into this hash
 #
 JB :
@@ -104,7 +104,7 @@ JB :
         tracking_id : 'UA-45176241-2'
     google_universal : 
         tracking_id : 'UA-45176241-5'
-        domain : 'zeppelin.incubator.apache.org'
+        domain : 'zeppelin.apache.org'
     getclicky :
       site_id : 
     mixpanel :

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/9c9e6bc0/assets/themes/zeppelin/img/spark_logo.jpg
----------------------------------------------------------------------
diff --git a/assets/themes/zeppelin/img/spark_logo.jpg b/assets/themes/zeppelin/img/spark_logo.jpg
index a13c870..afe2d1b 100644
Binary files a/assets/themes/zeppelin/img/spark_logo.jpg and b/assets/themes/zeppelin/img/spark_logo.jpg differ

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/9c9e6bc0/download.md
----------------------------------------------------------------------
diff --git a/download.md b/download.md
index e6fa4a5..cc146ff 100644
--- a/download.md
+++ b/download.md
@@ -19,7 +19,7 @@ limitations under the License.
 -->
 {% include JB/setup %}
 
-### Download Apache Zeppelin
+# Download Apache Zeppelin
 
 The latest release of Apache Zeppelin is **0.6.1**.
 
@@ -48,19 +48,19 @@ The latest release of Apache Zeppelin is **0.6.1**.
     </blockquote>
 
 
-### Verify the integrity of the files
+## Verify the integrity of the files
 
 It is essential that you [verify](https://www.apache.org/info/verification.html) the integrity of the downloaded files using the PGP or MD5 signatures. This signature should be matched against the [KEYS](https://www.apache.org/dist/zeppelin/KEYS) file.
 
 
 
-### Build from source
+## Build from source
 
 For developers, to get latest *0.7.0-SNAPSHOT* check [README](https://github.com/apache/zeppelin/blob/master/README.md).
 
 
 
-### Old releases
+## Old releases
 
   - 0.6.0 released on Jul 2, 2016 ([release notes](./releases/zeppelin-release-0.6.0.html)) ([git tag](https://git-wip-us.apache.org/repos/asf?p=zeppelin.git;a=commit;h=fa2c0ff93cca49428df8792e7ee35d2b561669bd))
 
@@ -136,10 +136,223 @@ For developers, to get latest *0.7.0-SNAPSHOT* check [README](https://github.com
      [md5](http://archive.apache.org/dist/incubator/zeppelin/0.5.0-incubating/zeppelin-0.5.0-incubating-bin-spark-1.3.1_hadoop-2.3.tgz.md5),
      [sha](http://archive.apache.org/dist/incubator/zeppelin/0.5.0-incubating/zeppelin-0.5.0-incubating-bin-spark-1.3.1_hadoop-2.3.tgz.sha))
 
-
-
-
-
+## Available interpreters
+
+Thanks to many Zeppelin contributors, we can provide much more interpreters in every release.
+Please check the below table before you download Zeppelin package.
+
+> **Note :** Only Spark interpreter is included in the netinst binary package by default. If you want to use the other interpreters, you need to install them using net-install script.
+
+<table class="table-configuration" style="text-align:center" id="comparing-version">
+  <tr>
+    <th style="width:10%">Zeppelin</th>
+    <th style="width:22%">0.6.1 (latest)</th>
+    <th style="width:22%">0.6.0</th>
+    <th style="width:22%">0.5.6</th>
+    <th style="width:22%">0.5.5</th>
+  </tr>
+  <tr>
+    <td rowspan="2"><a href="http://spark.apache.org/" target="_blank">Spark</a></td>
+    <td>
+        1.1.x, 1.2.x, 1.3.x 1.4.x, 1.5.x, 1.6.x, <strong>2.0.0</strong>
+    </td>
+    <td>
+        1.1.x, 1.2.x, 1.3.x 1.4.x, 1.5.x, 1.6.x
+    </td>
+    <td rowspan="2">
+        1.1.x, 1.2.x, 1.3.x 1.4.x, 1.5.x, 1.6.x
+    </td>
+    <td rowspan="2">
+        1.1.x, 1.2.x, 1.3.x 1.4.x, 1.5.x
+    </td>
+  </tr>
+  <tr> 
+    <td>Support Scala 2.11</td>
+    <td>SparkR is also available</td>
+  </tr>
+  <tr>
+    <td>JDBC</td>
+    <td>
+      <a href="http://www.postgresql.org/" target="_blank">PostgreSQL</a>,
+      <a href="https://www.mysql.com/" target="_blank">MySQL</a>,
+      <a href="https://mariadb.org/" target="_blank">MariaDB</a>,
+      <a href="https://aws.amazon.com/documentation/redshift/" target="_blank">Redshift</a>,
+      <br/>
+      <a href="https://hive.apache.org/" target="_blank">Hive</a>,
+      <a href="https://phoenix.apache.org/" target="_blank">Phoenix</a>,
+      <a href="https://drill.apache.org/" target="_blank">Drill</a>,
+      <a href="http://tajo.apache.org/" target="_blank">Tajo</a> 
+      are available
+    </td>
+    <td>
+      <a href="http://www.postgresql.org/" target="_blank">PostgreSQL</a>,
+      <a href="https://www.mysql.com/" target="_blank">MySQL</a>,
+      <a href="https://mariadb.org/" target="_blank">MariaDB</a>,
+      <a href="https://aws.amazon.com/documentation/redshift/" target="_blank">Redshift</a>,
+      <br/>
+      <a href="https://hive.apache.org/" target="_blank">Hive</a>,
+      <a href="https://phoenix.apache.org/" target="_blank">Phoenix</a>,
+      <a href="https://drill.apache.org/" target="_blank">Drill</a>,
+      <a href="http://tajo.apache.org/" target="_blank">Tajo</a> 
+      are available
+    </td>
+    <td>N/A</td>
+    <td>N/A</td>
+  </tr>
+  <tr>
+    <td><a href="https://cloud.google.com/bigquery/" target="_blank">BigQuery</a></td>
+    <td>O</td>
+    <td>N/A</td>
+    <td>N/A</td>
+    <td>N/A</td>
+  </tr>
+  <tr>
+    <td><a href="https://www.python.org/" target="_blank">Python</a></td>
+    <td>O</td>
+    <td>O</td>
+    <td>N/A</td>
+    <td>N/A</td>
+  </tr>
+  <tr>
+    <td><a href="http://livy.io/" target="_blank">Livy</a></td>
+    <td>O</td>
+    <td>O</td>
+    <td>N/A</td>
+    <td>N/A</td>
+  </tr>
+  <tr>
+    <td><a href="https://hadoop.apache.org/docs/stable/hadoop-project-dist/hadoop-hdfs/HdfsUserGuide.html" target="_blank">HDFS</a></td>
+    <td>O</td>
+    <td>O</td>
+    <td>N/A</td>
+    <td>N/A</td>
+  </tr>
+  <tr>
+    <td><a href="http://www.alluxio.org/" target="_blank">Alluxio</a></td>
+    <td>O</td>
+    <td>O</td>
+    <td>N/A</td>
+    <td>N/A</td>
+  </tr>
+  <tr>
+    <td><a href="https://hbase.apache.org/" target="_blank">Hbase</a></td>
+    <td>O</td>
+    <td>O</td>
+    <td>N/A</td>
+    <td>N/A</td>
+  </tr>
+  <tr>
+    <td>
+        <a href="https://github.com/twitter/scalding" target="_blank">Scalding</a><br/>
+        <span style="font-size:75%">Local mode only, not included in binary package</span>
+    </td>
+    <td>O</td>
+    <td>O</td>
+    <td>O</td>
+    <td>N/A</td>
+  </tr>
+  <tr>
+    <td><a href="https://www.elastic.co/products/elasticsearch" target="_blank">Elasticsearch</a></td>
+    <td>O</td>
+    <td>O</td>
+    <td>O</td>
+    <td>N/A</td>
+  </tr>
+  <tr>
+    <td><a href="https://angularjs.org/" target="_blank">Angular</a></td>
+    <td>O</td>
+    <td>O</td>
+    <td>O</td>
+    <td>O</td>
+  </tr>
+  <tr>
+    <td><a href="https://daringfireball.net/projects/markdown/" target="_blank">Markdown</a></td>
+    <td>O</td>
+    <td>O</td>
+    <td>O</td>
+    <td>O</td>
+  </tr>
+  <tr>
+    <td><a href="https://commons.apache.org/" target="_blank">Shell</a></td>
+    <td>O</td>
+    <td>O</td>
+    <td>O</td>
+    <td>O</td>
+  </tr>
+  <tr>
+    <td><a href="https://flink.apache.org/" target="_blank">Flink</a></td>
+    <td>O</td>
+    <td>O</td>
+    <td>O</td>
+    <td>O</td>
+  </tr>
+  <tr>
+    <td><a href="https://hive.apache.org/" target="_blank">Hive</a></td>
+    <td>Merged into JDBC interpreter</td>
+    <td>Merged into JDBC interpreter</td>
+    <td>O</td>
+    <td>O</td>
+  </tr>
+  <tr>
+    <td><a href="http://tajo.apache.org/" target="_blank">Tajo</a></td>
+    <td>Merged into JDBC interpreter</td>
+    <td>Merged into JDBC interpreter</td>
+    <td>O</td>
+    <td>O</td>
+  </tr>
+  <tr>
+    <td><a href="http://cassandra.apache.org/" target="_blank">Cassandra</a></td>
+    <td>O</td>
+    <td>O</td>
+    <td>O</td>
+    <td>O</td>
+  </tr>
+  <tr>
+    <td>
+        <a href="http://geode.incubator.apache.org/" target="_blank">Geode</a><br/>
+        <span style="font-size:75%">Local mode only, not included in binary package</span>
+    </td>
+    <td>O</td>
+    <td>O</td>
+    <td>O</td>
+    <td>O</td>
+  </tr>
+  <tr>
+    <td><a href="https://ignite.apache.org/" target="_blank">Ignite</a></td>
+    <td>O</td>
+    <td>O</td>
+    <td>O</td>
+    <td>O</td>
+  </tr>
+  <tr>
+    <td><a href="http://kylin.apache.org/" target="_blank">Kylin</a></td>
+    <td>O</td>
+    <td>O</td>
+    <td>O</td>
+    <td>O</td>
+  </tr>
+  <tr>
+    <td><a href="https://lens.apache.org/" target="_blank">Lens</a></td>
+    <td>O</td>
+    <td>O</td>
+    <td>O</td>
+    <td>O</td>
+  </tr>
+  <tr>
+    <td><a href="https://phoenix.apache.org/" target="_blank">Phoenix</a></td>
+    <td>Merged into JDBC interpreter</td>
+    <td>Merged into JDBC interpreter</td>
+    <td>O</td>
+    <td>O</td>
+  </tr>
+  <tr>
+    <td><a href="http://www.postgresql.org/" target="_blank">PostgreSQL</a></td>
+    <td>O</td>
+    <td>O</td>
+    <td>O</td>
+    <td>O</td>
+  </tr>
+</table>
 
 <!--
 -------------