Member since
12-09-2015
61
Posts
43
Kudos Received
4
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
3295 | 08-05-2016 12:33 PM | |
3899 | 02-27-2016 09:19 AM | |
8914 | 02-19-2016 06:28 PM | |
1521 | 02-02-2016 09:09 PM |
02-27-2016
09:19 AM
2 Kudos
@Neeraj Sabharwal Manage to fix it now. Silly problem, actually. I was installing R packages as sudo, but running my zeppelin service as zeppelin user. Now I ran zeppelin as sudo and it works.
... View more
02-27-2016
08:05 AM
1 Kudo
@Neeraj Sabharwal The way I have tested RZeppelin twice now is the following: I ran the RInterpreter and it worked fine. As soon as I try something on my own, I get this error. The second time I installed, I wanted to run your flights example and when I wanted to load the four libraries I already got this error message. btw, Im surprised your installation was successful without installing Cairo package. I had to install cairo package before running install install_github('IRkernel/repr'). If I run the following command in R: #list all installed packages and versions: ip <- as.data.frame(installed.packages()[,c(1,3:4)]) rownames(ip) <- NULL ip <- ip[is.na(ip$Priority),1:2,drop=FALSE] print(ip, row.names=FALSE) Packages and versions you mention in your git (plus Cairo): base64enc 0.1-3 Cairo 1.5-9 caret 6.0-64 devtools 1.10.0 dplyr 0.4.3 evaluate 0.8 repr 0.4 This is the list of all installed packages: r-installed-pkgs.txt My R version: > version _ platform x86_64-pc-linux-gnu arch x86_64 os linux-gnu system x86_64, linux-gnu status major 3 minor 2.3 year 2015 month 12 day 10 svn rev 69752 language R version.string R version 3.2.3 (2015-12-10) nickname Wooden Christmas-Tree
... View more
02-26-2016
03:38 PM
1 Kudo
@Neeraj Sabharwal Ive set up Spark 1.6.0, installed sparkR environment, and built and started zeppelin with R interpreter. I managed to run the RInterpreter notebook. Then I tried to run your example with flights data, I got the same erro message. Now it seems as if I cannot run the zeppelin example either. Same error message: unable to start device X11cairo
... View more
02-25-2016
10:16 AM
@Neeraj Sabharwal Just to help you help me, here is what Ive installed to make it work before the error message: sudo apt-get install libxml2-dev -y
sudo apt-get install libcurl4-openssl-dev -y
sudo apt-get install libssl-dev -y
sudo apt-get install libcurl4-gnutls-dev -y
sudo apt-get install libcairo2-dev -y in R (as root):
install.packages("evaluate", dependencies = TRUE, repos='http://cran.us.r-project.org') install.packages("base64enc", dependencies = TRUE, repos='http://cran.us.r-project.org')
install.packages("devtools", dependencies = TRUE, repos='http://cran.us.r-project.org') install.packages("dplyr", dependencies = TRUE, repos='http://cran.us.r-project.org')
install.packages("caret", dependencies = TRUE, repos='http://cran.us.r-project.org')
install.packages("Cairo", dependencies = TRUE, repos='http://cran.us.r-project.org') install.packages('googleVis', dependencies = TRUE, repos='http://cran.us.r-project.org')
install.packages('mplot', dependencies = TRUE, repos='http://cran.us.r-project.org')
... View more
02-25-2016
07:06 AM
2 Kudos
@Neeraj Sabharwal - seeing your post on linkedin I decided to write here, hopefully someone is doing sparkR on Zeppelin I have installed Zeppelin with R interpreter and at the beginning everything worked well. I could run spark.r and spark.knitr. Then all of a sudden, I started getting the following error message: unable to start device X11cairo when running spark.r. Cairo library is installed, I could run all RInterpreter examples, but after a while this happened.
My zeppelin out file gives me this: ERROR RContext: R Error .zreplout <- rzeppelin:::.z.valuate(.zreplin) unable to start device X11cairo Zeppelin is installed on ubuntu 14.04, Im using spark 1.5.2, sparkR from the CLI runs properly. Ive used this git: https://github.com/elbamos/Zeppelin-With-R What am I missing?
... View more
Labels:
- Labels:
-
Apache Spark
-
Apache Zeppelin
02-23-2016
09:12 AM
4 Kudos
According to the Databricks people at the Spark Summit 2016 in New York, Spark 2.0 is coming out in April/May this year. This means a "jump" from 1.6.0 to 2.0. Spark 1.5.2 is installed with the latest Hortonworks distribution. Spark 1.6.0 is in technical preview, Spark 2.0 is around the corner. Im wondering what plans Hortonworks has around this matter?
... View more
Labels:
- Labels:
-
Apache Spark
02-23-2016
08:12 AM
1 Kudo
@vbhoomireddy @Neeraj Sabharwal I have now made it work. Zeppelin 0.6.0 works now on Spark 1.5.2. If this is still of someone's interest let me know, I can describe what I did.
... View more
02-22-2016
09:45 PM
@Neeraj Sabharwal I needed some more time to test it on spark 1.4.1 and 1.5.2. I also put it in a nice form. Here is the process Ive taken in order to get sparkR running: https://markobigdata.wordpress.com/2016/02/22/installing-r-on-hadoop-cluster-to-run-sparkr/
... View more
02-19-2016
06:28 PM
2 Kudos
@Neeraj Sabharwal, @Artem Ervits I made it work now! Ive used Ubuntu 14.04 Trusty, installed manually Spark 1.4.1 and set up sparkR.
Now, I dont know if the problem was in centos 7.2, but the installment of R was different than what Ive done earlier and from what it says here: http://www.jason-french.com/blog/2013/03/11/installing-r-in-linux/ If you guys want, I can try the same on centos 7.2 and report. If you want, I can describe the process of preparing the environment for using sparkR. I will also try on other spark versions. We depend on R because of the research. Let me know if there is interest.
... View more
02-19-2016
07:46 AM
2 Kudos
@Neeraj Sabharwal, @Artem Ervits Im going to give it a try on Ubuntu 14.04 today. Neeraj, you mentioned some other people are having the same problems. Can you give more information. How did they solve it?
... View more