Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Zeppelin Notebook Storage in local Git repository

I have followed the instructors for setting up Zeppelin Notebook Storage in local Git repository here:

https://zeppelin.incubator.apache.org/docs/0.6.0-incubating-SNAPSHOT/storage/storage.html#Git

But i am still unclear about how i can store versions of the notebooks in Git. Has anyone else tried this and what was your experience?

like image 760
Eoin Lane Avatar asked Jan 02 '16 12:01

Eoin Lane


1 Answers

Based on the link you provided, it look's like the xml file you're working with should have a commented block that resembles the following:

<property>
  <name>zeppelin.notebook.storage</name>
  <value>org.apache.zeppelin.notebook.repo.GitNotebookRepo</value>
  <description>notebook persistence layer implementation</description>
</property>

Maybe it's commented out somehow, like maybe there is !-- or some other strange characters within the <property> tag that you can remove in order to enable the block and git access.

like image 112
mkrufky Avatar answered Nov 15 '22 19:11

mkrufky