Re: Few issues and questions regarding streaming

2017-07-04 Thread Nikhil Utane
me you > can run only one of them . > > Hope this helps. > > > > On Jul 5, 2017, at 10:49 AM, Nikhil Utane <nikhil.subscri...@gmail.com> > wrote: > > Hi, > > I am trying streaming with Zeppelin usin

Re: Zeppelin [0.7.2]: NullPointerException on executing paragraph from a new Notebook

2017-07-04 Thread Nikhil Utane
:46 AM, arpit tak <arpit@gmail.com> wrote: > Hi Nikhil , > Is it happening only one one interpreter or on all interpreter. > Also share command you writing. > > On Jul 5, 2017, at 9:38 AM, Nikhil Utane <nikhil.subscri...@gmail.com> > wrote: > > > > Hi

Zeppelin [0.7.2]: NullPointerException on executing paragraph from a new Notebook

2017-07-04 Thread Nikhil Utane
Hi, Whenever I create a new notebook and run a paragraph, I get the NullPointerException error. If I run from an existing notebook then no problem. java.lang.NullPointerException at org.apache.zeppelin.spark.Utils.invokeMethod(Utils.java:38) at

Re: Notebook not responding

2017-06-22 Thread Nikhil Utane
On Thu, Jun 22, 2017 at 11:42 AM, Nikhil Utane < > nikhil.subscri...@gmail.com> wrote: > >> Phew. I was able to recover by selecting "Clear Output" on the main page. >> After that I was able to open the notebook. >> >> Thanks >> Nikhil >> >

Re: Notebook not responding

2017-06-22 Thread Nikhil Utane
Phew. I was able to recover by selecting "Clear Output" on the main page. After that I was able to open the notebook. Thanks Nikhil On Thu, Jun 22, 2017 at 11:26 AM, Nikhil Utane <nikhil.subscri...@gmail.com> wrote: > Hi, > > I am having a serious issue. > All

Notebook not responding

2017-06-21 Thread Nikhil Utane
Hi, I am having a serious issue. All of a sudden my notebook has stopped responding. The page doesn't load in any of the browser. I am able to open Tutorial notebooks though. I have restarted zeppelin daemon but it is not helping. In the logs, I only see New Connection and Connection Closed

Re: Printing table with variables in pyspark

2017-06-21 Thread Nikhil Utane
worked fine. Thanks for your help. -Nikhil On Wed, Jun 21, 2017 at 1:22 PM, Jeff Zhang <zjf...@gmail.com> wrote: > > This is not zeppelin issue, it is due to your python code, use following > code > > str="Col1\tCol2" > print("%table " + str) > > &