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 <description>notebook persistence layer implementation</description> </property> </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"><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> </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"><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> </code></pre></div> <p>and commenting out:</p> @@ -354,10 +354,10 @@ export ZEPPELIN_NOTEBOOK_S3_USER = usern <description>notebook persistence layer implementation</description> </property> </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"><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> </code></pre></div> @@ -377,13 +377,13 @@ export ZEPPELIN_NOTEBOOK_S3_USER = usern <!-- <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> --> </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="org.apache.zeppelin.notebook.repo.VFSNotebookRepo, org.apache.zeppelin.notebook.repo.zeppelinhub.ZeppelinHubRepo" +<div class="highlight"><pre><code class="text language-text" data-lang="text">export ZEPPELIN_NOTEBOOK_STORAGE="org.apache.zeppelin.notebook.repo.GitNotebookRepo, org.apache.zeppelin.notebook.repo.zeppelinhub.ZeppelinHubRepo" </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