Author: ahyoungryu
Date: Mon Jan 16 10:58:50 2017
New Revision: 1779008

URL: http://svn.apache.org/viewvc?rev=1779008&view=rev
Log: (empty)

Modified:
    zeppelin/site/docs/0.7.0-SNAPSHOT/storage/storage.html

Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/storage/storage.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/storage/storage.html?rev=1779008&r1=1779007&r2=1779008&view=diff
==============================================================================
--- zeppelin/site/docs/0.7.0-SNAPSHOT/storage/storage.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/storage/storage.html Mon Jan 16 10:58:50 
2017
@@ -217,8 +217,8 @@ limitations under the License.
 There are few notebook storage systems available for a use out of the box:</p>
 
 <ul>
-<li>(default) all notes are saved in the notebook folder in your local File 
System - <code>VFSNotebookRepo</code></li>
-<li>use local file system and version it using local Git repository - 
<code>GitNotebookRepo</code></li>
+<li>(default) use local file system and version it using local Git repository 
- <code>GitNotebookRepo</code></li>
+<li>all notes are saved in the notebook folder in your local File System - 
<code>VFSNotebookRepo</code></li>
 <li>storage using Amazon S3 service - <code>S3NotebookRepo</code></li>
 <li>storage using Azure service - <code>AzureNotebookRepo</code></li>
 </ul>
@@ -277,11 +277,11 @@ export ZEPPELIN_NOTEBOOK_S3_USER = usern
   &lt;description&gt;notebook persistence layer 
implementation&lt;/description&gt;
 &lt;/property&gt;
 </code></pre></div>
-<p>Comment out the next property to disable local notebook storage (the 
default):</p>
+<p>Comment out the next property to disable local git notebook storage (the 
default):</p>
 <div class="highlight"><pre><code class="text language-text" 
data-lang="text">&lt;property&gt;
   &lt;name&gt;zeppelin.notebook.storage&lt;/name&gt;
-  &lt;value&gt;org.apache.zeppelin.notebook.repo.VFSNotebookRepo&lt;/value&gt;
-  &lt;description&gt;notebook persistence layer 
implementation&lt;/description&gt;
+  &lt;value&gt;org.apache.zeppelin.notebook.repo.GitNotebookRepo&lt;/value&gt;
+  &lt;description&gt;versioned notebook persistence layer 
implementation&lt;/description&gt;
 &lt;/property&gt;
 </code></pre></div>
 <h3>Data Encryption in S3</h3>
@@ -343,8 +343,8 @@ export ZEPPELIN_NOTEBOOK_S3_USER = usern
 <p>Secondly, you can initialize <code>AzureNotebookRepo</code> class in the 
file <strong>zeppelin-site.xml</strong> by commenting the next property:</p>
 <div class="highlight"><pre><code class="text language-text" 
data-lang="text">&lt;property&gt;
   &lt;name&gt;zeppelin.notebook.storage&lt;/name&gt;
-  &lt;value&gt;org.apache.zeppelin.notebook.repo.VFSNotebookRepo&lt;/value&gt;
-  &lt;description&gt;notebook persistence layer 
implementation&lt;/description&gt;
+  &lt;value&gt;org.apache.zeppelin.notebook.repo.GitNotebookRepo&lt;/value&gt;
+  &lt;description&gt;versioned notebook persistence layer 
implementation&lt;/description&gt;
 &lt;/property&gt;
 </code></pre></div>
 <p>and commenting out:</p>
@@ -354,10 +354,10 @@ export ZEPPELIN_NOTEBOOK_S3_USER = usern
   &lt;description&gt;notebook persistence layer 
implementation&lt;/description&gt;
 &lt;/property&gt;
 </code></pre></div>
-<p>In case you want to use simultaneously your local storage with Azure 
storage use the following property instead:</p>
+<p>In case you want to use simultaneously your local git storage with Azure 
storage use the following property instead:</p>
 <div class="highlight"><pre><code class="text language-text" 
data-lang="text">&lt;property&gt;
   &lt;name&gt;zeppelin.notebook.storage&lt;/name&gt;
-  &lt;value&gt;org.apache.zeppelin.notebook.repo.VFSNotebookRepo, 
apache.zeppelin.notebook.repo.AzureNotebookRepo&lt;/value&gt;
+  &lt;value&gt;org.apache.zeppelin.notebook.repo.GitNotebookRepo, 
apache.zeppelin.notebook.repo.AzureNotebookRepo&lt;/value&gt;
   &lt;description&gt;notebook persistence layer 
implementation&lt;/description&gt;
 &lt;/property&gt;
 </code></pre></div>
@@ -377,13 +377,13 @@ export ZEPPELIN_NOTEBOOK_S3_USER = usern
 &lt;!--
 &lt;property&gt;
   &lt;name&gt;zeppelin.notebook.storage&lt;/name&gt;
-  &lt;value&gt;org.apache.zeppelin.notebook.repo.VFSNotebookRepo, 
org.apache.zeppelin.notebook.repo.zeppelinhub.ZeppelinHubRepo&lt;/value&gt;
+  &lt;value&gt;org.apache.zeppelin.notebook.repo.GitNotebookRepo, 
org.apache.zeppelin.notebook.repo.zeppelinhub.ZeppelinHubRepo&lt;/value&gt;
   &lt;description&gt;two notebook persistence layers (local + 
ZeppelinHub)&lt;/description&gt;
 &lt;/property&gt;
 --&gt;
 </code></pre></div>
 <p>or set the environment variable in the file 
<strong>zeppelin-env.sh</strong>:</p>
-<div class="highlight"><pre><code class="text language-text" 
data-lang="text">export 
ZEPPELIN_NOTEBOOK_STORAGE=&quot;org.apache.zeppelin.notebook.repo.VFSNotebookRepo,
 org.apache.zeppelin.notebook.repo.zeppelinhub.ZeppelinHubRepo&quot;
+<div class="highlight"><pre><code class="text language-text" 
data-lang="text">export 
ZEPPELIN_NOTEBOOK_STORAGE=&quot;org.apache.zeppelin.notebook.repo.GitNotebookRepo,
 org.apache.zeppelin.notebook.repo.zeppelinhub.ZeppelinHubRepo&quot;
 </code></pre></div>
 <p>Secondly, you need to set the environment variables in the file 
<strong>zeppelin-env.sh</strong>:</p>
 <div class="highlight"><pre><code class="text language-text" 
data-lang="text">export ZEPPELINHUB_API_TOKEN = ZeppelinHub token


Reply via email to