svn commit: r1666996 - /spark/site/releases/spark-release-1-3-0.html

2015-03-16 Thread srowen
Author: srowen Date: Mon Mar 16 13:49:54 2015 New Revision: 1666996 URL: http://svn.apache.org/r1666996 Log: Removed extra word 'extended' Modified: spark/site/releases/spark-release-1-3-0.html Modified: spark/site/releases/spark-release-1-3-0.html URL:

spark git commit: [SPARK-6300][Spark Core] sc.addFile(path) does not support the relative path.

2015-03-16 Thread srowen
Repository: spark Updated Branches: refs/heads/master 45f4c6612 - 00e730b94 [SPARK-6300][Spark Core] sc.addFile(path) does not support the relative path. when i run cmd like that sc.addFile(../test.txt), it did not work and throwed an exception: java.lang.IllegalArgumentException:

spark git commit: [SPARK-6300][Spark Core] sc.addFile(path) does not support the relative path.

2015-03-16 Thread srowen
Repository: spark Updated Branches: refs/heads/branch-1.3 43fcab01a - 724aab4b9 [SPARK-6300][Spark Core] sc.addFile(path) does not support the relative path. when i run cmd like that sc.addFile(../test.txt), it did not work and throwed an exception: java.lang.IllegalArgumentException:

spark git commit: [SPARK-2087] [SQL] Multiple thriftserver sessions with single HiveContext instance

2015-03-16 Thread lian
Repository: spark Updated Branches: refs/heads/master 00e730b94 - 12a345adc [SPARK-2087] [SQL] Multiple thriftserver sessions with single HiveContext instance Still, we keep only a single HiveContext within ThriftServer, and we also create a object called `SQLSession` for isolating the

spark git commit: [SPARK-6327] [PySpark] fix launch spark-submit from python

2015-03-16 Thread joshrosen
Repository: spark Updated Branches: refs/heads/master f149b8b5e - e3f315ac3 [SPARK-6327] [PySpark] fix launch spark-submit from python SparkSubmit should be launched without setting PYSPARK_SUBMIT_ARGS cc JoshRosen , this mode is actually used by python unit test, so I will not add more

spark git commit: SPARK-6245 [SQL] jsonRDD() of empty RDD results in exception

2015-03-16 Thread srowen
Repository: spark Updated Branches: refs/heads/branch-1.3 724aab4b9 - 684ff2476 SPARK-6245 [SQL] jsonRDD() of empty RDD results in exception Avoid `UnsupportedOperationException` from JsonRDD.inferSchema on empty RDD. Not sure if this is supposed to be an error (but a better one), but it

spark git commit: [SPARK-6330] Fix filesystem bug in newParquet relation

2015-03-16 Thread adav
Repository: spark Updated Branches: refs/heads/master 12a345adc - d19efeddc [SPARK-6330] Fix filesystem bug in newParquet relation If I'm running this locally and my path points to S3, this would currently error out because of incorrect FS. I tested this in a scenario that previously didn't

spark git commit: [SPARK-6330] Fix filesystem bug in newParquet relation

2015-03-16 Thread adav
Repository: spark Updated Branches: refs/heads/branch-1.3 684ff2476 - 67fa6d1f8 [SPARK-6330] Fix filesystem bug in newParquet relation If I'm running this locally and my path points to S3, this would currently error out because of incorrect FS. I tested this in a scenario that previously

spark git commit: [SPARK-6077] Remove streaming tab while stopping StreamingContext

2015-03-16 Thread tdas
Repository: spark Updated Branches: refs/heads/branch-1.3 67fa6d1f8 - 47cce984e [SPARK-6077] Remove streaming tab while stopping StreamingContext Currently we would create a new streaming tab for each streamingContext even if there's already one on the same sparkContext which would cause

spark git commit: [SPARK-6077] Remove streaming tab while stopping StreamingContext

2015-03-16 Thread tdas
Repository: spark Updated Branches: refs/heads/master d19efeddc - f149b8b5e [SPARK-6077] Remove streaming tab while stopping StreamingContext Currently we would create a new streaming tab for each streamingContext even if there's already one on the same sparkContext which would cause

spark git commit: [SPARK-5922][GraphX]: Add diff(other: RDD[VertexId, VD]) in VertexRDD

2015-03-16 Thread ankurdave
Repository: spark Updated Branches: refs/heads/master aa6536fa3 - 45f4c6612 [SPARK-5922][GraphX]: Add diff(other: RDD[VertexId, VD]) in VertexRDD Changed method invocation of 'diff' to match that of 'innerJoin' and 'leftJoin' from VertexRDD[VD] to RDD[(VertexId, VD)]. This change maintains