You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by ah...@apache.org on 2017/01/16 10:55:53 UTC

zeppelin git commit: [DOCS] Reflect changed default storage to doc

Repository: zeppelin
Updated Branches:
  refs/heads/master e94d5c0fb -> 982cc0d17


[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 <i2...@gmail.com>

Closes #1903 from tae-jun/patch-3 and squashes the following commits:

60448da [Jun Kim] [DOCS] Reflect changed default storage to doc


Project: http://git-wip-us.apache.org/repos/asf/zeppelin/repo
Commit: http://git-wip-us.apache.org/repos/asf/zeppelin/commit/982cc0d1
Tree: http://git-wip-us.apache.org/repos/asf/zeppelin/tree/982cc0d1
Diff: http://git-wip-us.apache.org/repos/asf/zeppelin/diff/982cc0d1

Branch: refs/heads/master
Commit: 982cc0d17e6482844068dbb29ad5a11325a43446
Parents: e94d5c0
Author: Jun Kim <i2...@gmail.com>
Authored: Sun Jan 15 22:22:42 2017 +0900
Committer: ahyoungryu <ah...@apache.org>
Committed: Mon Jan 16 19:55:33 2017 +0900

----------------------------------------------------------------------
 docs/storage/storage.md | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/982cc0d1/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**: