- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
zeppelin - how to remove results cache from notebook
- Labels:
-
Apache Zeppelin
Created ‎03-23-2016 04:58 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Dear Experts,
I created a quite complex zeppelin notebook and accidentally returned a rather big result set for one of the queries (that I had to abort).
Now when I reopen the notebook in the browser, zeppelin takes ages and breaks after a while (I assume my browsers buffers are running over ...)
Any Idea on how I can clear/reset the zeppelin result sets without accessing/entering the notebook?
Any other idea on how I can bring back my notebook?
Thanks and br,
Rainer
Created ‎03-23-2016 05:54 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Zeppelin stores all displayable information in a JSON format file named "note.json" (default), located under the home directory, usually /user/zeppelin/notebook. This JSON file includes source code, markup, and output results. Easiest thing to do is:
- ssh into the machine where zeppelin service is running
- cd to the notebook directory (cd /user/zeppelin/notebook)
- cd to the specific notebook sub-directory; each notebook is in separate sub-dir (cd 2A94M5J1Z)
- edit the note.json file and remove the unwanted results
If you use a good editor (like TextMate or vim) that has JSON plugin to format the contents, you can easily locate the results section and rip it out. Make sure you don't break the integrity of the JSON file itself; you just want to eliminate the inner JSON contents where the superfluous result is stored. Here is an example of a results field from note.json:
"result": { "code": "SUCCESS", "type": "HTML", "msg": "\u003ch2\u003eWelcome to Zeppelin.\u003c/h2\u003e\n\u003ch5\u003eThis is a live tutorial, you can run the code yourself. (Shift-Enter to Run)\u003c/h5\u003e\n" },
Created ‎03-23-2016 05:54 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Zeppelin stores all displayable information in a JSON format file named "note.json" (default), located under the home directory, usually /user/zeppelin/notebook. This JSON file includes source code, markup, and output results. Easiest thing to do is:
- ssh into the machine where zeppelin service is running
- cd to the notebook directory (cd /user/zeppelin/notebook)
- cd to the specific notebook sub-directory; each notebook is in separate sub-dir (cd 2A94M5J1Z)
- edit the note.json file and remove the unwanted results
If you use a good editor (like TextMate or vim) that has JSON plugin to format the contents, you can easily locate the results section and rip it out. Make sure you don't break the integrity of the JSON file itself; you just want to eliminate the inner JSON contents where the superfluous result is stored. Here is an example of a results field from note.json:
"result": { "code": "SUCCESS", "type": "HTML", "msg": "\u003ch2\u003eWelcome to Zeppelin.\u003c/h2\u003e\n\u003ch5\u003eThis is a live tutorial, you can run the code yourself. (Shift-Enter to Run)\u003c/h5\u003e\n" },
Created ‎03-23-2016 08:02 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Worked like a charm 🙂 Thanks for your support!
Created ‎03-23-2016 08:42 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Rainer, next time instead of closing the question, hit accept. That's a best practice when you receive a satisfactory answer. I accepted the answer on your behalf but we would rather you accept answers going forward. Thanks
Created ‎03-24-2016 06:44 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Will do, thanks ... me constantly improving 🙂
Created ‎05-05-2017 07:10 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks, resolve my problem.
Created ‎12-04-2017 01:49 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Resolved my issue after modifying the JSON file and restarting zeppelin. Thanks for the help
