spark git commit: Revert "[SPARK-6397][SQL] Check the missingInput simply"

2015-03-22 Thread lian
Repository: spark Updated Branches: refs/heads/master e566fe598 -> bf044def4 Revert "[SPARK-6397][SQL] Check the missingInput simply" This reverts commit e566fe5982bac5d24e6be76e5d7d6270544a85e6. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/

spark git commit: [SPARK-6397][SQL] Check the missingInput simply

2015-03-22 Thread lian
Repository: spark Updated Branches: refs/heads/master 4659468f3 -> e566fe598 [SPARK-6397][SQL] Check the missingInput simply Author: q00251598 Closes #5082 from watermen/sql-missingInput and squashes the following commits: 25766b9 [q00251598] Check the missingInput simply Project: http://

spark git commit: [SPARK-4985] [SQL] parquet support for date type

2015-03-22 Thread lian
Repository: spark Updated Branches: refs/heads/branch-1.3 857e8a60e -> 60b9b96b2 [SPARK-4985] [SQL] parquet support for date type This PR might have some issues with #3732 , and this would have merge conflicts with #3820 so the review can be delayed till that 2 were merged. Author: Daoyuan W

spark git commit: [SPARK-4985] [SQL] parquet support for date type

2015-03-22 Thread lian
Repository: spark Updated Branches: refs/heads/master 2bf40c58e -> 4659468f3 [SPARK-4985] [SQL] parquet support for date type This PR might have some issues with #3732 , and this would have merge conflicts with #3820 so the review can be delayed till that 2 were merged. Author: Daoyuan Wang

spark git commit: [SPARK-6337][Documentation, SQL]Spark 1.3 doc fixes

2015-03-22 Thread srowen
Repository: spark Updated Branches: refs/heads/master 7a0da4770 -> 2bf40c58e [SPARK-6337][Documentation, SQL]Spark 1.3 doc fixes Author: vinodkc Closes #5112 from vinodkc/spark_1.3_doc_fixes and squashes the following commits: 2c6aee6 [vinodkc] Spark 1.3 doc fixes Project: http://git-wip

spark git commit: [SPARK-6337][Documentation, SQL]Spark 1.3 doc fixes

2015-03-22 Thread srowen
Repository: spark Updated Branches: refs/heads/branch-1.3 3ba295fa0 -> 857e8a60e [SPARK-6337][Documentation, SQL]Spark 1.3 doc fixes Author: vinodkc Closes #5112 from vinodkc/spark_1.3_doc_fixes and squashes the following commits: 2c6aee6 [vinodkc] Spark 1.3 doc fixes (cherry picked from

spark git commit: [HOTFIX] Build break due to https://github.com/apache/spark/pull/5128

2015-03-22 Thread rxin
Repository: spark Updated Branches: refs/heads/master a41b9c600 -> 7a0da4770 [HOTFIX] Build break due to https://github.com/apache/spark/pull/5128 Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/7a0da477 Tree: http://git-w

spark git commit: [SPARK-6122][Core] Upgrade Tachyon client version to 0.6.1.

2015-03-22 Thread adav
Repository: spark Updated Branches: refs/heads/master 6ef48632f -> a41b9c600 [SPARK-6122][Core] Upgrade Tachyon client version to 0.6.1. Changes the Tachyon client version from 0.5 to 0.6 in spark core and distribution script. New dependencies in Tachyon 0.6.0 include commons-codec:commons-

spark git commit: SPARK-6454 [DOCS] Fix links to pyspark api

2015-03-22 Thread srowen
Repository: spark Updated Branches: refs/heads/master adb2ff752 -> 6ef48632f SPARK-6454 [DOCS] Fix links to pyspark api Author: Kamil Smuga Author: stderr Closes #5120 from kamilsmuga/master and squashes the following commits: fee3281 [Kamil Smuga] more python api links fixed for docs 1324

spark git commit: SPARK-6454 [DOCS] Fix links to pyspark api

2015-03-22 Thread srowen
Repository: spark Updated Branches: refs/heads/branch-1.3 e60fbf6c4 -> 3ba295fa0 SPARK-6454 [DOCS] Fix links to pyspark api Author: Kamil Smuga Author: stderr Closes #5120 from kamilsmuga/master and squashes the following commits: fee3281 [Kamil Smuga] more python api links fixed for docs

spark git commit: [SPARK-6453][Mesos] Some Mesos*Suite have a different package with their classes

2015-03-22 Thread srowen
Repository: spark Updated Branches: refs/heads/master ab4f516fb -> adb2ff752 [SPARK-6453][Mesos] Some Mesos*Suite have a different package with their classes - Moved Suites from o.a.s.s.mesos to o.a.s.s.cluster.mesos Author: Jongyoul Lee Closes #5126 from jongyoul/SPARK-6453 and squashes th

spark git commit: [SPARK-6455] [docs] Correct some mistakes and typos

2015-03-22 Thread srowen
Repository: spark Updated Branches: refs/heads/master b9fe504b4 -> ab4f516fb [SPARK-6455] [docs] Correct some mistakes and typos Correct some typos. Correct a mistake in lib/PageRank.scala. The first PageRank implementation uses standalone Graph interface, but the second uses Pregel interfac

[1/2] spark git commit: [SPARK-6132] ContextCleaner race condition across SparkContexts

2015-03-22 Thread srowen
Repository: spark Updated Branches: refs/heads/branch-1.1 c5836816f -> 39761f515 [SPARK-6132] ContextCleaner race condition across SparkContexts The problem is that `ContextCleaner` may clean variables that belong to a different `SparkContext`. This can happen if the `SparkContext` to which t

[2/2] spark git commit: [SPARK-6132][HOTFIX] ContextCleaner InterruptedException should be quiet

2015-03-22 Thread srowen
[SPARK-6132][HOTFIX] ContextCleaner InterruptedException should be quiet If the cleaner is stopped, we shouldn't print a huge stack trace when the cleaner thread is interrupted because we purposefully did this. Author: Andrew Or Closes #4882 from andrewor14/cleaner-interrupt and squashes the f

[2/2] spark git commit: [SPARK-6132] ContextCleaner race condition across SparkContexts

2015-03-22 Thread srowen
[SPARK-6132] ContextCleaner race condition across SparkContexts The problem is that `ContextCleaner` may clean variables that belong to a different `SparkContext`. This can happen if the `SparkContext` to which the cleaner belongs stops, and a new one is started immediately afterwards in the sa

[1/2] spark git commit: [SPARK-6132][HOTFIX] ContextCleaner InterruptedException should be quiet

2015-03-22 Thread srowen
Repository: spark Updated Branches: refs/heads/branch-1.2 a2a94a154 -> abdcec673 [SPARK-6132][HOTFIX] ContextCleaner InterruptedException should be quiet If the cleaner is stopped, we shouldn't print a huge stack trace when the cleaner thread is interrupted because we purposefully did this.

spark git commit: [SPARK-6448] Make history server log parse exceptions

2015-03-22 Thread srowen
Repository: spark Updated Branches: refs/heads/master 9b1e1f20d -> b9fe504b4 [SPARK-6448] Make history server log parse exceptions This helped me to debug a parse error that was due to the event log format changing recently. Author: Ryan Williams Closes #5122 from ryan-williams/histerror a

spark git commit: [SPARK-6408] [SQL] Fix JDBCRDD filtering string literals

2015-03-22 Thread lian
Repository: spark Updated Branches: refs/heads/master b6090f902 -> 9b1e1f20d [SPARK-6408] [SQL] Fix JDBCRDD filtering string literals Author: ypcat Author: Pei-Lun Lee Closes #5087 from ypcat/spark-6408 and squashes the following commits: 1becc16 [ypcat] [SPARK-6408] [SQL] styling 1bc4455

spark git commit: [SPARK-6408] [SQL] Fix JDBCRDD filtering string literals

2015-03-22 Thread lian
Repository: spark Updated Branches: refs/heads/branch-1.3 0021d2260 -> e60fbf6c4 [SPARK-6408] [SQL] Fix JDBCRDD filtering string literals Author: ypcat Author: Pei-Lun Lee Closes #5087 from ypcat/spark-6408 and squashes the following commits: 1becc16 [ypcat] [SPARK-6408] [SQL] styling 1bc4