Re: [VOTE] Release Apache Spark 1.2.0 (RC1)

2014-11-29 Thread Sean Owen
+1 non-binding I downloaded the plain source artifact and verified signatures. Licesning and artifact looks OK. All tests pass with a plain package/test run, and also with -Phive -Pyarn -Dhadop.version=2.5.2, which covers two fairly different scenarios. On Sat, Nov 29, 2014 at 5:16 AM, Patrick We

Re: [VOTE] Release Apache Spark 1.2.0 (RC1)

2014-11-29 Thread slcclimber
+1 1> Compiled binaries 2> All Tests Pass 3> Ran python and scala examples for spark and Mllib on local and master + 4 workers -- View this message in context: http://apache-spark-developers-list.1001551.n3.nabble.com/VOTE-Release-Apache-Spark-1-2-0-RC1-tp9546p9552.html Sent from the Apache Sp

Re: [VOTE] Release Apache Spark 1.2.0 (RC1)

2014-11-29 Thread Patrick Wendell
Thanks for pointing this out, Matei. I don't think a minor typo like this is a big deal. Hopefully it's clear to everyone this is the 1.2.0 release vote, as indicated by the subject and all of the artifacts. On Sat, Nov 29, 2014 at 1:26 AM, Matei Zaharia wrote: > Hey Patrick, unfortunately you go

Re: [VOTE] Release Apache Spark 1.2.0 (RC1)

2014-11-29 Thread Krishna Sankar
+1 1. Compiled OSX 10.10 (Yosemite) mvn -Pyarn -Phadoop-2.4 -Dhadoop.version=2.4.0 -DskipTests clean package 16:46 min (slightly slower connection) 2. Tested pyspark, mlib - running as well as compare esults with 1.1.x 2.1. statistics OK 2.2. Linear/Ridge/Laso Regression OK Slight difference

Trouble testing after updating to latest master

2014-11-29 Thread Ganelin, Ilya
Hi all – I’ve just merged in the latest changes from the Spark master branch to my local branch. I am able to build just fine with mvm clean package However, when I attempt to run dev/run-tests, I get the following error: Using /Library/Java/JavaVirtualMachines/jdk1.8.0_20.jdk/Contents/Home as d

Re: [VOTE] Release Apache Spark 1.2.0 (RC1)

2014-11-29 Thread vaquar khan
+1 1> Compiled binaries 2> All Tests Pass Regards, Vaquar khan On 30 Nov 2014 04:21, "Krishna Sankar" wrote: > +1 > 1. Compiled OSX 10.10 (Yosemite) mvn -Pyarn -Phadoop-2.4 > -Dhadoop.version=2.4.0 -DskipTests clean package 16:46 min (slightly slower > connection) > 2. Tested pyspark, mlib - run

Re: Trouble testing after updating to latest master

2014-11-29 Thread Patrick Wendell
Thanks for reporting this. One thing to try is to just do a git clean to make sure you have a totally clean working space ("git clean -fdx" will blow away any differences you have from the repo, of course only do that if you don't have other files around). Can you reproduce this if you just run "sb

Re: Trouble testing after updating to latest master

2014-11-29 Thread Ganelin, Ilya
I am able to successfully run sbt/sbt-compile and run the tests after running git clean -fdx. I¹m guessing network issues wound up corrupting some of the files that had been downloaded. Thanks, Patrick! On 11/29/14, 10:52 PM, "Patrick Wendell" wrote: >Thanks for reporting this. One thing to try

Re: Trouble testing after updating to latest master

2014-11-29 Thread Patrick Wendell
Sounds good. Glad you got it working. On Sat, Nov 29, 2014 at 11:16 PM, Ganelin, Ilya wrote: > I am able to successfully run sbt/sbt-compile and run the tests after > running git clean -fdx. I¹m guessing network issues wound up corrupting > some of the files that had been downloaded. Thanks, Patr