Re: Is it possible to run Zeppelin on cluster

2018-04-30 Thread Michael Segel
Yeah, but each instance is separate. I don’t think that’s what OP meant since he referenced Hadoop. As others point out the Notebook dir has to be accessible to all instances. On Apr 30, 2018, at 5:04 PM, ankit jain > wrote: You can

Re: Is it possible to run Zeppelin on cluster

2018-04-30 Thread ankit jain
Yeah LB will need to make sure requests for a notebook always go to same machine - then it will be like a single machine deployment, multiple users using the notebook at same time. On Mon, Apr 30, 2018 at 3:19 PM, Ruslan Dautkhanov wrote: > It probably would work for an

Re: save data in a notebook to use in subsequent scripts

2018-04-30 Thread Ruslan Dautkhanov
Not sure if Spark-Cassandra connector would be helpful? https://github.com/datastax/spark-cassandra-connector -- Ruslan Dautkhanov On Mon, Apr 30, 2018 at 7:38 AM, Soheil Pourbafrani wrote: > Is it possible to save a Cassandra query result in a variable to use in >

Re: zeppelin 0.8 tar file

2018-04-30 Thread Felix Cheung
0.8 is not released yet. From: Soheil Pourbafrani Sent: Sunday, April 29, 2018 9:18:10 AM To: users@zeppelin.apache.org Subject: zeppelin 0.8 tar file Is there any pre-compiled tar file of Zeppelin 0.8 to download?

Re: How to compile Zeppelin with just some desired interpreter

2018-04-30 Thread Soheil Pourbafrani
Greate man! On Mon, Apr 30, 2018 at 8:16 PM, Ruslan Dautkhanov wrote: > You could also add a list of interpreters that you'd like to exclude from > the build: > > maven ... -pl '!cassandra,!bigquery,...' > > > > -- > Ruslan Dautkhanov > > On Mon, Apr 30, 2018 at 7:53 AM,

Re: How to compile Zeppelin with just some desired interpreter

2018-04-30 Thread Soheil Pourbafrani
-DskipTests is in the command? On Mon, Apr 30, 2018 at 6:17 PM, Jeff Zhang wrote: > > Add -DskipTests to disable test > > > Soheil Pourbafrani 于2018年4月30日周一 下午9:11写道: > >> I downlodaed source of Zeppelin 0.8.1 from github and using the command >> mvn

Re: How to compile Zeppelin with just some desired interpreter

2018-04-30 Thread Jeff Zhang
Add -DskipTests to disable test Soheil Pourbafrani 于2018年4月30日周一 下午9:11写道: > I downlodaed source of Zeppelin 0.8.1 from github and using the command > mvn clean package -Pspark-2.1 -Phadoop-2.7 -Pyarn -Ppyspark -Psparkr > -Pscala-2.11 -DskipTests -Pbuild-distr > > but it

Re: Is it possible to run Zeppelin on cluster

2018-04-30 Thread Michael Segel
Ok.. The answer is no. You have a web interface. It runs on a web server. Does the web server run in a cluster? On Apr 30, 2018, at 12:24 AM, Soheil Pourbafrani > wrote: Thanks, I meant the Zeppelin itself, not it's jobs. On Sun, Apr 29,

How to compile Zeppelin with just some desired interpreter

2018-04-30 Thread Soheil Pourbafrani
I downlodaed source of Zeppelin 0.8.1 from github and using the command mvn clean package -Pspark-2.1 -Phadoop-2.7 -Pyarn -Ppyspark -Psparkr -Pscala-2.11 -DskipTests -Pbuild-distr but it errors: Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:testCompile

Re: Scheduler in Zeppelin 0.9

2018-04-30 Thread Soheil Pourbafrani
Greate! On Mon, Apr 30, 2018 at 5:18 PM, Jeff Zhang wrote: > > It is not removed, but disabled by default. > You can enable it via setting zeppelin.notebook.cron.enable to true in > zeppelin-site.xml > > > > Soheil Pourbafrani 于2018年4月30日周一 下午7:42写道: >

Re: Scheduler in Zeppelin 0.9

2018-04-30 Thread Jeff Zhang
It is not removed, but disabled by default. You can enable it via setting zeppelin.notebook.cron.enable to true in zeppelin-site.xml Soheil Pourbafrani 于2018年4月30日周一 下午7:42写道: > I used to use Zeppelin 0.7.3 scheduler at top of each note, but in > Zeppelin 0.9 Snapshot

Scheduler in Zeppelin 0.9

2018-04-30 Thread Soheil Pourbafrani
I used to use Zeppelin 0.7.3 scheduler at top of each note, but in Zeppelin 0.9 Snapshot the scheduler is removed! How can I schedule notes in Zeppelin 0.9?

Re: Zeppelin 0.8

2018-04-30 Thread Jeff Zhang
I am preparing the RC for 0.8 Rotem Herzberg 于2018年4月30日周一 下午3:57写道: > Hi, > > What is the release date for Zeppelin 0.8? (support for spark 2.3) > > Thanks, > > -- > > *Rotem Herzberg* > SW Engineer |

Zeppelin 0.8

2018-04-30 Thread Rotem Herzberg
Hi, What is the release date for Zeppelin 0.8? (support for spark 2.3) Thanks, -- *Rotem Herzberg* SW Engineer | GigaSpaces Technologies rotem.herzb...@gigaspaces.com | M +972547718880

Re: Compile Zepplin source and get output like tar file structure

2018-04-30 Thread Jeff Zhang
Add this to your maven build command: -Pbuild-distr Soheil Pourbafrani 于2018年4月30日周一 下午3:26写道: > Thanks, How should I enable build-distr ? > > On Mon, Apr 30, 2018 at 11:32 AM, Jeff Zhang wrote: > >> >> What do you mean the outputs are messy ? If you

Re: Compile Zepplin source and get output like tar file structure

2018-04-30 Thread Soheil Pourbafrani
Thanks, How should I enable build-distr ? On Mon, Apr 30, 2018 at 11:32 AM, Jeff Zhang wrote: > > What do you mean the outputs are messy ? If you want to build binary > distribution, please enable profile build-distr ? > > > Soheil Pourbafrani

Re: Compile Zepplin source and get output like tar file structure

2018-04-30 Thread Jeff Zhang
What do you mean the outputs are messy ? If you want to build binary distribution, please enable profile build-distr ? Soheil Pourbafrani 于2018年4月30日周一 下午2:24写道: > Using the command > mvn clean package -DskipTests -Pspark-2.0 -Phadoop-2.4 -Pr -Pscala-2.11 > > I compiled

Compile Zepplin source and get output like tar file structure

2018-04-30 Thread Soheil Pourbafrani
Using the command mvn clean package -DskipTests -Pspark-2.0 -Phadoop-2.4 -Pr -Pscala-2.11 I compiled Zeppelin source but the outputs are messy and unstructured. How can I compile it to get output like Zeppelin binary tar file structure?