git commit: BUILD: Add more content to make-distribution.sh.

2014-05-13 Thread pwendell
Repository: spark Updated Branches: refs/heads/master 2792bd016 - 52d905296 BUILD: Add more content to make-distribution.sh. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/52d90529 Tree:

[1/3] git commit: Revert [maven-release-plugin] prepare for next development iteration

2014-05-13 Thread pwendell
Repository: spark Updated Branches: refs/heads/branch-1.0 9772d85c6 - 716462c6c Revert [maven-release-plugin] prepare for next development iteration This reverts commit 9772d85c6f3893d42044f4bab0e16f8b6287613a. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit:

[2/3] git commit: Revert [maven-release-plugin] prepare release v1.0.0-rc4

2014-05-13 Thread pwendell
Revert [maven-release-plugin] prepare release v1.0.0-rc4 This reverts commit 3d0a44833ab50360bf9feccc861cb5e8c44a4866. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/9b8b737a Tree:

Git Push Summary

2014-05-13 Thread pwendell
Repository: spark Updated Tags: refs/tags/v1.0.0-rc5 [created] 04ce12153

Git Push Summary

2014-05-13 Thread pwendell
Repository: spark Updated Tags: refs/tags/v1.0.0-rc4 [deleted] 4f6ab6c68

Git Push Summary

2014-05-13 Thread pwendell
Repository: spark Updated Tags: refs/tags/v1.0.0-rc1 [deleted] c8d0eb980

[3/3] git commit: BUILD: Add more content to make-distribution.sh.

2014-05-13 Thread pwendell
BUILD: Add more content to make-distribution.sh. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/716462c6 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/716462c6 Diff:

git commit: Rollback versions for 1.0.0-rc4

2014-05-13 Thread pwendell
Repository: spark Updated Branches: refs/heads/branch-1.0 d78e37ab5 - 51142b773 Rollback versions for 1.0.0-rc4 Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/51142b77 Tree:

git commit: SPARK-1791 - SVM implementation does not use threshold parameter

2014-05-13 Thread rxin
Repository: spark Updated Branches: refs/heads/master 16ffadcc4 - d1e487473 SPARK-1791 - SVM implementation does not use threshold parameter Summary: https://issues.apache.org/jira/browse/SPARK-1791 Simple fix, and backward compatible, since - anyone who set the threshold was getting

git commit: SPARK-1791 - SVM implementation does not use threshold parameter

2014-05-13 Thread rxin
Repository: spark Updated Branches: refs/heads/branch-1.0 d08e9604f - d6994f4e6 SPARK-1791 - SVM implementation does not use threshold parameter Summary: https://issues.apache.org/jira/browse/SPARK-1791 Simple fix, and backward compatible, since - anyone who set the threshold was getting

git commit: [SPARK-1816] LiveListenerBus dies if a listener throws an exception

2014-05-13 Thread pwendell
Repository: spark Updated Branches: refs/heads/master d1e487473 - 5c0dafc2c [SPARK-1816] LiveListenerBus dies if a listener throws an exception The solution is to wrap a try / catch / log around the posting of each event to each listener. Author: Andrew Or andrewo...@gmail.com Closes #759

git commit: [SPARK-1527] change rootDir*.getName to rootDir*.getAbsolutePath

2014-05-13 Thread pwendell
Repository: spark Updated Branches: refs/heads/branch-1.0 3892ec584 - ef5e9d70f [SPARK-1527] change rootDir*.getName to rootDir*.getAbsolutePath JIRA issue: [SPARK-1527](https://issues.apache.org/jira/browse/SPARK-1527) getName() only gets the last component of the file path. When deleting

git commit: [SPARK-1816] LiveListenerBus dies if a listener throws an exception

2014-05-13 Thread pwendell
Repository: spark Updated Branches: refs/heads/branch-1.0 d6994f4e6 - 3892ec584 [SPARK-1816] LiveListenerBus dies if a listener throws an exception The solution is to wrap a try / catch / log around the posting of each event to each listener. Author: Andrew Or andrewo...@gmail.com Closes

git commit: [SPARK-1527] change rootDir*.getName to rootDir*.getAbsolutePath

2014-05-13 Thread pwendell
Repository: spark Updated Branches: refs/heads/master 5c0dafc2c - 753b04dea [SPARK-1527] change rootDir*.getName to rootDir*.getAbsolutePath JIRA issue: [SPARK-1527](https://issues.apache.org/jira/browse/SPARK-1527) getName() only gets the last component of the file path. When deleting

git commit: Implement ApproximateCountDistinct for SparkSql

2014-05-13 Thread rxin
Repository: spark Updated Branches: refs/heads/branch-1.0 66fe4797a - 92b0ec9ac Implement ApproximateCountDistinct for SparkSql Add the implementation for ApproximateCountDistinct to SparkSql. We use the HyperLogLog algorithm implemented in stream-lib, and do the count in two phases: 1)

git commit: [SQL] Make it possible to create Java/Python SQLContexts from an existing Scala SQLContext.

2014-05-13 Thread rxin
Repository: spark Updated Branches: refs/heads/master 753b04dea - 44233865c [SQL] Make it possible to create Java/Python SQLContexts from an existing Scala SQLContext. Author: Michael Armbrust mich...@databricks.com Closes #761 from marmbrus/existingContext and squashes the following

git commit: [SPARK-1784] Add a new partitioner to allow specifying # of keys per partition

2014-05-13 Thread rxin
Repository: spark Updated Branches: refs/heads/branch-1.0 618b3e6e7 - 66fe4797a [SPARK-1784] Add a new partitioner to allow specifying # of keys per partition This change adds a new partitioner which allows users to specify # of keys per partition. Author: Syed Hashmi shas...@cloudera.com