Skip to content

Instantly share code, notes, and snippets.

@addnab
Last active October 14, 2017 18:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save addnab/340a73a5d0007e752a90348ff54453bc to your computer and use it in GitHub Desktop.
Save addnab/340a73a5d0007e752a90348ff54453bc to your computer and use it in GitHub Desktop.
Amazon S3 notebook storage for Zeppelin
...
<!-- Amazon S3 notebook storage -->
<!-- Creates the following directory structure: s3://{bucket}/{username}/{notebook-id}/note.json -->
<property>
<name>zeppelin.notebook.s3.user</name>
<value>*FOLDER*</value>
<description>user name for s3 folder structure</description>
</property>
<property>
<name>zeppelin.notebook.s3.bucket</name>
<value>*BUCKET*</value>
<description>bucket name for notebook storage</description>
</property>
<property>
<name>zeppelin.notebook.s3.endpoint</name>
<value>s3.amazonaws.com</value>
<description>endpoint for s3 bucket</description>
</property>
<property>
<name>zeppelin.notebook.storage</name>
<value>org.apache.zeppelin.notebook.repo.S3NotebookRepo</value>
<description>notebook persistence layer implementation</description>
</property>
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment