[GitHub] spark pull request: [SPARK][SPARK-10842]Eliminate creating duplica...

2015-10-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/8923#issuecomment-148298768 [Test build #43772 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43772/consoleFull) for PR 8923 at commit [`6a68113`](https://gith

[GitHub] spark pull request: [SPARK-11125] [SQL] Unreadable exception when ...

2015-10-15 Thread zjffdu
GitHub user zjffdu opened a pull request: https://github.com/apache/spark/pull/9134 [SPARK-11125] [SQL] Unreadable exception when running spark-sql witho… …ut building with -Phive-thriftserver and SPARK_PREPEND_CLASSES is set This is the exception after this patch. `

[GitHub] spark pull request: [SPARK-11125] [SQL] Unreadable exception when ...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9134#issuecomment-148300028 Merged build triggered. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not h

[GitHub] spark pull request: [SPARK-11125] [SQL] Unreadable exception when ...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9134#issuecomment-148300064 Merged build started. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have

[GitHub] spark pull request: [SPARK-10534][SQL] ORDER BY clause allows only...

2015-10-15 Thread cloud-fan
Github user cloud-fan commented on a diff in the pull request: https://github.com/apache/spark/pull/9123#discussion_r42089770 --- Diff: sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/analysis/AnalysisSuite.scala --- @@ -135,4 +135,21 @@ class AnalysisSuite extends Analy

[GitHub] spark pull request: [SPARK-11125] [SQL] Unreadable exception when ...

2015-10-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/9134#issuecomment-148301968 [Test build #43774 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43774/consoleFull) for PR 9134 at commit [`2bdf979`](https://gith

[GitHub] spark pull request: [SPARK-11125] [SQL] Unreadable exception when ...

2015-10-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/9134#issuecomment-148302613 [Test build #43774 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43774/console) for PR 9134 at commit [`2bdf979`](https://github.

[GitHub] spark pull request: [SPARK-11125] [SQL] Unreadable exception when ...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9134#issuecomment-148302625 Test FAILed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43

[GitHub] spark pull request: [SPARK-11125] [SQL] Unreadable exception when ...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9134#issuecomment-148302621 Merged build finished. Test FAILed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project

[GitHub] spark pull request: [SPARK-10484][SQL] Optimize the cartesian join...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/8652#issuecomment-148305056 Merged build triggered. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not h

[GitHub] spark pull request: [SPARK-10484][SQL] Optimize the cartesian join...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/8652#issuecomment-148305081 Merged build started. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have

[GitHub] spark pull request: [SPARK-10484][SQL] Optimize the cartesian join...

2015-10-15 Thread chenghao-intel
Github user chenghao-intel commented on the pull request: https://github.com/apache/spark/pull/8652#issuecomment-148305296 @yhuai, after some investigation, I think the we still can optimize the left/right/full outer join in broadcasting way if they don't have condition, but LeftSemi

[GitHub] spark pull request: [SPARK-9741][SQL] Approximate Count Distinct u...

2015-10-15 Thread hvanhovell
Github user hvanhovell commented on the pull request: https://github.com/apache/spark/pull/8362#issuecomment-148305817 Another thought on hashing. The ClearSpring hash is a generic hash function. We could used very specialized (hopefully fast) hashing functions, because we know the ty

[GitHub] spark pull request: [SPARK-10484][SQL] Optimize the cartesian join...

2015-10-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/8652#issuecomment-148306268 [Test build #43775 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43775/consoleFull) for PR 8652 at commit [`26818c7`](https://gith

[GitHub] spark pull request: [SPARK-10534][SQL] ORDER BY clause allows only...

2015-10-15 Thread cloud-fan
Github user cloud-fan commented on the pull request: https://github.com/apache/spark/pull/9123#issuecomment-148306333 I wanna explain a bit more about this bug. When we resolve sort ordering, we will use a [special method](https://github.com/apache/spark/blob/master/sql/cataly

[GitHub] spark pull request: [SPARK-10534][SQL] ORDER BY clause allows only...

2015-10-15 Thread cloud-fan
Github user cloud-fan commented on the pull request: https://github.com/apache/spark/pull/9123#issuecomment-148306360 ok to test. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature

[GitHub] spark pull request: [SPARK-9741][SQL] Approximate Count Distinct u...

2015-10-15 Thread rxin
Github user rxin commented on the pull request: https://github.com/apache/spark/pull/8362#issuecomment-148306575 we can create a hash expression, and codegen that. And then just use hyperloglog(hash(field)). --- If your project is set up for it, you can reply to this email and have y

[GitHub] spark pull request: [SPARK-10534][SQL] ORDER BY clause allows only...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9123#issuecomment-148306706 Merged build started. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have

[GitHub] spark pull request: [SPARK-10534][SQL] ORDER BY clause allows only...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9123#issuecomment-148306682 Merged build triggered. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not h

[GitHub] spark pull request: [SPARK-10534][SQL] ORDER BY clause allows only...

2015-10-15 Thread cloud-fan
Github user cloud-fan commented on a diff in the pull request: https://github.com/apache/spark/pull/9123#discussion_r42091740 --- Diff: sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/Analyzer.scala --- @@ -482,7 +482,12 @@ class Analyzer( val newOrde

[GitHub] spark pull request: [SPARK-10534][SQL] ORDER BY clause allows only...

2015-10-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/9123#issuecomment-148307180 [Test build #43776 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43776/consoleFull) for PR 9123 at commit [`ac78af1`](https://gith

[GitHub] spark pull request: [SPARK-11104][Streaming]Fix a deadlock in Stre...

2015-10-15 Thread zsxwing
Github user zsxwing commented on a diff in the pull request: https://github.com/apache/spark/pull/9116#discussion_r42092604 --- Diff: streaming/src/main/scala/org/apache/spark/streaming/StreamingContext.scala --- @@ -694,31 +694,39 @@ class StreamingContext private[streaming] (

[GitHub] spark pull request: [SPARK-10534][SQL] ORDER BY clause allows only...

2015-10-15 Thread dilipbiswal
Github user dilipbiswal commented on a diff in the pull request: https://github.com/apache/spark/pull/9123#discussion_r42092649 --- Diff: sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/Analyzer.scala --- @@ -482,7 +482,12 @@ class Analyzer( val newOr

[GitHub] spark pull request: [SPARK-10484][SQL] Optimize the cartesian join...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/8652#issuecomment-148310087 Test FAILed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43

[GitHub] spark pull request: [SPARK-10484][SQL] Optimize the cartesian join...

2015-10-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/8652#issuecomment-148310064 [Test build #43775 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43775/console) for PR 8652 at commit [`26818c7`](https://github.

[GitHub] spark pull request: [SPARK-10484][SQL] Optimize the cartesian join...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/8652#issuecomment-148310086 Merged build finished. Test FAILed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project

[GitHub] spark pull request: [SPARK-10534][SQL] ORDER BY clause allows only...

2015-10-15 Thread dilipbiswal
Github user dilipbiswal commented on a diff in the pull request: https://github.com/apache/spark/pull/9123#discussion_r42092689 --- Diff: sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/analysis/AnalysisSuite.scala --- @@ -135,4 +135,21 @@ class AnalysisSuite extends Ana

[GitHub] spark pull request: [SPARK-11104][Streaming]Fix a deadlock in Stre...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9116#issuecomment-148310203 Merged build triggered. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not h

[GitHub] spark pull request: [SPARK-11104][Streaming]Fix a deadlock in Stre...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9116#issuecomment-148310218 Merged build started. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have

[GitHub] spark pull request: [SPARK-11104][Streaming]Fix a deadlock in Stre...

2015-10-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/9116#issuecomment-148310651 [Test build #43777 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43777/consoleFull) for PR 9116 at commit [`7c44b8c`](https://gith

[GitHub] spark pull request: [SPARK-10534][SQL] ORDER BY clause allows only...

2015-10-15 Thread dilipbiswal
Github user dilipbiswal commented on the pull request: https://github.com/apache/spark/pull/9123#issuecomment-148314200 @cloud-fan Hi Wenchen, i have fixed the code based on your comments. --- If your project is set up for it, you can reply to this email and have your reply appea

[GitHub] spark pull request: [SPARK-10534][SQL] ORDER BY clause allows only...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9123#issuecomment-148314559 Merged build triggered. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not h

[GitHub] spark pull request: [SPARK-10534][SQL] ORDER BY clause allows only...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9123#issuecomment-148314571 Merged build started. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have

[GitHub] spark pull request: [SPARK-10534][SQL] ORDER BY clause allows only...

2015-10-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/9123#issuecomment-148314896 [Test build #43778 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43778/consoleFull) for PR 9123 at commit [`6f97fb7`](https://gith

[GitHub] spark pull request: [SPARK-10484][SQL] Optimize the cartesian join...

2015-10-15 Thread chenghao-intel
Github user chenghao-intel commented on the pull request: https://github.com/apache/spark/pull/8652#issuecomment-148315153 retest this please --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have t

[GitHub] spark pull request: [SPARK-10484][SQL] Optimize the cartesian join...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/8652#issuecomment-148315405 Merged build triggered. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not h

[GitHub] spark pull request: [SPARK-10484][SQL] Optimize the cartesian join...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/8652#issuecomment-148315435 Merged build started. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have

[GitHub] spark pull request: [SPARK-10185] [SQL] Feat sql comma separated p...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/8416#issuecomment-148316285 Merged build started. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have

[GitHub] spark pull request: [SPARK-10185] [SQL] Feat sql comma separated p...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/8416#issuecomment-148316257 Merged build triggered. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not h

[GitHub] spark pull request: [SPARK-10185] [SQL] Feat sql comma separated p...

2015-10-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/8416#issuecomment-148316840 [Test build #43780 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43780/consoleFull) for PR 8416 at commit [`4cd1796`](https://gith

[GitHub] spark pull request: [SPARK-10484][SQL] Optimize the cartesian join...

2015-10-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/8652#issuecomment-148316845 [Test build #43779 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43779/consoleFull) for PR 8652 at commit [`26818c7`](https://gith

[GitHub] spark pull request: [SPARK-11124] JsonParser/Generator should be c...

2015-10-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/9130#issuecomment-148317713 [Test build #43767 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43767/console) for PR 9130 at commit [`f1d212a`](https://github.

[GitHub] spark pull request: [SPARK-11124] JsonParser/Generator should be c...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9130#issuecomment-148317795 Merged build finished. Test FAILed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project

[GitHub] spark pull request: [SPARK-11124] JsonParser/Generator should be c...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9130#issuecomment-148317796 Test FAILed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43

[GitHub] spark pull request: [SPARK-4526][MLLIB]Gradient should be added ba...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/3677#issuecomment-148319023 Merged build started. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have

[GitHub] spark pull request: [SPARK-4526][MLLIB]Gradient should be added ba...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/3677#issuecomment-148319006 Merged build triggered. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not h

[GitHub] spark pull request: [SPARK-10484][SQL] Optimize the cartesian join...

2015-10-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/8652#issuecomment-148320732 [Test build #43779 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43779/console) for PR 8652 at commit [`26818c7`](https://github.

[GitHub] spark pull request: [SPARK-10484][SQL] Optimize the cartesian join...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/8652#issuecomment-148320814 Merged build finished. Test FAILed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project

[GitHub] spark pull request: [SPARK-4526][MLLIB]Gradient should be added ba...

2015-10-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/3677#issuecomment-148320850 [Test build #43781 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43781/consoleFull) for PR 3677 at commit [`ad40bb5`](https://gith

[GitHub] spark pull request: [SPARK-4226][SQL]Add subquery (not) in/exists ...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9055#issuecomment-148320902 Merged build started. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have

[GitHub] spark pull request: [SPARK-10484][SQL] Optimize the cartesian join...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/8652#issuecomment-148320815 Test FAILed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43

[GitHub] spark pull request: [SPARK-4226][SQL]Add subquery (not) in/exists ...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9055#issuecomment-148320889 Merged build triggered. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not h

[GitHub] spark pull request: [SPARK-11104][Streaming]Fix a deadlock in Stre...

2015-10-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/9116#issuecomment-148321535 [Test build #43777 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43777/console) for PR 9116 at commit [`7c44b8c`](https://github.

[GitHub] spark pull request: [SPARK-10668][ML] Use WeightedLeastSquares in ...

2015-10-15 Thread dbtsai
Github user dbtsai commented on the pull request: https://github.com/apache/spark/pull/8884#issuecomment-148321601 I'll be able to merge this PR once the following two issues are addressed, 1) Have a test to verify that `L1` with normal will throw `IllegalArugmentExcpetion`. I

[GitHub] spark pull request: [SPARK-11104][Streaming]Fix a deadlock in Stre...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9116#issuecomment-148321661 Test PASSed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43

[GitHub] spark pull request: [SPARK-11104][Streaming]Fix a deadlock in Stre...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9116#issuecomment-148321658 Merged build finished. Test PASSed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project

[GitHub] spark pull request: [SPARK-4226][SQL]Add subquery (not) in/exists ...

2015-10-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/9055#issuecomment-148322379 [Test build #43782 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43782/consoleFull) for PR 9055 at commit [`7511f47`](https://gith

[GitHub] spark pull request: [SPARK-11125] [SQL] Unreadable exception when ...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9134#issuecomment-148323628 Merged build triggered. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not h

[GitHub] spark pull request: [SPARK-11125] [SQL] Unreadable exception when ...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9134#issuecomment-148323656 Merged build started. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have

[GitHub] spark pull request: [SPARK-11126][SQL]Fix a memory leak in SQLList...

2015-10-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/9132#issuecomment-148323716 [Test build #43773 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43773/console) for PR 9132 at commit [`048cd5b`](https://github.

[GitHub] spark pull request: [SPARK-11126][SQL]Fix a memory leak in SQLList...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9132#issuecomment-148323855 Test PASSed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43

[GitHub] spark pull request: [SPARK-11126][SQL]Fix a memory leak in SQLList...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9132#issuecomment-148323853 Merged build finished. Test PASSed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project

[GitHub] spark pull request: [SPARK-11121][Core] Correct the TaskLocation t...

2015-10-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/9096#issuecomment-148325066 [Test build #43771 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43771/console) for PR 9096 at commit [`8f77575`](https://github.

[GitHub] spark pull request: [SPARK-11121][Core] Correct the TaskLocation t...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9096#issuecomment-148325206 Test PASSed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43

[GitHub] spark pull request: [SPARK-11121][Core] Correct the TaskLocation t...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9096#issuecomment-148325204 Merged build finished. Test PASSed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project

[GitHub] spark pull request: [SPARK-11125] [SQL] Unreadable exception when ...

2015-10-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/9134#issuecomment-148326244 [Test build #43783 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43783/consoleFull) for PR 9134 at commit [`5b6e651`](https://gith

[GitHub] spark pull request: [SPARK-4226][SQL]Add subquery (not) in/exists ...

2015-10-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/9055#issuecomment-148326579 [Test build #43782 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43782/console) for PR 9055 at commit [`7511f47`](https://github.

[GitHub] spark pull request: [SPARK-4226][SQL]Add subquery (not) in/exists ...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9055#issuecomment-148326617 Merged build finished. Test FAILed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project

[GitHub] spark pull request: [SPARK-4226][SQL]Add subquery (not) in/exists ...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9055#issuecomment-148326620 Test FAILed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43

[GitHub] spark pull request: [SPARK][SPARK-10842]Eliminate creating duplica...

2015-10-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/8923#issuecomment-148328074 [Test build #43772 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43772/console) for PR 8923 at commit [`6a68113`](https://github.

[GitHub] spark pull request: [SPARK][SPARK-10842]Eliminate creating duplica...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/8923#issuecomment-148328328 Merged build finished. Test PASSed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project

[GitHub] spark pull request: [SPARK][SPARK-10842]Eliminate creating duplica...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/8923#issuecomment-148328330 Test PASSed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43

[GitHub] spark pull request: [SPARK-4526][MLLIB]Gradient should be added ba...

2015-10-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/3677#issuecomment-148332965 [Test build #43781 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43781/console) for PR 3677 at commit [`ad40bb5`](https://github.

[GitHub] spark pull request: [SPARK-4526][MLLIB]Gradient should be added ba...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/3677#issuecomment-148333298 Merged build finished. Test PASSed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project

[GitHub] spark pull request: [SPARK-4526][MLLIB]Gradient should be added ba...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/3677#issuecomment-148333299 Test PASSed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43

[GitHub] spark pull request: [SPARK-10534][SQL] ORDER BY clause allows only...

2015-10-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/9123#issuecomment-148335260 [Test build #43776 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43776/console) for PR 9123 at commit [`ac78af1`](https://github.

[GitHub] spark pull request: [SPARK-10534][SQL] ORDER BY clause allows only...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9123#issuecomment-148335401 Merged build finished. Test PASSed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project

[GitHub] spark pull request: [SPARK-10534][SQL] ORDER BY clause allows only...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9123#issuecomment-148335402 Test PASSed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43

[GitHub] spark pull request: [SPARK-10534][SQL] ORDER BY clause allows only...

2015-10-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/9123#issuecomment-148342359 [Test build #43778 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43778/console) for PR 9123 at commit [`6f97fb7`](https://github.

[GitHub] spark pull request: [SPARK-10534][SQL] ORDER BY clause allows only...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9123#issuecomment-148342506 Merged build finished. Test PASSed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project

[GitHub] spark pull request: [SPARK-10534][SQL] ORDER BY clause allows only...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9123#issuecomment-148342508 Test PASSed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43

[GitHub] spark pull request: [SPARK-10185] [SQL] Feat sql comma separated p...

2015-10-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/8416#issuecomment-148343576 [Test build #43780 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43780/console) for PR 8416 at commit [`4cd1796`](https://github.

[GitHub] spark pull request: [SPARK-10185] [SQL] Feat sql comma separated p...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/8416#issuecomment-148343732 Test PASSed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43

[GitHub] spark pull request: [SPARK-10185] [SQL] Feat sql comma separated p...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/8416#issuecomment-148343731 Merged build finished. Test PASSed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project

[GitHub] spark pull request: [SPARK-11047] Internal accumulators miss the i...

2015-10-15 Thread zsxwing
Github user zsxwing commented on the pull request: https://github.com/apache/spark/pull/9061#issuecomment-148343787 LGTM --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled a

[GitHub] spark pull request: [SPARK-11092] [Docs] Add source links to scala...

2015-10-15 Thread srowen
Github user srowen commented on the pull request: https://github.com/apache/spark/pull/9110#issuecomment-148344776 OK thank you, I probably should have suspected it was on purpose. Seems OK to me. --- If your project is set up for it, you can reply to this email and have your reply a

[GitHub] spark pull request: [SPARK-11092] [Docs] Add source links to scala...

2015-10-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/9110#issuecomment-148345206 [Test build #1905 has started](https://amplab.cs.berkeley.edu/jenkins/job/NewSparkPullRequestBuilder/1905/consoleFull) for PR 9110 at commit [`7a7d21e`](https://git

[GitHub] spark pull request: [SPARK-11104][Streaming]Fix a deadlock in Stre...

2015-10-15 Thread srowen
Github user srowen commented on the pull request: https://github.com/apache/spark/pull/9116#issuecomment-148345442 Hm, this is getting unwieldy. There are several nested try blocks here. The same argument goes for many of these methods -- if one fails should they not continue trying?

[GitHub] spark pull request: [SPARK-7799][Streaming]Add "streaming-akka" pr...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/6841#issuecomment-148349307 Merged build triggered. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not h

[GitHub] spark pull request: [SPARK-7799][Streaming]Add "streaming-akka" pr...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/6841#issuecomment-148349331 Merged build started. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have

[GitHub] spark pull request: [SPARK-7799][Streaming]Add "streaming-akka" pr...

2015-10-15 Thread zsxwing
Github user zsxwing commented on a diff in the pull request: https://github.com/apache/spark/pull/6841#discussion_r42108278 --- Diff: project/SparkBuild.scala --- @@ -33,13 +33,17 @@ object BuildCommons { private val buildLocation = file(".").getAbsoluteFile.getParentFi

[GitHub] spark pull request: [SPARK-11119][SQL] cleanup for unsafe array an...

2015-10-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/9131#issuecomment-148349695 **[Test build #43770 timed out](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43770/console)** for PR 9131 at commit [`424e937`](https://github

[GitHub] spark pull request: [SPARK-11119][SQL] cleanup for unsafe array an...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9131#issuecomment-148349751 Test FAILed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43

[GitHub] spark pull request: [SPARK-11119][SQL] cleanup for unsafe array an...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9131#issuecomment-148349750 Merged build finished. Test FAILed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project

[GitHub] spark pull request: [SPARK-7799][Streaming]Add "streaming-akka" pr...

2015-10-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/6841#issuecomment-148349753 [Test build #43784 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43784/consoleFull) for PR 6841 at commit [`73d883d`](https://gith

[GitHub] spark pull request: [SPARK-7799][Streaming]Add "streaming-akka" pr...

2015-10-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/6841#issuecomment-148350047 [Test build #43784 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43784/console) for PR 6841 at commit [`73d883d`](https://github.

[GitHub] spark pull request: [SPARK-7799][Streaming]Add "streaming-akka" pr...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/6841#issuecomment-148350051 Test FAILed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43

[GitHub] spark pull request: [SPARK-7799][Streaming]Add "streaming-akka" pr...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/6841#issuecomment-148350050 Merged build finished. Test FAILed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project

[GitHub] spark pull request: [SPARK-11125] [SQL] Unreadable exception when ...

2015-10-15 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/9134#issuecomment-148353456 [Test build #43783 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/43783/console) for PR 9134 at commit [`5b6e651`](https://github.

[GitHub] spark pull request: [SPARK-11125] [SQL] Unreadable exception when ...

2015-10-15 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request: https://github.com/apache/spark/pull/9134#issuecomment-148353596 Merged build finished. Test FAILed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project

  1   2   3   4   5   6   >