Re: Stop execution if a paragraph errors

2016-03-09 Thread Skanda
Hi Moon & Girish The note has a runAll method that is being used by the cron scheduler. This method iterates the paragraphs and submits each of them for execution in a single go. This can be made to run sequentially by checking the paragraph status before triggering the next paragraph. We can

Re: Stop execution if a paragraph errors

2016-03-09 Thread moon soo Lee
Hi Girish, Currently, I think there're no simple way. Please feel free to file an issue on JIRA. Technically, RunNote function iterates runParagraph in front-end side [1]. To make execution stop on paragraph error, a) Need to iterate it on backend side by calling [2], otherwise closing browser

Re: Multi-User Zeppelin Deployment?

2016-03-09 Thread moon soo Lee
Hi Chris Miller, - If one user is running a job with an interpreter, can another user simultaneously run a job (such as, in another notebook) with the same interpreter? Short answer is yes, but it depends. Long answer is, first, it depends on which scheduler interpreter implementation

Re: Interpreter dependency not loading?

2016-03-09 Thread Chris Miller
Yeah, that isn't very clear. I'll improve it. -- Chris Miller On Wed, Mar 9, 2016 at 5:12 PM, mina lee wrote: > Glad to hear that it works! > Actually, there is document > https://zeppelin.incubator.apache.org/docs/0.5.5-incubating/interpreter/spark.html > in > dependency

Re: Interpreter dependency not loading?

2016-03-09 Thread mina lee
Glad to hear that it works! Actually, there is document https://zeppelin.incubator.apache.org/docs/0.5.5-incubating/interpreter/spark.html in dependency management section, but obviously it seems hard to find for new users. So feel free to improve it. On Wed, Mar 9, 2016 at 6:05 PM Chris Miller

Multi-User Zeppelin Deployment?

2016-03-09 Thread Chris Miller
Hi, I want to deploy Zeppelin so that multiple users in our organization can use it concurrently. I have a few questions: - If one user is running a job with an interpreter, can another user simultaneously run a job (such as, in another notebook) with the same interpreter? - Does

Re: Interpreter dependency not loading?

2016-03-09 Thread Chris Miller
Oh, I see. Yeah, that's not documented... no wonder it's confusing. I'll open a PR with some improvements to the documentation for this case when I have a moment. Changing spark-default.conf as you suggested indeed worked. Thanks! -- Chris Miller On Wed, Mar 9, 2016 at 10:04 AM, mina lee