spark git commit: [SPARK-6175] Fix standalone executor log links when ephemeral ports or SPARK_PUBLIC_DNS are used

2015-03-05 Thread joshrosen
Repository: spark Updated Branches: refs/heads/master 0bfacd5c5 - 424a86a1e [SPARK-6175] Fix standalone executor log links when ephemeral ports or SPARK_PUBLIC_DNS are used This patch fixes two issues with the executor log viewing links added in Spark 1.3. In standalone mode, the log URLs

spark git commit: SPARK-6182 [BUILD] spark-parent pom needs to be published for both 2.10 and 2.11

2015-03-05 Thread pwendell
Repository: spark Updated Branches: refs/heads/master e06c7dfbc - c9cfba0ce SPARK-6182 [BUILD] spark-parent pom needs to be published for both 2.10 and 2.11 Option 1 of 2: Convert spark-parent module name to spark-parent_2.10 / spark-parent_2.11 Author: Sean Owen so...@cloudera.com Closes

spark git commit: [SPARK-6175] Fix standalone executor log links when ephemeral ports or SPARK_PUBLIC_DNS are used

2015-03-05 Thread joshrosen
Repository: spark Updated Branches: refs/heads/branch-1.3 ae315d2b8 - 988b49821 [SPARK-6175] Fix standalone executor log links when ephemeral ports or SPARK_PUBLIC_DNS are used This patch fixes two issues with the executor log viewing links added in Spark 1.3. In standalone mode, the log

spark git commit: SPARK-6182 [BUILD] spark-parent pom needs to be published for both 2.10 and 2.11

2015-03-05 Thread pwendell
Repository: spark Updated Branches: refs/heads/branch-1.3 f8205d3be - ae315d2b8 SPARK-6182 [BUILD] spark-parent pom needs to be published for both 2.10 and 2.11 Option 1 of 2: Convert spark-parent module name to spark-parent_2.10 / spark-parent_2.11 Author: Sean Owen so...@cloudera.com

spark git commit: [SPARK-6090][MLLIB] add a basic BinaryClassificationMetrics to PySpark/MLlib

2015-03-05 Thread meng
Repository: spark Updated Branches: refs/heads/master c9cfba0ce - 0bfacd5c5 [SPARK-6090][MLLIB] add a basic BinaryClassificationMetrics to PySpark/MLlib A simple wrapper around the Scala implementation. `DataFrame` is used for serialization/deserialization. Methods that return `RDD`s are not

Git Push Summary

2015-03-05 Thread pwendell
Repository: spark Updated Tags: refs/tags/v1.3.0-rc3 [deleted] 6fb4af2fb - To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org For additional commands, e-mail: commits-h...@spark.apache.org

spark git commit: Updating CHANGES.txt for Spark 1.3

2015-03-05 Thread pwendell
Repository: spark Updated Branches: refs/heads/branch-1.3 a0cbfe4da - 4ab990c2f Updating CHANGES.txt for Spark 1.3 Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/4ab990c2 Tree:

spark git commit: [SQL] Make Strategies a public developer API

2015-03-05 Thread marmbrus
Repository: spark Updated Branches: refs/heads/branch-1.3 083fed555 - 556e0de1a [SQL] Make Strategies a public developer API Author: Michael Armbrust mich...@databricks.com Closes #4920 from marmbrus/openStrategies and squashes the following commits: cbc35c0 [Michael Armbrust] [SQL] Make

[2/2] spark git commit: Preparing development version 1.3.1-SNAPSHOT

2015-03-05 Thread pwendell
Preparing development version 1.3.1-SNAPSHOT Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/c152f9a7 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/c152f9a7 Diff:

[2/2] spark git commit: Revert Preparing Spark release v1.3.0-rc3

2015-03-05 Thread pwendell
Revert Preparing Spark release v1.3.0-rc3 This reverts commit 6fb4af2fbeb3d1b888191a2fa1042c80e3ef2d60. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/a0cbfe4d Tree:

Git Push Summary

2015-03-05 Thread pwendell
Repository: spark Updated Tags: refs/tags/v1.3.0-rc3 [created] 6fb4af2fb - To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org For additional commands, e-mail: commits-h...@spark.apache.org

[2/2] spark git commit: Preparing development version 1.3.1-SNAPSHOT

2015-03-05 Thread pwendell
Preparing development version 1.3.1-SNAPSHOT Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/5097f869 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/5097f869 Diff:

[1/2] spark git commit: Preparing Spark release v1.3.0-rc3

2015-03-05 Thread pwendell
Repository: spark Updated Branches: refs/heads/branch-1.3 988b49821 - 5097f869e Preparing Spark release v1.3.0-rc3 Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/6fb4af2f Tree:

spark git commit: [SPARK-6145][SQL] fix ORDER BY on nested fields

2015-03-05 Thread marmbrus
Repository: spark Updated Branches: refs/heads/branch-1.3 5097f869e - e358f [SPARK-6145][SQL] fix ORDER BY on nested fields Based on #4904 with style errors fixed. `LogicalPlan#resolve` will not only produce `Attribute`, but also `GetField` chain. So in `ResolveSortReferences`, after

spark git commit: [SPARK-6145][SQL] fix ORDER BY on nested fields

2015-03-05 Thread marmbrus
Repository: spark Updated Branches: refs/heads/master 424a86a1e - 5873c713c [SPARK-6145][SQL] fix ORDER BY on nested fields Based on #4904 with style errors fixed. `LogicalPlan#resolve` will not only produce `Attribute`, but also `GetField` chain. So in `ResolveSortReferences`, after

spark git commit: [SPARK-6163][SQL] jsonFile should be backed by the data source API

2015-03-05 Thread marmbrus
Repository: spark Updated Branches: refs/heads/master 5873c713c - 1b4bb25c1 [SPARK-6163][SQL] jsonFile should be backed by the data source API jira: https://issues.apache.org/jira/browse/SPARK-6163 Author: Yin Huai yh...@databricks.com Closes #4896 from yhuai/SPARK-6163 and squashes the

[1/2] spark git commit: Revert Preparing development version 1.3.1-SNAPSHOT

2015-03-05 Thread pwendell
Repository: spark Updated Branches: refs/heads/branch-1.3 556e0de1a - a0cbfe4da Revert Preparing development version 1.3.1-SNAPSHOT This reverts commit 5097f869efbdb75d3b87bcbd8e621e7c12356942. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit:

spark git commit: [SQL] Make Strategies a public developer API

2015-03-05 Thread marmbrus
Repository: spark Updated Branches: refs/heads/master 1b4bb25c1 - eb48fd6e9 [SQL] Make Strategies a public developer API Author: Michael Armbrust mich...@databricks.com Closes #4920 from marmbrus/openStrategies and squashes the following commits: cbc35c0 [Michael Armbrust] [SQL] Make

spark git commit: [SPARK-6163][SQL] jsonFile should be backed by the data source API

2015-03-05 Thread marmbrus
Repository: spark Updated Branches: refs/heads/branch-1.3 e358f - 083fed555 [SPARK-6163][SQL] jsonFile should be backed by the data source API jira: https://issues.apache.org/jira/browse/SPARK-6163 Author: Yin Huai yh...@databricks.com Closes #4896 from yhuai/SPARK-6163 and squashes the

[1/2] spark git commit: Preparing Spark release v1.3.0-rc3

2015-03-05 Thread pwendell
Repository: spark Updated Branches: refs/heads/branch-1.3 4ab990c2f - c152f9a7e Preparing Spark release v1.3.0-rc3 Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/4aaf48d4 Tree:

Git Push Summary

2015-03-05 Thread pwendell
Repository: spark Updated Tags: refs/tags/v1.3.0-rc3 [created] 4aaf48d46 - To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org For additional commands, e-mail: commits-h...@spark.apache.org

spark git commit: [SPARK-6153] [SQL] promote guava dep for hive-thriftserver

2015-03-05 Thread lian
Repository: spark Updated Branches: refs/heads/branch-1.3 b1e916240 - b92d925d9 [SPARK-6153] [SQL] promote guava dep for hive-thriftserver For package thriftserver, guava is used at runtime. /cc pwendell Author: Daoyuan Wang daoyuan.w...@intel.com Closes #4884 from adrian-wang/test and

spark git commit: Revert [SPARK-6153] [SQL] promote guava dep for hive-thriftserver

2015-03-05 Thread lian
Repository: spark Updated Branches: refs/heads/branch-1.3 b92d925d9 - f8205d3be Revert [SPARK-6153] [SQL] promote guava dep for hive-thriftserver This reverts commit b92d925d9dcfa601d65d4e6590f62f2aaf59dad2. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: