Repository: zeppelin Updated Branches: refs/heads/branch-0.7 20c3cbccf -> 7b123fb8e
[DOCS] Reflect changed default storage to doc ### What is this PR for? Reflect effects caused by changing the default notebook storage VFSNotebookRepo to GitNotebookRepo. ### What type of PR is it? [Documentation] ### Questions: * Does the licenses files need update? NO * Is there breaking changes for older versions? NO * Does this needs documentation? NO Author: Jun Kim <i2r....@gmail.com> Closes #1903 from tae-jun/patch-3 and squashes the following commits: 60448da [Jun Kim] [DOCS] Reflect changed default storage to doc (cherry picked from commit 982cc0d17e6482844068dbb29ad5a11325a43446) Signed-off-by: ahyoungryu <ahyoung...@apache.org> Project: http://git-wip-us.apache.org/repos/asf/zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/zeppelin/commit/7b123fb8 Tree: http://git-wip-us.apache.org/repos/asf/zeppelin/tree/7b123fb8 Diff: http://git-wip-us.apache.org/repos/asf/zeppelin/diff/7b123fb8 Branch: refs/heads/branch-0.7 Commit: 7b123fb8e5b593c6839613f4f851e692529543a8 Parents: 20c3cbc Author: Jun Kim <i2r....@gmail.com> Authored: Sun Jan 15 22:22:42 2017 +0900 Committer: ahyoungryu <ahyoung...@apache.org> Committed: Mon Jan 16 19:56:18 2017 +0900 ---------------------------------------------------------------------- docs/storage/storage.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/zeppelin/blob/7b123fb8/docs/storage/storage.md ---------------------------------------------------------------------- diff --git a/docs/storage/storage.md b/docs/storage/storage.md index 20c6312..0ab01da 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: </property> ``` -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): ``` <property> <name>zeppelin.notebook.storage</name> - <value>org.apache.zeppelin.notebook.repo.VFSNotebookRepo</value> - <description>notebook persistence layer implementation</description> + <value>org.apache.zeppelin.notebook.repo.GitNotebookRepo</value> + <description>versioned notebook persistence layer implementation</description> </property> ``` @@ -191,8 +191,8 @@ Secondly, you can initialize `AzureNotebookRepo` class in the file **zeppelin-si ``` <property> <name>zeppelin.notebook.storage</name> - <value>org.apache.zeppelin.notebook.repo.VFSNotebookRepo</value> - <description>notebook persistence layer implementation</description> + <value>org.apache.zeppelin.notebook.repo.GitNotebookRepo</value> + <description>versioned notebook persistence layer implementation</description> </property> ``` @@ -206,12 +206,12 @@ and commenting out: </property> ``` -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: ``` <property> <name>zeppelin.notebook.storage</name> - <value>org.apache.zeppelin.notebook.repo.VFSNotebookRepo, apache.zeppelin.notebook.repo.AzureNotebookRepo</value> + <value>org.apache.zeppelin.notebook.repo.GitNotebookRepo, apache.zeppelin.notebook.repo.AzureNotebookRepo</value> <description>notebook persistence layer implementation</description> </property> ``` @@ -236,7 +236,7 @@ ZeppelinHub storage layer allows out of the box connection of Zeppelin instance <!-- <property> <name>zeppelin.notebook.storage</name> - <value>org.apache.zeppelin.notebook.repo.VFSNotebookRepo, org.apache.zeppelin.notebook.repo.zeppelinhub.ZeppelinHubRepo</value> + <value>org.apache.zeppelin.notebook.repo.GitNotebookRepo, org.apache.zeppelin.notebook.repo.zeppelinhub.ZeppelinHubRepo</value> <description>two notebook persistence layers (local + ZeppelinHub)</description> </property> --> @@ -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**: