RE: Stop execution if a paragraph errors

2016-03-10 Thread Guha, Ayan (AU - Melbourne)
Hi This is my first mail to this group. I am writing this in order to get a fair understanding of how zeppelin can be integrated with Spark. Our use case is to load few tables from a DB to Spark, run some transformation. Once done, we want to expose data through Zeppelin for analytics. I have f

Re: Stop execution if a paragraph errors

2016-03-10 Thread moon soo Lee
Hi Skanda, Thanks for sharing great idea. I think you idea is really make sense. :-) Thanks, moon On Wed, Mar 9, 2016 at 11:04 AM Skanda wrote: > 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 o

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 have

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 w

Stop execution if a paragraph errors

2016-03-09 Thread Girish Reddy
Hello: It seems the default behavior in Zeppelin is to continue execution of paragraph even if one of the paragraph errors out. Is there a way to configure it to stop execution as soon as a paragraph errors out? Or is this something that needs to be handled in the paragraph code? Thanks, -Giris