spark git commit: [SPARK-7052][Core] Add ThreadUtils and move thread methods from Utils to ThreadUtils

2015-04-22 Thread rxin
Repository: spark Updated Branches: refs/heads/master bdc5c16e7 -> 33b85620f [SPARK-7052][Core] Add ThreadUtils and move thread methods from Utils to ThreadUtils As per rxin 's suggestion in https://github.com/apache/spark/pull/5392/files#r28757176 What's more, there is a race condition in

spark git commit: [SQL] Rename some apply functions.

2015-04-22 Thread rxin
Repository: spark Updated Branches: refs/heads/master 33b85620f -> cdf032868 [SQL] Rename some apply functions. I was looking at the code gen code and got confused by a few of use cases of apply, in particular apply on objects. So I went ahead and changed a few of them. Hopefully slightly mo

spark git commit: [SPARK-7039][SQL]JDBCRDD: Add support on type NVARCHAR

2015-04-22 Thread rxin
Repository: spark Updated Branches: refs/heads/master cdf032868 -> fbe7106d7 [SPARK-7039][SQL]JDBCRDD: Add support on type NVARCHAR Issue: https://issues.apache.org/jira/browse/SPARK-7039 Add support to column type NVARCHAR in Sql Server java.sql.Types: http://docs.oracle.com/javase/7/docs/

spark git commit: [SPARK-7039][SQL]JDBCRDD: Add support on type NVARCHAR

2015-04-22 Thread rxin
Repository: spark Updated Branches: refs/heads/branch-1.3 4508f0189 -> b832f31b9 [SPARK-7039][SQL]JDBCRDD: Add support on type NVARCHAR Issue: https://issues.apache.org/jira/browse/SPARK-7039 Add support to column type NVARCHAR in Sql Server java.sql.Types: http://docs.oracle.com/javase/7/d

spark git commit: [SPARK-7059][SQL] Create a DataFrame join API to facilitate equijoin.

2015-04-22 Thread marmbrus
Repository: spark Updated Branches: refs/heads/master fbe7106d7 -> baf865ddc [SPARK-7059][SQL] Create a DataFrame join API to facilitate equijoin. Author: Reynold Xin Closes #5638 from rxin/joinUsing and squashes the following commits: 13e9cc9 [Reynold Xin] Code review + Python. b1bd914 [Re

spark git commit: [SPARK-6827] [MLLIB] Wrap FPGrowthModel.freqItemsets and make it consistent with Java API

2015-04-22 Thread meng
Repository: spark Updated Branches: refs/heads/master baf865ddc -> f4f39981f [SPARK-6827] [MLLIB] Wrap FPGrowthModel.freqItemsets and make it consistent with Java API Make PySpark ```FPGrowthModel.freqItemsets``` consistent with Java/Scala API like ```MatrixFactorizationModel.userFeatures```

spark git commit: [SPARK-6967] [SQL] fix date type convertion in jdbcrdd

2015-04-22 Thread rxin
Repository: spark Updated Branches: refs/heads/master f4f39981f -> 04525c077 [SPARK-6967] [SQL] fix date type convertion in jdbcrdd This pr convert java.sql.Date type into Int for JDBCRDD. Author: Daoyuan Wang Closes #5590 from adrian-wang/datebug and squashes the following commits: f897b8

spark git commit: [SPARK-6967] [SQL] fix date type convertion in jdbcrdd

2015-04-22 Thread rxin
Repository: spark Updated Branches: refs/heads/branch-1.3 b832f31b9 -> 3b38cac26 [SPARK-6967] [SQL] fix date type convertion in jdbcrdd This pr convert java.sql.Date type into Int for JDBCRDD. Author: Daoyuan Wang Closes #5590 from adrian-wang/datebug and squashes the following commits: f8

spark git commit: Disable flaky test: ReceiverSuite "block generator throttling".

2015-04-22 Thread rxin
Repository: spark Updated Branches: refs/heads/master 04525c077 -> b69c4f9b2 Disable flaky test: ReceiverSuite "block generator throttling". Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/b69c4f9b Tree: http://git-wip-us.

spark git commit: [SPARK-7066][MLlib] VectorAssembler should use NumericType not NativeType.

2015-04-22 Thread rxin
Repository: spark Updated Branches: refs/heads/master 1b85e0850 -> d20686066 [SPARK-7066][MLlib] VectorAssembler should use NumericType not NativeType. Author: Reynold Xin Closes #5642 from rxin/mllib-native-type and squashes the following commits: e23af5b [Reynold Xin] Remove StringType 7c

spark git commit: [MLlib] UnaryTransformer nullability should not depend on PrimitiveType.

2015-04-22 Thread rxin
Repository: spark Updated Branches: refs/heads/master b69c4f9b2 -> 1b85e0850 [MLlib] UnaryTransformer nullability should not depend on PrimitiveType. Author: Reynold Xin Closes #5644 from rxin/mllib-nullable and squashes the following commits: a727e5b [Reynold Xin] [MLlib] UnaryTransformer

spark git commit: [SPARK-7046] Remove InputMetrics from BlockResult

2015-04-22 Thread kayousterhout
Repository: spark Updated Branches: refs/heads/master d20686066 -> 03e85b4a1 [SPARK-7046] Remove InputMetrics from BlockResult This is a code cleanup. The BlockResult class originally contained an InputMetrics object so that InputMetrics could directly be used as the InputMetrics for the who

spark git commit: [HOTFIX][SQL] Fix broken cached test

2015-04-22 Thread tdas
Repository: spark Updated Branches: refs/heads/master 03e85b4a1 -> d9e70f331 [HOTFIX][SQL] Fix broken cached test Added in #5475. Pointed as broken in #5639. /cc marmbrus Author: Liang-Chi Hsieh Closes #5640 from viirya/fix_cached_test and squashes the following commits: c0cf69a [Liang-Chi

spark git commit: [MLlib] Add support for BooleanType to VectorAssembler.

2015-04-22 Thread rxin
Repository: spark Updated Branches: refs/heads/master d9e70f331 -> 2d33323ca [MLlib] Add support for BooleanType to VectorAssembler. Author: Reynold Xin Closes #5648 from rxin/vectorAssembler-boolean and squashes the following commits: 1bf3d40 [Reynold Xin] [MLlib] Add support for BooleanT

spark git commit: [SPARK-7068][SQL] Remove PrimitiveType

2015-04-22 Thread rxin
Repository: spark Updated Branches: refs/heads/master 2d33323ca -> 29163c520 [SPARK-7068][SQL] Remove PrimitiveType Author: Reynold Xin Closes #5646 from rxin/remove-primitive-type and squashes the following commits: 01b673d [Reynold Xin] [SPARK-7068][SQL] Remove PrimitiveType Project: ht