svn commit: r1607545 - in /spark: images/graphx-perf-comparison.png site/images/graphx-perf-comparison.png

2014-07-03 Thread ankurdave
Author: ankurdave Date: Thu Jul 3 07:08:46 2014 New Revision: 1607545 URL: http://svn.apache.org/r1607545 Log: Correct the GraphX performance comparison graphic Modified: spark/images/graphx-perf-comparison.png spark/site/images/graphx-perf-comparison.png Modified:

git commit: [SPARK-2324] SparkContext should not exit directly when spark.local.dir is a list of multiple paths and one of them has error

2014-07-03 Thread adav
Repository: spark Updated Branches: refs/heads/master bc7041a42 - 3bbeca648 [SPARK-2324] SparkContext should not exit directly when spark.local.dir is a list of multiple paths and one of them has error The spark.local.dir is configured as a list of multiple paths as follows

git commit: [SPARK] Fix NPE for ExternalAppendOnlyMap

2014-07-03 Thread adav
Repository: spark Updated Branches: refs/heads/master 3bbeca648 - c48053773 [SPARK] Fix NPE for ExternalAppendOnlyMap It did not handle null keys very gracefully before. Author: Andrew Or andrewo...@gmail.com Closes #1288 from andrewor14/fix-external and squashes the following commits:

git commit: [SPARK] Fix NPE for ExternalAppendOnlyMap

2014-07-03 Thread adav
Repository: spark Updated Branches: refs/heads/branch-1.0 87b74a9bf - fdee6ee06 [SPARK] Fix NPE for ExternalAppendOnlyMap It did not handle null keys very gracefully before. Author: Andrew Or andrewo...@gmail.com Closes #1288 from andrewor14/fix-external and squashes the following commits:

git commit: SPARK-1675. Make clear whether computePrincipalComponents requires centered data

2014-07-03 Thread meng
Repository: spark Updated Branches: refs/heads/master c48053773 - 2b36344f5 SPARK-1675. Make clear whether computePrincipalComponents requires centered data Just closing out this small JIRA, resolving with a comment change. Author: Sean Owen so...@cloudera.com Closes #1171 from

git commit: [SPARK-2342] Evaluation helper's output type doesn't conform to input ty...

2014-07-03 Thread marmbrus
Repository: spark Updated Branches: refs/heads/master 2b36344f5 - a9b52e562 [SPARK-2342] Evaluation helper's output type doesn't conform to input ty... The function cast doesn't conform to the intention of Those expressions are supposed to be in the same data type, and also the return type.

git commit: [SPARK-2342] Evaluation helper's output type doesn't conform to input ty...

2014-07-03 Thread marmbrus
Repository: spark Updated Branches: refs/heads/branch-1.0 fdee6ee06 - 7766c9d26 [SPARK-2342] Evaluation helper's output type doesn't conform to input ty... The function cast doesn't conform to the intention of Those expressions are supposed to be in the same data type, and also the return

git commit: [SPARK-2109] Setting SPARK_MEM for bin/pyspark does not work.

2014-07-03 Thread pwendell
Repository: spark Updated Branches: refs/heads/master a9b52e562 - 731f683b1 [SPARK-2109] Setting SPARK_MEM for bin/pyspark does not work. Trivial fix. Author: Prashant Sharma prashan...@imaginea.com Closes #1050 from ScrapCodes/SPARK-2109/pyspark-script-bug and squashes the following

git commit: [SPARK-2109] Setting SPARK_MEM for bin/pyspark does not work.

2014-07-03 Thread pwendell
Repository: spark Updated Branches: refs/heads/branch-1.0-jdbc cf0d14b01 - 9f7cf5bdb [SPARK-2109] Setting SPARK_MEM for bin/pyspark does not work. Trivial fix. Author: Prashant Sharma prashan...@imaginea.com Closes #1050 from ScrapCodes/SPARK-2109/pyspark-script-bug and squashes the

git commit: [SPARK-2109] Setting SPARK_MEM for bin/pyspark does not work.

2014-07-03 Thread pwendell
Repository: spark Updated Branches: refs/heads/branch-1.0 7766c9d26 - 1d3616579 [SPARK-2109] Setting SPARK_MEM for bin/pyspark does not work. Trivial fix. Author: Prashant Sharma prashan...@imaginea.com Closes #1050 from ScrapCodes/SPARK-2109/pyspark-script-bug and squashes the following

git commit: [HOTFIX] Synchronize on SQLContext.settings in tests.

2014-07-03 Thread marmbrus
Repository: spark Updated Branches: refs/heads/master 731f683b1 - d4c30cd99 [HOTFIX] Synchronize on SQLContext.settings in tests. Let's see if this fixes the ongoing series of test failures in a master build machine

git commit: Streaming programming guide typos

2014-07-03 Thread tdas
Repository: spark Updated Branches: refs/heads/master d4c30cd99 - fdc4c112e Streaming programming guide typos Fix a bad Java code sample and a broken link in the streaming programming guide. Author: Clément MATHIEU clem...@unportant.info Closes #1286 from

git commit: [SPARK-1097] Workaround Hadoop conf ConcurrentModification issue

2014-07-03 Thread adav
Repository: spark Updated Branches: refs/heads/master fdc4c112e - 5fa0a0576 [SPARK-1097] Workaround Hadoop conf ConcurrentModification issue Workaround Hadoop conf ConcurrentModification issue Author: Raymond Liu raymond@intel.com Closes #1273 from colorant/hadoopRDD and squashes the

git commit: [SPARK-2350] Don't NPE while launching drivers

2014-07-03 Thread pwendell
Repository: spark Updated Branches: refs/heads/branch-1.0 d2f253467 - 27a2afed6 [SPARK-2350] Don't NPE while launching drivers Prior to this change, we could throw a NPE if we launch a driver while another one is waiting, because removing from an iterator while iterating over it is not

git commit: [SPARK-2350] Don't NPE while launching drivers

2014-07-03 Thread pwendell
Repository: spark Updated Branches: refs/heads/master 5fa0a0576 - 586feb5c9 [SPARK-2350] Don't NPE while launching drivers Prior to this change, we could throw a NPE if we launch a driver while another one is waiting, because removing from an iterator while iterating over it is not safe.

git commit: [SPARK-2307][Reprise] Correctly report RDD blocks on SparkUI

2014-07-03 Thread pwendell
Repository: spark Updated Branches: refs/heads/branch-1.0 27a2afed6 - cf1d46e46 [SPARK-2307][Reprise] Correctly report RDD blocks on SparkUI **Problem.** The existing code in `ExecutorPage.scala` requires a linear scan through all the blocks to filter out the uncached ones. Every refresh