You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by ah...@apache.org on 2016/11/14 06:15:14 UTC

svn commit: r1769567 [2/2] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/search_data.json
URL: http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/search_data.json?rev=1769567&r1=1769566&r2=1769567&view=diff
==============================================================================
--- zeppelin/site/docs/0.7.0-SNAPSHOT/search_data.json (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/search_data.json Mon Nov 14 06:15:13 2016
@@ -290,6 +290,17 @@
     
   
 
+    "/interpreter/kylin.html": {
+      "title": "Apache Kylin Interpreter for Apache Zeppelin",
+      "content"  : "<!--Licensed under the Apache License, Version 2.0 (the "License");you may not use this file except in compliance with the License.You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, softwaredistributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions andlimitations under the License.-->Apache Kylin Interpreter for Apache ZeppelinOverviewApache Kylin is an open source Distributed Analytics Engine designed to provide SQL interface and multi-dimensional analysis (OLAP) on Hadoop supporting extremely large datasets, original contributed from eBay Inc. The interpreter assumes that Apache Kylin has been installed and you can connect to Apache Kylin from the machine Apache Zeppelin is installed.To get start with Apache 
 Kylin, please see Apache Kylin Quickstart.Configuration      Name    Default    Description        kylin.api.url     http://localhost:7070/kylin/api/query    kylin query POST API  The format can be like http://<host>:<port>/kylin/api/query        kylin.api.user    ADMIN    kylin user        kylin.api.password    KYLIN    kylin password        kylin.query.project    learn_kylin    String, Project to perform query.        kylin.query.ispartial    true    true|false  (@Deprecated since Apache Kylin V1.5)  Whether accept a partial result or not, default be “false”. Set to “false” for production use.        kylin.query.limit    5000    int, Query limit  If limit is set in sql, perPage will be ignored.        kylin.query.offset    0    int, Query offset  If offset is set in sql, curIndex will be ignored.    Using the Apache Kylin InterpreterIn a paragraph, use %kylin to select the kylin interpreter and then input sql.%kylinselect count(*) fr
 om kylin_sales group by part_dt",
+      "url": " /interpreter/kylin.html",
+      "group": "interpreter",
+      "excerpt": "Apache Kylin™ is an open source Distributed Analytics Engine designed to provide SQL interface and multi-dimensional analysis (OLAP) on Hadoop supporting extremely large datasets, original contributed from eBay Inc. ."
+    }
+    ,
+    
+  
+
     "/interpreter/lens.html": {
       "title": "Lens Interpreter for Apache Zeppelin",
       "content"  : "<!--Licensed under the Apache License, Version 2.0 (the "License");you may not use this file except in compliance with the License.You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, softwaredistributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions andlimitations under the License.-->Lens Interpreter for Apache ZeppelinOverviewApache Lens provides an Unified Analytics interface. Lens aims to cut the Data Analytics silos by providing a single view of data across multiple tiered data stores and optimal execution environment for the analytical query. It seamlessly integrates Hadoop with traditional data warehouses to appear like one.Installing and Running LensIn order to use Lens interpreters, you may install Apac
 he Lens in some simple steps:Download Lens for latest version from the ASF. Or the older release can be found in the Archives.Before running Lens, you have to set HIVEHOME and HADOOPHOME. If you want to get more information about this, please refer to here. Lens also provides Pseudo Distributed mode. Lens pseudo-distributed setup is done by using docker. Hive server and hadoop daemons are run as separate processes in lens pseudo-distributed setup.Now, you can start lens server (or stop)../bin/lens-ctl start (or stop)Configuring Lens InterpreterAt the "Interpreters" menu, you can edit Lens interpreter or create new one. Zeppelin provides these properties for Lens.      Property Name    value    Description        lens.client.dbname    default    The database schema name        lens.query.enable.persistent.resultset    false    Whether to enable persistent resultset for queries. When enabled, server will fetch results from driver, custom format them if any and store 
 in a configured location. The file name of query output is queryhandle-id, with configured extensions        lens.server.base.url    http://hostname:port/lensapi    The base url for the lens server. you have to edit "hostname" and "port" that you may use(ex. http://0.0.0.0:9999/lensapi)          lens.session.cluster.user     default    Hadoop cluster username        zeppelin.lens.maxResult    1000    Max number of rows to display        zeppelin.lens.maxThreads    10    If concurrency is true then how many threads?        zeppelin.lens.run.concurrent    true    Run concurrent Lens Sessions        xxx    yyy    anything else from [Configuring lens server](https://lens.apache.org/admin/config-server.html)  Interpreter Binding for Zeppelin NotebookAfter configuring Lens interpreter, create your own notebook, then you can bind interpreters like below image.For more interpreter binding information see here.How to useYou can analyze your data by using OLAP Cube QL whic
 h is a high level SQL like language to query and describe data sets organized in data cubes.You may experience OLAP Cube like this Video tutorial.As you can see in this video, they are using Lens Client Shell(./bin/lens-cli.sh). All of these functions also can be used on Zeppelin by using Lens interpreter. Create and Use(Switch) Databases.create database newDbuse newDb Create Storage.create storage your/path/to/lens/client/examples/resources/db-storage.xml Create Dimensions, Show fields and join-chains of them.create dimension your/path/to/lens/client/examples/resources/customer.xmldimension show fields customerdimension show joinchains customer Create Caches, Show fields and join-chains of them.create cube your/path/to/lens/client/examples/resources/sales-cube.xmlcube show fields salescube show joinchains sales Create Dimtables and Fact.create dimtable your/path/to/lens/client/examples/resources/customer_table.xmlcreate fact your/path/to/lens/client/examples/resources/sales-raw-fac
 t.xml Add partitions to Dimtable and Fact.dimtable add single-partition --dimtable_name customer_table --storage_name local --path your/path/to/lens/client/examples/resources/customer-local-part.xmlfact add partitions --fact_name sales_raw_fact --storage_name local --path your/path/to/lens/client/examples/resources/sales-raw-local-parts.xml Now, you can run queries on cubes.query execute cube select customer_city_name, product_details.description, product_details.category, product_details.color, store_sales from sales where time_range_in(delivery_time, '2015-04-11-00', '2015-04-13-00')These are just examples that provided in advance by Lens. If you want to explore whole tutorials of Lens, see the tutorial video.Lens UI ServiceLens also provides web UI service. Once the server starts up, you can open the service on http://serverhost:19999/index.html and browse. You may also check the structure that you made and use query easily here.",

Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/security/authentication.html
URL: http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/security/authentication.html?rev=1769567&r1=1769566&r2=1769567&view=diff
==============================================================================
--- zeppelin/site/docs/0.7.0-SNAPSHOT/security/authentication.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/security/authentication.html Mon Nov 14 06:15:13 2016
@@ -107,6 +107,7 @@
                 <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/hive.html">Hive</a></li>
                 <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/ignite.html">Ignite</a></li>
                 <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/jdbc.html">JDBC</a></li>
+                <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/kylin.html">Kylin</a></li>
                 <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/lens.html">Lens</a></li>
                 <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/livy.html">Livy</a></li>
                 <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/markdown.html">Markdown</a></li>

Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/security/datasource_authorization.html
URL: http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/security/datasource_authorization.html?rev=1769567&r1=1769566&r2=1769567&view=diff
==============================================================================
--- zeppelin/site/docs/0.7.0-SNAPSHOT/security/datasource_authorization.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/security/datasource_authorization.html Mon Nov 14 06:15:13 2016
@@ -107,6 +107,7 @@
                 <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/hive.html">Hive</a></li>
                 <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/ignite.html">Ignite</a></li>
                 <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/jdbc.html">JDBC</a></li>
+                <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/kylin.html">Kylin</a></li>
                 <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/lens.html">Lens</a></li>
                 <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/livy.html">Livy</a></li>
                 <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/markdown.html">Markdown</a></li>

Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/security/notebook_authorization.html
URL: http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/security/notebook_authorization.html?rev=1769567&r1=1769566&r2=1769567&view=diff
==============================================================================
--- zeppelin/site/docs/0.7.0-SNAPSHOT/security/notebook_authorization.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/security/notebook_authorization.html Mon Nov 14 06:15:13 2016
@@ -107,6 +107,7 @@
                 <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/hive.html">Hive</a></li>
                 <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/ignite.html">Ignite</a></li>
                 <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/jdbc.html">JDBC</a></li>
+                <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/kylin.html">Kylin</a></li>
                 <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/lens.html">Lens</a></li>
                 <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/livy.html">Livy</a></li>
                 <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/markdown.html">Markdown</a></li>

Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/security/shiroauthentication.html
URL: http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/security/shiroauthentication.html?rev=1769567&r1=1769566&r2=1769567&view=diff
==============================================================================
--- zeppelin/site/docs/0.7.0-SNAPSHOT/security/shiroauthentication.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/security/shiroauthentication.html Mon Nov 14 06:15:13 2016
@@ -107,6 +107,7 @@
                 <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/hive.html">Hive</a></li>
                 <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/ignite.html">Ignite</a></li>
                 <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/jdbc.html">JDBC</a></li>
+                <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/kylin.html">Kylin</a></li>
                 <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/lens.html">Lens</a></li>
                 <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/livy.html">Livy</a></li>
                 <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/markdown.html">Markdown</a></li>

Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/sitemap.txt
URL: http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/sitemap.txt?rev=1769567&r1=1769566&r2=1769567&view=diff
==============================================================================
--- zeppelin/site/docs/0.7.0-SNAPSHOT/sitemap.txt (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/sitemap.txt Mon Nov 14 06:15:13 2016
@@ -28,6 +28,7 @@ http://zeppelin.apache.org/interpreter/h
 http://zeppelin.apache.org/interpreter/hive.html
 http://zeppelin.apache.org/interpreter/ignite.html
 http://zeppelin.apache.org/interpreter/jdbc.html
+http://zeppelin.apache.org/interpreter/kylin.html
 http://zeppelin.apache.org/interpreter/lens.html
 http://zeppelin.apache.org/interpreter/livy.html
 http://zeppelin.apache.org/interpreter/mahout.html

Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/storage/storage.html
URL: http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/storage/storage.html?rev=1769567&r1=1769566&r2=1769567&view=diff
==============================================================================
--- zeppelin/site/docs/0.7.0-SNAPSHOT/storage/storage.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/storage/storage.html Mon Nov 14 06:15:13 2016
@@ -107,6 +107,7 @@
                 <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/hive.html">Hive</a></li>
                 <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/ignite.html">Ignite</a></li>
                 <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/jdbc.html">JDBC</a></li>
+                <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/kylin.html">Kylin</a></li>
                 <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/lens.html">Lens</a></li>
                 <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/livy.html">Livy</a></li>
                 <li><a href="/docs/0.7.0-SNAPSHOT/interpreter/markdown.html">Markdown</a></li>