git commit: [SPARK-3160] [SPARK-3494] [mllib] DecisionTree: eliminate pre-allocated nodes, parentImpurities arrays. Memory calc bug fix.

2014-09-12 Thread meng
Repository: spark Updated Branches: refs/heads/master 42904b8d0 - b8634df1f [SPARK-3160] [SPARK-3494] [mllib] DecisionTree: eliminate pre-allocated nodes, parentImpurities arrays. Memory calc bug fix. This PR includes some code simplifications and re-organization which will be helpful for

svn commit: r1624579 - in /spark: releases/_posts/2014-09-11-spark-release-1-1-0.md site/releases/spark-release-1-1-0.html

2014-09-12 Thread pwendell
Author: pwendell Date: Fri Sep 12 16:04:01 2014 New Revision: 1624579 URL: http://svn.apache.org/r1624579 Log: Adding missing release credit Modified: spark/releases/_posts/2014-09-11-spark-release-1-1-0.md spark/site/releases/spark-release-1-1-0.html Modified:

git commit: Revert [Spark-3490] Disable SparkUI for tests

2014-09-12 Thread andrewor14
Repository: spark Updated Branches: refs/heads/branch-1.1 e69deb818 - f17b7957a Revert [Spark-3490] Disable SparkUI for tests This reverts commit 2ffc7980c6818eec05e32141c52e335bc71daed9. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit:

git commit: [SPARK-3481] [SQL] Eliminate the error log in local Hive comparison test

2014-09-12 Thread marmbrus
Repository: spark Updated Branches: refs/heads/branch-1.1 f17b7957a - 6cbf83c05 [SPARK-3481] [SQL] Eliminate the error log in local Hive comparison test Logically, we should remove the Hive Table/Database first and then reset the Hive configuration, repoint to the new data warehouse

svn commit: r1624639 - in /spark: downloads.md js/downloads.js site/downloads.html site/js/downloads.js

2014-09-12 Thread pwendell
Author: pwendell Date: Fri Sep 12 20:36:11 2014 New Revision: 1624639 URL: http://svn.apache.org/r1624639 Log: Adding pretty titles for download links. Modified: spark/downloads.md spark/js/downloads.js spark/site/downloads.html spark/site/js/downloads.js Modified:

git commit: MAINTENANCE: Automated closing of pull requests.

2014-09-12 Thread pwendell
Repository: spark Updated Branches: refs/heads/master 8194fc662 - eae81b0bf MAINTENANCE: Automated closing of pull requests. This commit exists to close the following pull requests on Github: Closes #930 (close requested by 'andrewor14') Closes #867 (close requested by 'marmbrus') Closes

git commit: SPARK-3014. Log a more informative messages in a couple failure scenario...

2014-09-12 Thread tgraves
Repository: spark Updated Branches: refs/heads/master 15a564598 - 1d767967e SPARK-3014. Log a more informative messages in a couple failure scenario... ...s Author: Sandy Ryza sa...@cloudera.com Closes #1934 from sryza/sandy-spark-3014 and squashes the following commits: ae19cc1 [Sandy

git commit: [SPARK-3500] [SQL] use JavaSchemaRDD as SchemaRDD._jschema_rdd

2014-09-12 Thread joshrosen
Repository: spark Updated Branches: refs/heads/master 71af030b4 - 885d1621b [SPARK-3500] [SQL] use JavaSchemaRDD as SchemaRDD._jschema_rdd Currently, SchemaRDD._jschema_rdd is SchemaRDD, the Scala API (coalesce(), repartition()) can not been called in Python easily, there is no way to

git commit: [SPARK-3500] [SQL] use JavaSchemaRDD as SchemaRDD._jschema_rdd

2014-09-12 Thread joshrosen
Repository: spark Updated Branches: refs/heads/branch-1.1 6cbf83c05 - 9c06c7230 [SPARK-3500] [SQL] use JavaSchemaRDD as SchemaRDD._jschema_rdd Currently, SchemaRDD._jschema_rdd is SchemaRDD, the Scala API (coalesce(), repartition()) can not been called in Python easily, there is no way to

git commit: [SQL][Docs] Update SQL programming guide to show the correct default value of containsNull in an ArrayType

2014-09-12 Thread rxin
Repository: spark Updated Branches: refs/heads/master 2584ea5b2 - e11eeb71f [SQL][Docs] Update SQL programming guide to show the correct default value of containsNull in an ArrayType After #1889, the default value of `containsNull` in an `ArrayType` is `true`. Author: Yin Huai

git commit: SPARK-3470 [CORE] [STREAMING] Add Closeable / close() to Java context objects

2014-09-12 Thread rxin
Repository: spark Updated Branches: refs/heads/master e11eeb71f - feaa3706f SPARK-3470 [CORE] [STREAMING] Add Closeable / close() to Java context objects ... that expose a stop() lifecycle method. This doesn't add `AutoCloseable`, which is Java 7+ only. But it should be possible to use