Re: Multi-line scripts in spark interpreter

2018-07-12 Thread Sanjay Dasgupta
Jeff Zhang's comment here may be useful. Regards, Sanjay On Fri, Jul 13, 2018 at 1:01 AM, Paul Brenner wrote: > This behavior is

Re: Multi-line scripts in spark interpreter

2018-07-12 Thread Paul Brenner
This behavior is coming from the new spark interpreter. Jeff opened  ZEPPELIN-3587 to fix it. In the mean time you can use the old spark interpreter (set zeppelin.spark.useNew to false) to get around this. Hopefully you aren't dependent on the new spark interpreter. (

Multi-line scripts in spark interpreter

2018-07-12 Thread Christopher Piggott
Hi, This used to work: val a = new Something() .someMethod() .someMethod2() in 0.7.3 but it doesn't in 0.8.0 ... it says the .someMethod(), etc. are an illegal start of expression. Some of these setups I have are fluently expressed but would be unmanageable in a single long line.