git commit: [SPARK-2067] use relative path for Spark logo in UI

2014-06-09 Thread pwendell
Repository: spark Updated Branches: refs/heads/branch-1.0 3f8450ec6 - 502a8f795 [SPARK-2067] use relative path for Spark logo in UI Author: Neville Li nevi...@spotify.com Closes #1006 from nevillelyh/gh/SPARK-2067 and squashes the following commits: 9ee64cf [Neville Li] [SPARK-2067] use

git commit: Grammar: read - reads

2014-06-09 Thread rxin
Repository: spark Updated Branches: refs/heads/master 15ddbef41 - 32ee9f066 Grammar: read - reads Author: Andrew Ash and...@andrewash.com Closes #1016 from ash211/patch-6 and squashes the following commits: e3865c8 [Andrew Ash] Grammar: read - reads Project:

git commit: [SPARK-1308] Add getNumPartitions to pyspark RDD

2014-06-09 Thread rxin
Repository: spark Updated Branches: refs/heads/master 32ee9f066 - 6113ac155 [SPARK-1308] Add getNumPartitions to pyspark RDD Add getNumPartitions to pyspark RDD to provide an intuitive way to get number of partitions in RDD like we can do in scala today. Author: Syed Hashmi

git commit: SPARK-1944 Document --verbose in spark-shell -h

2014-06-09 Thread rxin
Repository: spark Updated Branches: refs/heads/branch-1.0 502a8f795 - a5848d325 SPARK-1944 Document --verbose in spark-shell -h https://issues.apache.org/jira/browse/SPARK-1944 Author: Andrew Ash and...@andrewash.com Closes #1020 from ash211/SPARK-1944 and squashes the following commits:

git commit: SPARK-1944 Document --verbose in spark-shell -h

2014-06-09 Thread rxin
Repository: spark Updated Branches: refs/heads/master 6113ac155 - 35630c86f SPARK-1944 Document --verbose in spark-shell -h https://issues.apache.org/jira/browse/SPARK-1944 Author: Andrew Ash and...@andrewash.com Closes #1020 from ash211/SPARK-1944 and squashes the following commits:

git commit: [SPARK-1495][SQL]add support for left semi join

2014-06-09 Thread marmbrus
Repository: spark Updated Branches: refs/heads/master 35630c86f - 0cf600280 [SPARK-1495][SQL]add support for left semi join Just submit another solution for #395 Author: Daoyuan daoyuan.w...@intel.com Author: Michael Armbrust mich...@databricks.com Author: Daoyuan Wang daoyuan.w...@intel.com

git commit: [SPARK-1495][SQL]add support for left semi join

2014-06-09 Thread marmbrus
Repository: spark Updated Branches: refs/heads/branch-1.0 a5848d325 - 73cd1f822 [SPARK-1495][SQL]add support for left semi join Just submit another solution for #395 Author: Daoyuan daoyuan.w...@intel.com Author: Michael Armbrust mich...@databricks.com Author: Daoyuan Wang

git commit: Added a TaskSetManager unit test.

2014-06-09 Thread kayousterhout
Repository: spark Updated Branches: refs/heads/master 0cf600280 - 6cf335d79 Added a TaskSetManager unit test. This test ensures that when there are no alive executors that satisfy a particular locality level, the TaskSetManager doesn't ever use that as the maximum allowed locality level (this

git commit: [SPARK-1522] : YARN ClientBase throws a NPE if there is no YARN Application CP

2014-06-09 Thread tgraves
Repository: spark Updated Branches: refs/heads/master 6cf335d79 - e27344768 [SPARK-1522] : YARN ClientBase throws a NPE if there is no YARN Application CP The current implementation of ClientBase.getDefaultYarnApplicationClasspath inspects the MRJobConfig class for the field

git commit: [SQL] Simple framework for debugging query execution

2014-06-09 Thread rxin
Repository: spark Updated Branches: refs/heads/branch-1.0 73cd1f822 - 65fa7bcac [SQL] Simple framework for debugging query execution Only records number of tuples and unique dataTypes output right now... Example: ```scala scala import org.apache.spark.sql.execution.debug._ scala hql(SELECT

git commit: [SPARK-1704][SQL] Fully support EXPLAIN commands as SchemaRDD.

2014-06-09 Thread marmbrus
Repository: spark Updated Branches: refs/heads/branch-1.0 65fa7bcac - 5a79ba13e [SPARK-1704][SQL] Fully support EXPLAIN commands as SchemaRDD. This PR attempts to resolve [SPARK-1704](https://issues.apache.org/jira/browse/SPARK-1704) by introducing a physical plan for EXPLAIN commands,