spark git commit: [SPARK-5038] Add explicit return type for implicit functions.

2014-12-31 Thread rxin
Repository: spark Updated Branches: refs/heads/master 4bb12488d -> 7749dd6c3 [SPARK-5038] Add explicit return type for implicit functions. As we learned in #3580, not explicitly typing implicit functions can lead to compiler bugs and potentially unexpected runtime behavior. This is a follow

spark git commit: SPARK-2757 [BUILD] [STREAMING] Add Mima test for Spark Sink after 1.10 is released

2014-12-31 Thread tdas
Repository: spark Updated Branches: refs/heads/master fe6efacc0 -> 4bb12488d SPARK-2757 [BUILD] [STREAMING] Add Mima test for Spark Sink after 1.10 is released Re-enable MiMa for Streaming Flume Sink module, now that 1.1.0 is released, per the JIRA TO-DO. That's pretty much all there is to t

spark git commit: [SPARK-5035] [Streaming] ReceiverMessage trait should extend Serializable

2014-12-31 Thread tdas
Repository: spark Updated Branches: refs/heads/branch-1.0 64cd91dca -> 5cf94775e [SPARK-5035] [Streaming] ReceiverMessage trait should extend Serializable Spark Streaming's ReceiverMessage trait should extend Serializable in order to fix a subtle bug that only occurs when running on a real cl

spark git commit: [SPARK-5035] [Streaming] ReceiverMessage trait should extend Serializable

2014-12-31 Thread tdas
Repository: spark Updated Branches: refs/heads/branch-1.1 1034707c7 -> 61eb9be4b [SPARK-5035] [Streaming] ReceiverMessage trait should extend Serializable Spark Streaming's ReceiverMessage trait should extend Serializable in order to fix a subtle bug that only occurs when running on a real cl

spark git commit: [SPARK-5035] [Streaming] ReceiverMessage trait should extend Serializable

2014-12-31 Thread tdas
Repository: spark Updated Branches: refs/heads/branch-1.2 14dbd8312 -> 434ea009c [SPARK-5035] [Streaming] ReceiverMessage trait should extend Serializable Spark Streaming's ReceiverMessage trait should extend Serializable in order to fix a subtle bug that only occurs when running on a real cl

spark git commit: [SPARK-5035] [Streaming] ReceiverMessage trait should extend Serializable

2014-12-31 Thread tdas
Repository: spark Updated Branches: refs/heads/master c4f0b4f33 -> fe6efacc0 [SPARK-5035] [Streaming] ReceiverMessage trait should extend Serializable Spark Streaming's ReceiverMessage trait should extend Serializable in order to fix a subtle bug that only occurs when running on a real cluste

spark git commit: SPARK-5020 [MLlib] GaussianMixtureModel.predictMembership() should take an RDD only

2014-12-31 Thread meng
Repository: spark Updated Branches: refs/heads/master fdc2aa491 -> c4f0b4f33 SPARK-5020 [MLlib] GaussianMixtureModel.predictMembership() should take an RDD only Removed unnecessary parameters to predictMembership() CC: jkbradley Author: Travis Galoppo Closes #3854 from tgaloppo/spark-5020

spark git commit: [SPARK-5028][Streaming]Add total received and processed records metrics to Streaming UI

2014-12-31 Thread tdas
Repository: spark Updated Branches: refs/heads/branch-1.2 bd70ff99e -> 14dbd8312 [SPARK-5028][Streaming]Add total received and processed records metrics to Streaming UI This is a follow-up work of [SPARK-4537](https://issues.apache.org/jira/browse/SPARK-4537). Adding total received records

spark git commit: [SPARK-5028][Streaming]Add total received and processed records metrics to Streaming UI

2014-12-31 Thread tdas
Repository: spark Updated Branches: refs/heads/master 3610d3c61 -> fdc2aa491 [SPARK-5028][Streaming]Add total received and processed records metrics to Streaming UI This is a follow-up work of [SPARK-4537](https://issues.apache.org/jira/browse/SPARK-4537). Adding total received records and

spark git commit: [SPARK-4790][STREAMING] Fix ReceivedBlockTrackerSuite waits for old file...

2014-12-31 Thread tdas
Repository: spark Updated Branches: refs/heads/branch-1.2 076de46f2 -> bd70ff99e [SPARK-4790][STREAMING] Fix ReceivedBlockTrackerSuite waits for old file... ...s to get deleted before continuing. Since the deletes are happening asynchronously, the getFileStatus call might throw an exception

spark git commit: [SPARK-4790][STREAMING] Fix ReceivedBlockTrackerSuite waits for old file...

2014-12-31 Thread tdas
Repository: spark Updated Branches: refs/heads/master c88a3d7fc -> 3610d3c61 [SPARK-4790][STREAMING] Fix ReceivedBlockTrackerSuite waits for old file... ...s to get deleted before continuing. Since the deletes are happening asynchronously, the getFileStatus call might throw an exception in o

spark git commit: [SPARK-5038][SQL] Add explicit return type for implicit functions in Spark SQL

2014-12-31 Thread rxin
Repository: spark Updated Branches: refs/heads/master e24d3a9a2 -> c88a3d7fc [SPARK-5038][SQL] Add explicit return type for implicit functions in Spark SQL As we learned in https://github.com/apache/spark/pull/3580, not explicitly typing implicit functions can lead to compiler bugs and potent

spark git commit: [HOTFIX] Disable Spark UI in SparkSubmitSuite tests

2014-12-31 Thread joshrosen
Repository: spark Updated Branches: refs/heads/branch-1.1 08d4f7048 -> 1034707c7 [HOTFIX] Disable Spark UI in SparkSubmitSuite tests This should fix a major cause of build breaks when running many parallel tests. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-w

spark git commit: [HOTFIX] Disable Spark UI in SparkSubmitSuite tests

2014-12-31 Thread joshrosen
Repository: spark Updated Branches: refs/heads/branch-1.2 7c9c25b1f -> 076de46f2 [HOTFIX] Disable Spark UI in SparkSubmitSuite tests This should fix a major cause of build breaks when running many parallel tests. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-w

spark git commit: [HOTFIX] Disable Spark UI in SparkSubmitSuite tests

2014-12-31 Thread joshrosen
Repository: spark Updated Branches: refs/heads/master 3d194cc75 -> e24d3a9a2 [HOTFIX] Disable Spark UI in SparkSubmitSuite tests This should fix a major cause of build breaks when running many parallel tests. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-u

spark git commit: SPARK-4547 [MLLIB] OOM when making bins in BinaryClassificationMetrics

2014-12-31 Thread meng
Repository: spark Updated Branches: refs/heads/master 8e14c5eb5 -> 3d194cc75 SPARK-4547 [MLLIB] OOM when making bins in BinaryClassificationMetrics Now that I've implemented the basics here, I'm less convinced there is a need for this change, somehow. Callers can downsample before or after. R

spark git commit: [SPARK-4298][Core] - The spark-submit cannot read Main-Class from Manifest.

2014-12-31 Thread joshrosen
Repository: spark Updated Branches: refs/heads/branch-1.0 9f911c93d -> 64cd91dca [SPARK-4298][Core] - The spark-submit cannot read Main-Class from Manifest. Resolves a bug where the `Main-Class` from a .jar file wasn't being read in properly. This was caused by the fact that the `primaryResou

spark git commit: [SPARK-4298][Core] - The spark-submit cannot read Main-Class from Manifest.

2014-12-31 Thread joshrosen
Repository: spark Updated Branches: refs/heads/branch-1.1 babcafaa8 -> 08d4f7048 [SPARK-4298][Core] - The spark-submit cannot read Main-Class from Manifest. Resolves a bug where the `Main-Class` from a .jar file wasn't being read in properly. This was caused by the fact that the `primaryResou

spark git commit: [SPARK-4298][Core] - The spark-submit cannot read Main-Class from Manifest.

2014-12-31 Thread joshrosen
Repository: spark Updated Branches: refs/heads/branch-1.2 ad3dc8169 -> 7c9c25b1f [SPARK-4298][Core] - The spark-submit cannot read Main-Class from Manifest. Resolves a bug where the `Main-Class` from a .jar file wasn't being read in properly. This was caused by the fact that the `primaryResou

spark git commit: [SPARK-4298][Core] - The spark-submit cannot read Main-Class from Manifest.

2014-12-31 Thread joshrosen
Repository: spark Updated Branches: refs/heads/master 06a9aa589 -> 8e14c5eb5 [SPARK-4298][Core] - The spark-submit cannot read Main-Class from Manifest. Resolves a bug where the `Main-Class` from a .jar file wasn't being read in properly. This was caused by the fact that the `primaryResource`

spark git commit: [SPARK-1010] Clean up uses of System.setProperty in unit tests

2014-12-31 Thread joshrosen
Repository: spark Updated Branches: refs/heads/branch-1.0 f47e162b9 -> 9f911c93d [SPARK-1010] Clean up uses of System.setProperty in unit tests Several of our tests call System.setProperty (or test code which implicitly sets system properties) and don't always reset/clear the modified propert

spark git commit: [SPARK-4797] Replace breezeSquaredDistance

2014-12-31 Thread meng
Repository: spark Updated Branches: refs/heads/master 352ed6bbe -> 06a9aa589 [SPARK-4797] Replace breezeSquaredDistance This PR replaces slow breezeSquaredDistance. Author: Liang-Chi Hsieh Closes #3643 from viirya/faster_squareddistance and squashes the following commits: f28b275 [Liang-C

spark git commit: [SPARK-1010] Clean up uses of System.setProperty in unit tests

2014-12-31 Thread joshrosen
Repository: spark Updated Branches: refs/heads/branch-1.1 eac740e9a -> babcafaa8 [SPARK-1010] Clean up uses of System.setProperty in unit tests Several of our tests call System.setProperty (or test code which implicitly sets system properties) and don't always reset/clear the modified propert

spark git commit: [SPARK-1010] Clean up uses of System.setProperty in unit tests

2014-12-31 Thread joshrosen
Repository: spark Updated Branches: refs/heads/branch-1.2 edc96d81d -> ad3dc8169 [SPARK-1010] Clean up uses of System.setProperty in unit tests Several of our tests call System.setProperty (or test code which implicitly sets system properties) and don't always reset/clear the modified propert