mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
ZEPPELIN-415 document for Apache Kylin Interpreter
This commit is contained in:
parent
2f79852d34
commit
c26fa77f87
2 changed files with 77 additions and 0 deletions
|
|
@ -59,6 +59,7 @@
|
|||
<li><a href="{{BASE_PATH}}/interpreter/hive.html">Hive</a></li>
|
||||
<li><a href="{{BASE_PATH}}/interpreter/ignite.html">Ignite</a></li>
|
||||
<li><a href="{{BASE_PATH}}/interpreter/jdbc.html">JDBC</a></li>
|
||||
<li><a href="{{BASE_PATH}}/interpreter/kylin.html">Kylin</a></li>
|
||||
<li><a href="{{BASE_PATH}}/interpreter/lens.html">Lens</a></li>
|
||||
<li><a href="{{BASE_PATH}}/interpreter/livy.html">Livy</a></li>
|
||||
<li><a href="{{BASE_PATH}}/interpreter/markdown.html">Markdown</a></li>
|
||||
|
|
|
|||
76
docs/interpreter/kylin.md
Normal file
76
docs/interpreter/kylin.md
Normal file
|
|
@ -0,0 +1,76 @@
|
|||
---
|
||||
layout: page
|
||||
title: "Apache Kylin Interpreter for Apache Zeppelin"
|
||||
description: "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.
|
||||
."
|
||||
group: interpreter
|
||||
---
|
||||
<!--
|
||||
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 at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed 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 and
|
||||
limitations under the License.
|
||||
-->
|
||||
{% include JB/setup %}
|
||||
|
||||
# Apache Kylin Interpreter for Apache Zeppelin
|
||||
|
||||
<div id="toc"></div>
|
||||
|
||||
## Overview
|
||||
[Apache Kylin](https://kylin.apache.org/) 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](https://kylin.apache.org/docs15/index.html).
|
||||
|
||||
## Configuration
|
||||
<table class="table-configuration">
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>kylin.api.url </td>
|
||||
<td>kylin query POST API, format like http://<host>:<port>/kylin/api/query</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>kylin.api.user</td>
|
||||
<td>kylin user</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>kylin.api.password</td>
|
||||
<td>kylin password</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>kylin.query.project</td>
|
||||
<td>String, Project to perform query. Default value is ‘DEFAULT’.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>kylin.query.ispartial</td>
|
||||
<td>true|false, (@Deprecated since Apache Kylin V1.5) whether accept a partial result or not, default be “false”. Set to “false” for production use.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>kylin.query.limit</td>
|
||||
<td>int, Query limit. If limit is set in sql, perPage will be ignored.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>kylin.query.offset</td>
|
||||
<td>int, Query offset. If offset is set in sql, curIndex will be ignored.</td>
|
||||
</tr>
|
||||
|
||||
|
||||
</table>
|
||||
|
||||
## Using the Apache Kylin Interpreter
|
||||
In a paragraph, use `%kylin` to select the **kylin** interpreter and then input sql.
|
||||
|
||||
```
|
||||
%kylin
|
||||
select count(*) from kylin_sales group by part_dt
|
||||
```
|
||||
|
||||
Loading…
Reference in a new issue