From 60448dae51aeda4b964e82283c010ae81fc74df7 Mon Sep 17 00:00:00 2001 From: Jun Kim Date: Sun, 15 Jan 2017 22:22:42 +0900 Subject: [PATCH] [DOCS] Reflect changed default storage to doc Reflect effects caused by change default notebook storage VFSNotebookRepo -> GitNotebookRepo --- docs/storage/storage.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/storage/storage.md b/docs/storage/storage.md index 20c631292f6..0ab01daf805 100644 --- a/docs/storage/storage.md +++ b/docs/storage/storage.md @@ -28,8 +28,8 @@ limitations under the License. Apache Zeppelin has a pluggable notebook storage mechanism controlled by `zeppelin.notebook.storage` configuration option with multiple implementations. There are few notebook storage systems available for a use out of the box: - * (default) all notes are saved in the notebook folder in your local File System - `VFSNotebookRepo` - * use local file system and version it using local Git repository - `GitNotebookRepo` + * (default) use local file system and version it using local Git repository - `GitNotebookRepo` + * all notes are saved in the notebook folder in your local File System - `VFSNotebookRepo` * storage using Amazon S3 service - `S3NotebookRepo` * storage using Azure service - `AzureNotebookRepo` @@ -100,13 +100,13 @@ Uncomment the next property for use S3NotebookRepo class: ``` -Comment out the next property to disable local notebook storage (the default): +Comment out the next property to disable local git notebook storage (the default): ``` zeppelin.notebook.storage - org.apache.zeppelin.notebook.repo.VFSNotebookRepo - notebook persistence layer implementation + org.apache.zeppelin.notebook.repo.GitNotebookRepo + versioned notebook persistence layer implementation ``` @@ -191,8 +191,8 @@ Secondly, you can initialize `AzureNotebookRepo` class in the file **zeppelin-si ``` zeppelin.notebook.storage - org.apache.zeppelin.notebook.repo.VFSNotebookRepo - notebook persistence layer implementation + org.apache.zeppelin.notebook.repo.GitNotebookRepo + versioned notebook persistence layer implementation ``` @@ -206,12 +206,12 @@ and commenting out: ``` -In case you want to use simultaneously your local storage with Azure storage use the following property instead: +In case you want to use simultaneously your local git storage with Azure storage use the following property instead: ``` zeppelin.notebook.storage - org.apache.zeppelin.notebook.repo.VFSNotebookRepo, apache.zeppelin.notebook.repo.AzureNotebookRepo + org.apache.zeppelin.notebook.repo.GitNotebookRepo, apache.zeppelin.notebook.repo.AzureNotebookRepo notebook persistence layer implementation ``` @@ -236,7 +236,7 @@ ZeppelinHub storage layer allows out of the box connection of Zeppelin instance @@ -245,7 +245,7 @@ ZeppelinHub storage layer allows out of the box connection of Zeppelin instance 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" +export ZEPPELIN_NOTEBOOK_STORAGE="org.apache.zeppelin.notebook.repo.GitNotebookRepo, org.apache.zeppelin.notebook.repo.zeppelinhub.ZeppelinHubRepo" ``` Secondly, you need to set the environment variables in the file **zeppelin-env.sh**: