mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
address @AhyoungRyu comments
This commit is contained in:
parent
8de3d1fe05
commit
acf58d5bf3
2 changed files with 6 additions and 0 deletions
|
|
@ -87,6 +87,7 @@
|
|||
<li><a href="{{BASE_PATH}}/storage/storage.html#Git">Git Storage</a></li>
|
||||
<li><a href="{{BASE_PATH}}/storage/storage.html#S3">S3 Storage</a></li>
|
||||
<li><a href="{{BASE_PATH}}/storage/storage.html#Azure">Azure Storage</a></li>
|
||||
<li><a href="{{BASE_PATH}}/storage/storage.html#ZeppelinHub">ZeppelinHub Storage</a></li>
|
||||
<li role="separator" class="divider"></li>
|
||||
<!-- li><span><b>REST API</b><span></li -->
|
||||
<li><a href="{{BASE_PATH}}/rest-api/rest-interpreter.html">Interpreter API</a></li>
|
||||
|
|
|
|||
|
|
@ -206,6 +206,7 @@ Optionally, you can specify Azure folder structure name in the file **zeppelin-s
|
|||
#### Notebook Storage in ZeppelinHub <a name="ZeppelinHub"></a>
|
||||
|
||||
ZeppelinHub storage layer allows out of the box connection of Zeppelin instance with your ZeppelinHub account. First of all, you need to either comment out the following property in **zeppelin-site.xml**:
|
||||
|
||||
```
|
||||
<!-- For connecting your Zeppelin with ZeppelinHub -->
|
||||
<!--
|
||||
|
|
@ -216,11 +217,15 @@ ZeppelinHub storage layer allows out of the box connection of Zeppelin instance
|
|||
</property>
|
||||
-->
|
||||
```
|
||||
|
||||
or set the environment variable in the file **zeppelin-env.sh**:
|
||||
|
||||
```
|
||||
export ZEPPELIN_NOTEBOOK_STORAGE="org.apache.zeppelin.notebook.repo.VFSNotebookRepo, org.apache.zeppelin.notebook.repo.zeppelinhub.ZeppelinHubRepo"
|
||||
```
|
||||
|
||||
Secondly, you need to set the environment variables in the file **zeppelin-env.sh**:
|
||||
|
||||
```
|
||||
export ZEPPELINHUB_API_TOKEN = ZeppelinHub token
|
||||
export ZEPPELINHUB_API_ADDRESS = address of ZeppelinHub service (e.g. https://www.zeppelinhub.com)
|
||||
|
|
|
|||
Loading…
Reference in a new issue