Re: Build fails on 1.3 Branch

2015-03-29 Thread Marty Bower
Yes, that worked - thank you very much.



On Sun, Mar 29, 2015 at 9:05 AM Ted Yu yuzhih...@gmail.com wrote:

 Jenkins build failed too:


 https://amplab.cs.berkeley.edu/jenkins/view/Spark/job/Spark-1.3-Maven-with-YARN/HADOOP_PROFILE=hadoop-2.4,label=centos/326/consoleFull

 For the moment, you can apply the following change:

 diff --git
 a/sql/core/src/test/scala/org/apache/spark/sql/ColumnExpressionSuite.scala
 b/sql/core/src/test/scala/org/apache/spark/sql/ColumnExpression
 index a53ae97..7ae4b38 100644
 ---
 a/sql/core/src/test/scala/org/apache/spark/sql/ColumnExpressionSuite.scala
 +++
 b/sql/core/src/test/scala/org/apache/spark/sql/ColumnExpressionSuite.scala
 @@ -18,7 +18,7 @@
  package org.apache.spark.sql

  import org.apache.spark.sql.catalyst.expressions.NamedExpression
 -import org.apache.spark.sql.catalyst.plans.logical.{Project, NoRelation}
 +import org.apache.spark.sql.catalyst.plans.logical.{Project}
  import org.apache.spark.sql.functions._
  import org.apache.spark.sql.test.TestSQLContext
  import org.apache.spark.sql.test.TestSQLContext.implicits._

 Cheers

 On Sun, Mar 29, 2015 at 8:48 AM, mjhb sp...@mjhb.com wrote:

 I tried pulling the source and building for the first time, but cannot get
 past the object NoRelation is not a member of package
 org.apache.spark.sql.catalyst.plans.logical error below on the 1.3
 branch.
 I can build the 1.2 branch.

 I have tried with both -Dscala-2.11 and 2.10 (after running the
 appropriate
 change-version-to-2.1#.sh), and with different combinations of hadoop
 flags.

 Relevant excerpts below - full build output available at
 http://mjhb.com/tmp/build-spark-1.3.out or
 http://mjhb.com/tmp/build-spark-1.3.out.gz

 $ git branch
 * branch-1.3
 $ build/mvn -e -X -DskipTests clean package
 Apache Maven 3.0.5
 Maven home: /usr/share/maven
 Java version: 1.7.0_76, vendor: Oracle Corporation
 Java home: /usr/lib/jvm/java-7-oracle/jre
 Default locale: en_US, platform encoding: UTF-8
 OS name: linux, version: 3.16.0-33-generic, arch: amd64, family:
 unix

 snipped...

 [error]

 /home/marty/work/spark-1.3-maint/sql/core/src/test/scala/org/apache/spark/sql/ColumnExpressionSuite.scala:21:
 object NoRelation is not a member of package
 org.apache.spark.sql.catalyst.plans.logical
 [error] import org.apache.spark.sql.catalyst.plans.logical.{Project,
 NoRelation}
 [error]^
 [error] one error found
 [debug] Compilation failed (CompilerInterface)
 [error] Compile failed at Mar 29, 2015 7:52:54 AM [5.793s]




 --
 View this message in context:
 http://apache-spark-user-list.1001560.n3.nabble.com/Build-fails-on-1-3-Branch-tp22275.html
 Sent from the Apache Spark User List mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: user-unsubscr...@spark.apache.org
 For additional commands, e-mail: user-h...@spark.apache.org




Build fails on 1.3 Branch

2015-03-29 Thread mjhb
I tried pulling the source and building for the first time, but cannot get
past the object NoRelation is not a member of package
org.apache.spark.sql.catalyst.plans.logical error below on the 1.3 branch. 
I can build the 1.2 branch.

I have tried with both -Dscala-2.11 and 2.10 (after running the appropriate
change-version-to-2.1#.sh), and with different combinations of hadoop flags.

Relevant excerpts below - full build output available at
http://mjhb.com/tmp/build-spark-1.3.out or
http://mjhb.com/tmp/build-spark-1.3.out.gz 

$ git branch
* branch-1.3
$ build/mvn -e -X -DskipTests clean package
Apache Maven 3.0.5
Maven home: /usr/share/maven
Java version: 1.7.0_76, vendor: Oracle Corporation
Java home: /usr/lib/jvm/java-7-oracle/jre
Default locale: en_US, platform encoding: UTF-8
OS name: linux, version: 3.16.0-33-generic, arch: amd64, family:
unix

snipped...

[error]
/home/marty/work/spark-1.3-maint/sql/core/src/test/scala/org/apache/spark/sql/ColumnExpressionSuite.scala:21:
object NoRelation is not a member of package
org.apache.spark.sql.catalyst.plans.logical
[error] import org.apache.spark.sql.catalyst.plans.logical.{Project,
NoRelation}
[error]^
[error] one error found
[debug] Compilation failed (CompilerInterface)
[error] Compile failed at Mar 29, 2015 7:52:54 AM [5.793s]




--
View this message in context: 
http://apache-spark-user-list.1001560.n3.nabble.com/Build-fails-on-1-3-Branch-tp22275.html
Sent from the Apache Spark User List mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: user-unsubscr...@spark.apache.org
For additional commands, e-mail: user-h...@spark.apache.org



Re: Build fails on 1.3 Branch

2015-03-29 Thread Ted Yu
Jenkins build failed too:

https://amplab.cs.berkeley.edu/jenkins/view/Spark/job/Spark-1.3-Maven-with-YARN/HADOOP_PROFILE=hadoop-2.4,label=centos/326/consoleFull

For the moment, you can apply the following change:

diff --git
a/sql/core/src/test/scala/org/apache/spark/sql/ColumnExpressionSuite.scala
b/sql/core/src/test/scala/org/apache/spark/sql/ColumnExpression
index a53ae97..7ae4b38 100644
---
a/sql/core/src/test/scala/org/apache/spark/sql/ColumnExpressionSuite.scala
+++
b/sql/core/src/test/scala/org/apache/spark/sql/ColumnExpressionSuite.scala
@@ -18,7 +18,7 @@
 package org.apache.spark.sql

 import org.apache.spark.sql.catalyst.expressions.NamedExpression
-import org.apache.spark.sql.catalyst.plans.logical.{Project, NoRelation}
+import org.apache.spark.sql.catalyst.plans.logical.{Project}
 import org.apache.spark.sql.functions._
 import org.apache.spark.sql.test.TestSQLContext
 import org.apache.spark.sql.test.TestSQLContext.implicits._

Cheers

On Sun, Mar 29, 2015 at 8:48 AM, mjhb sp...@mjhb.com wrote:

 I tried pulling the source and building for the first time, but cannot get
 past the object NoRelation is not a member of package
 org.apache.spark.sql.catalyst.plans.logical error below on the 1.3 branch.
 I can build the 1.2 branch.

 I have tried with both -Dscala-2.11 and 2.10 (after running the appropriate
 change-version-to-2.1#.sh), and with different combinations of hadoop
 flags.

 Relevant excerpts below - full build output available at
 http://mjhb.com/tmp/build-spark-1.3.out or
 http://mjhb.com/tmp/build-spark-1.3.out.gz

 $ git branch
 * branch-1.3
 $ build/mvn -e -X -DskipTests clean package
 Apache Maven 3.0.5
 Maven home: /usr/share/maven
 Java version: 1.7.0_76, vendor: Oracle Corporation
 Java home: /usr/lib/jvm/java-7-oracle/jre
 Default locale: en_US, platform encoding: UTF-8
 OS name: linux, version: 3.16.0-33-generic, arch: amd64, family:
 unix

 snipped...

 [error]

 /home/marty/work/spark-1.3-maint/sql/core/src/test/scala/org/apache/spark/sql/ColumnExpressionSuite.scala:21:
 object NoRelation is not a member of package
 org.apache.spark.sql.catalyst.plans.logical
 [error] import org.apache.spark.sql.catalyst.plans.logical.{Project,
 NoRelation}
 [error]^
 [error] one error found
 [debug] Compilation failed (CompilerInterface)
 [error] Compile failed at Mar 29, 2015 7:52:54 AM [5.793s]




 --
 View this message in context:
 http://apache-spark-user-list.1001560.n3.nabble.com/Build-fails-on-1-3-Branch-tp22275.html
 Sent from the Apache Spark User List mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: user-unsubscr...@spark.apache.org
 For additional commands, e-mail: user-h...@spark.apache.org




Re: Build fails on 1.3 Branch

2015-03-29 Thread Reynold Xin
I pushed a hotfix to the branch. Should work now.


On Sun, Mar 29, 2015 at 9:23 AM, Marty Bower sp...@mjhb.com wrote:

 Yes, that worked - thank you very much.



 On Sun, Mar 29, 2015 at 9:05 AM Ted Yu yuzhih...@gmail.com wrote:

 Jenkins build failed too:


 https://amplab.cs.berkeley.edu/jenkins/view/Spark/job/Spark-1.3-Maven-with-YARN/HADOOP_PROFILE=hadoop-2.4,label=centos/326/consoleFull

 For the moment, you can apply the following change:

 diff --git
 a/sql/core/src/test/scala/org/apache/spark/sql/ColumnExpressionSuite.scala
 b/sql/core/src/test/scala/org/apache/spark/sql/ColumnExpression
 index a53ae97..7ae4b38 100644
 ---
 a/sql/core/src/test/scala/org/apache/spark/sql/ColumnExpressionSuite.scala
 +++
 b/sql/core/src/test/scala/org/apache/spark/sql/ColumnExpressionSuite.scala
 @@ -18,7 +18,7 @@
  package org.apache.spark.sql

  import org.apache.spark.sql.catalyst.expressions.NamedExpression
 -import org.apache.spark.sql.catalyst.plans.logical.{Project, NoRelation}
 +import org.apache.spark.sql.catalyst.plans.logical.{Project}
  import org.apache.spark.sql.functions._
  import org.apache.spark.sql.test.TestSQLContext
  import org.apache.spark.sql.test.TestSQLContext.implicits._

 Cheers

 On Sun, Mar 29, 2015 at 8:48 AM, mjhb sp...@mjhb.com wrote:

 I tried pulling the source and building for the first time, but cannot
 get
 past the object NoRelation is not a member of package
 org.apache.spark.sql.catalyst.plans.logical error below on the 1.3
 branch.
 I can build the 1.2 branch.

 I have tried with both -Dscala-2.11 and 2.10 (after running the
 appropriate
 change-version-to-2.1#.sh), and with different combinations of hadoop
 flags.

 Relevant excerpts below - full build output available at
 http://mjhb.com/tmp/build-spark-1.3.out or
 http://mjhb.com/tmp/build-spark-1.3.out.gz

 $ git branch
 * branch-1.3
 $ build/mvn -e -X -DskipTests clean package
 Apache Maven 3.0.5
 Maven home: /usr/share/maven
 Java version: 1.7.0_76, vendor: Oracle Corporation
 Java home: /usr/lib/jvm/java-7-oracle/jre
 Default locale: en_US, platform encoding: UTF-8
 OS name: linux, version: 3.16.0-33-generic, arch: amd64, family:
 unix

 snipped...

 [error]

 /home/marty/work/spark-1.3-maint/sql/core/src/test/scala/org/apache/spark/sql/ColumnExpressionSuite.scala:21:
 object NoRelation is not a member of package
 org.apache.spark.sql.catalyst.plans.logical
 [error] import org.apache.spark.sql.catalyst.plans.logical.{Project,
 NoRelation}
 [error]^
 [error] one error found
 [debug] Compilation failed (CompilerInterface)
 [error] Compile failed at Mar 29, 2015 7:52:54 AM [5.793s]




 --
 View this message in context:
 http://apache-spark-user-list.1001560.n3.nabble.com/Build-fails-on-1-3-Branch-tp22275.html
 Sent from the Apache Spark User List mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: user-unsubscr...@spark.apache.org
 For additional commands, e-mail: user-h...@spark.apache.org