Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ group: nav-right

**[Interpreters in zeppelin](manual/interpreters.html)**

* [flink](./docs/interpreter/flink.html)
* [flink](./interpreter/flink.html)
* [hive](../docs/pleasecontribute.html)
* [ignite](../docs/pleasecontribute.html)
* [lens](../docs/pleasecontribute.html)
Expand Down
29 changes: 24 additions & 5 deletions docs/docs/interpreter/flink.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,30 @@ Zeppelin comes with pre-configured flink-local interpreter, which starts Flink i
### How to configure interpreter to point to Flink cluster
At the "Interpreters" menu, you have to create a new Flink interpreter and provide next properties:

property | value | Description
---------|----------|-----
host | local | host name of running JobManager. 'local' runs flink in local mode (default)
port | 6123 | port of running JobManager
xxx | yyy | anything else from [Flink Configuration](https://ci.apache.org/projects/flink/flink-docs-release-0.9/setup/config.html)
<table class="table-configuration">
<tr>
<th>property</th>
<th>value</th>
<th>Description</th>
</tr>
<tr>
<td>host</td>
<td>local</td>
<td>host name of running JobManager. 'local' runs flink in local mode (default)</td>
</tr>
<tr>
<td>port</td>
<td>6123</td>
<td>port of running JobManager</td>
</tr>
<tr>
<td>xxx</td>
<td>yyy</td>
<td>anything else from [Flink Configuration](https://ci.apache.org/projects/flink/flink-docs-release-0.9/setup/config.html)</td>
</tr>
</table>
<br />


### How to test it's working

Expand Down