You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by andrewor14 <gi...@git.apache.org> on 2015/04/29 02:56:28 UTC

[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

GitHub user andrewor14 opened a pull request:

    https://github.com/apache/spark/pull/5765

    [TESTING ONLY] [DO] [NOT] [MERGE]

    

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/andrewor14/spark viz-test

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/spark/pull/5765.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #5765
    
----
commit 6b3403be587fce495276fcb137d3d8d7afc839a7
Author: Andrew Or <an...@databricks.com>
Date:   2015-04-17T00:33:26Z

    Scope all RDD methods
    
    This commit provides a mechanism to set and unset the call scope
    around each RDD operation defined in RDD.scala. This is useful
    for tagging an RDD with the scope in which it is created. This
    will be extended to similar methods in SparkContext.scala and
    other relevant files in a future commit.

commit a9ed4f9e563a6b4ba4a351f0170da53b3a4c973f
Author: Andrew Or <an...@databricks.com>
Date:   2015-04-17T00:46:19Z

    Add a few missing scopes to certain RDD methods

commit 5143523227d1dc989658f2f8a11e5fa97d8add03
Author: Andrew Or <an...@databricks.com>
Date:   2015-04-17T01:44:08Z

    Expose the necessary information in RDDInfo
    
    This includes the scope field that we added in previous commits,
    and the parent IDs for tracking the lineage through the listener
    API.

commit 21843488193295fea8a08c3cb1556d0b62a809ba
Author: Andrew Or <an...@databricks.com>
Date:   2015-04-17T18:00:31Z

    Translate RDD information to dot file
    
    It turns out that the previous scope information is insufficient
    for producing a valid dot file. In particular, the scope hierarchy
    was missing, but crucial to differentiate between a parent RDD
    being in the same encompassing scope and it being in a completely
    distinct scope. Also, unique scope identifiers are needed to
    simplify the code significantly.
    
    This commit further adds the translation logic in a UI listener
    that converts RDDInfos to dot files.

commit f22f3379edbdb301631440d1627fb633d0da143f
Author: Andrew Or <an...@databricks.com>
Date:   2015-04-17T20:52:17Z

    First working implementation of visualization with vis.js

commit 9fac6f37e08b74ae19fa268923d10871ffe08aed
Author: Andrew Or <an...@databricks.com>
Date:   2015-04-22T02:23:16Z

    Re-implement scopes through annotations instead
    
    The previous "working" implementation frequently ran into
    NotSerializableExceptions. Why? ClosureCleaner doesn't like
    closures being wrapped in other closures, and these closures
    are simply not cleaned (details are intentionally omitted here).
    
    This commit reimplements scoping through annotations. All methods
    that should be scoped are now annotated with @RDDScope. Then, on
    creation, each RDD derives its scope from the stack trace, similar
    to how it derives its call site. This is the cleanest approach
    that bypasses NotSerializableExceptions with least significant
    limitations.

commit 494d5c28b38d3d829f008a1bba406e63d4ec8680
Author: Andrew Or <an...@databricks.com>
Date:   2015-04-22T02:39:14Z

    Revert a few unintended style changes

commit 6a7cdcaed6bb6fd856bd7e2e15b0d78cbdb0b2d1
Author: Andrew Or <an...@databricks.com>
Date:   2015-04-22T03:00:30Z

    Move RDD scope util methods and logic to its own file
    
    Just a small code re-organization.

commit 5e22946945f683927cabafeb0ede3bc8e275e4a0
Author: Andrew Or <an...@databricks.com>
Date:   2015-04-22T03:01:17Z

    Merge branch 'master' of github.com:apache/spark into viz

commit 205f838477de8cabd28aab6301a67fd7d07bc517
Author: Andrew Or <an...@databricks.com>
Date:   2015-04-23T05:33:31Z

    Reimplement rendering with dagre-d3 instead of viz.js
    
    Before this commit, this patch relies on a JavaScript version of
    GraphViz that was compiled from C. Even the minified version of
    this resource was ~2.5M. The main motivation for switching away
    from this library, however, is that this is a complete black box
    of which we have absolutely no control. It is not at all extensible,
    and if something breaks we will have a hard time understanding
    why.
    
    The new library, dagre-d3, is not perfect either. It does not
    officially support clustering of nodes; for certain large graphs,
    the clusters will have a lot of unnecessary whitespace. A few in
    the dagre-d3 community are looking into a solution, but until then
    we will have to live with this (minor) inconvenience.

commit 86f78237b7623e4efa06c5feb053e0c304979c73
Author: Andrew Or <an...@databricks.com>
Date:   2015-04-24T10:05:58Z

    Implement transitive cleaning + add missing documentation
    
    See in-code comments for more detail on what this means.

commit 2390a608ed74a9703d3763d040421dccb51242ec
Author: Andrew Or <an...@databricks.com>
Date:   2015-04-24T10:08:11Z

    Feature flag this new behavior
    
    ... in case anything breaks, we should be able to resort to old
    behavior.

commit 438c68f82902c0b6899a4a8bb54783c1aef8a7dd
Author: Andrew Or <an...@databricks.com>
Date:   2015-04-24T19:17:09Z

    Minor changes

commit a4866e3387ff5341280753909e0e1ed9a66502f2
Author: Andrew Or <an...@databricks.com>
Date:   2015-04-24T23:18:18Z

    Add tests (still WIP)
    
    The existing ones are not passing yet because cleaning closures
    is not idempotent. This will be added in a future commit.

commit 06fd668eeec6ff773db8cf9e38c66937abf8ca5a
Author: Andrew Or <an...@databricks.com>
Date:   2015-04-24T23:29:09Z

    Make closure cleaning idempotent
    
    We need this for tests because we clean the same closure many
    times there. Outside of tests this is probably not important.

commit 263593ddc9224774b7af76ceb7364d2ee82aef2c
Author: Andrew Or <an...@databricks.com>
Date:   2015-04-24T23:58:13Z

    Finalize tests

commit 2106f125ec90f1984ea7b5ad5cb571f593ee1b5d
Author: Andrew Or <an...@databricks.com>
Date:   2015-04-25T00:29:25Z

    Merge branch 'master' of github.com:apache/spark into closure-cleaner

commit 6d36f385a7783aea22152b9937cb685081a7c020
Author: Andrew Or <an...@databricks.com>
Date:   2015-04-25T00:41:27Z

    Fix closure cleaner visibility

commit e6721706ac5e82b638062c3ae9f6dc35bf4e7e2d
Author: Andrew Or <an...@databricks.com>
Date:   2015-04-25T02:31:08Z

    Guard against potential infinite cycles in method visitor
    
    Now we keep track of the methods that we visited to avoid visiting
    the same method twice.

commit a3aa465e35753e0ee9b70f97bb1f41fc61b0f5aa
Author: Andrew Or <an...@databricks.com>
Date:   2015-04-25T08:57:48Z

    Add more tests for individual closure cleaner operations

commit eb127e54fa04ef17523806067d074b8560ea783e
Author: Andrew Or <an...@databricks.com>
Date:   2015-04-25T09:20:47Z

    Use private method tester for a few things

commit 8b71cdb7953ce622fd94fda7e0c5daafeb145cca
Author: Andrew Or <an...@databricks.com>
Date:   2015-04-25T21:46:47Z

    Update a few comments

commit e45e9049296e6f15a0e60febf3a5581db43c0ffb
Author: Andrew Or <an...@databricks.com>
Date:   2015-04-25T23:37:37Z

    More minor updates (wording, renaming etc.)

commit 4aab379c0d6bc12a9e0c4a984d87bbfc21bd948b
Author: Andrew Or <an...@databricks.com>
Date:   2015-04-25T23:38:52Z

    Merge branch 'master' of github.com:apache/spark into closure-cleaner

commit 6d4d3f1ac8da883fb814613afec35900b078b751
Author: Andrew Or <an...@databricks.com>
Date:   2015-04-26T03:07:35Z

    Fix scala style?

commit fe7816fe25c2f68ff2eee931ebe7a95b1cc97cdf
Author: Andrew Or <an...@databricks.com>
Date:   2015-04-27T19:37:41Z

    Merge branch 'master' of github.com:apache/spark into viz

commit 8dd5af265ee0c395c4c6d831ca697775d9e28104
Author: Andrew Or <an...@databricks.com>
Date:   2015-04-27T21:50:45Z

    Fill in documentation + miscellaneous minor changes
    
    For instance, this adds ability to throw away old stage graphs.

commit 71281fa15d3bebac583e93ff84c5062f760b753d
Author: Andrew Or <an...@databricks.com>
Date:   2015-04-27T22:40:52Z

    Embed the viz in the UI in a toggleable manner

commit 09d361eb53a98d758891f3db39d8c9d4c239ee88
Author: Andrew Or <an...@databricks.com>
Date:   2015-04-27T23:42:19Z

    Add ID to node label (minor)

commit 52187fcfaafe8d9ac4531a4a76c2c79281d43f73
Author: Andrew Or <an...@databricks.com>
Date:   2015-04-28T00:17:09Z

    Rat excludes

----


---
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 and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97289561
  
     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 have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97313300
  
    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 does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97299712
  
    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 does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97275892
  
    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 this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97275840
  
     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 have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by andrewor14 <gi...@git.apache.org>.
Github user andrewor14 commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97287032
  
    No!!


---
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 and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97290478
  
    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 this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by andrewor14 <gi...@git.apache.org>.
Github user andrewor14 commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97290267
  
    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 this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97299705
  
      [Test build #31235 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/31235/consoleFull) for   PR 5765 at commit [`3598d3d`](https://github.com/apache/spark/commit/3598d3d742215d9994d8052296221198a474bfa8).
     * This patch **fails MiMa tests**.
     * This patch merges cleanly.
     * This patch adds the following public classes _(experimental)_:
      * `   *   class SomethingNotSerializable `
      * `      logDebug(s" + cloning the object $obj of class $`
    
     * This patch does not change any dependencies.


---
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 and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97298604
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/31222/
    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 does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97298610
  
      [Test build #31235 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/31235/consoleFull) for   PR 5765 at commit [`3598d3d`](https://github.com/apache/spark/commit/3598d3d742215d9994d8052296221198a474bfa8).


---
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 and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97290494
  
      [Test build #31222 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/31222/consoleFull) for   PR 5765 at commit [`3598d3d`](https://github.com/apache/spark/commit/3598d3d742215d9994d8052296221198a474bfa8).


---
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 and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97313296
  
      [Test build #31239 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/31239/consoleFull) for   PR 5765 at commit [`3598d3d`](https://github.com/apache/spark/commit/3598d3d742215d9994d8052296221198a474bfa8).
     * This patch **fails PySpark unit tests**.
     * This patch merges cleanly.
     * This patch adds the following public classes _(experimental)_:
      * `   *   class SomethingNotSerializable `
      * `      logDebug(s" + cloning the object $obj of class $`
    
     * This patch does not change any dependencies.


---
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 and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97289708
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/31221/
    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 does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97289704
  
    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 does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97299825
  
     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 have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97298571
  
    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 this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97298564
  
     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 have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97276954
  
    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 does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by rxin <gi...@git.apache.org>.
Github user rxin commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97286274
  
    Thanks. I've merged this in branch-2.0.


---
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 and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97276398
  
      [Test build #31199 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/31199/consoleFull) for   PR 5765 at commit [`8d40167`](https://github.com/apache/spark/commit/8d401677ff49cb7980d5f11d7c6ada04a7e75809).


---
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 and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97276949
  
      [Test build #31199 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/31199/consoleFull) for   PR 5765 at commit [`8d40167`](https://github.com/apache/spark/commit/8d401677ff49cb7980d5f11d7c6ada04a7e75809).
     * This patch **fails Scala style tests**.
     * This patch merges cleanly.
     * This patch adds the following public classes _(experimental)_:
      * `   *   class SomethingNotSerializable `
      * `      logDebug(s" + cloning the object $obj of class $`
    
     * This patch does not change any dependencies.


---
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 and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97289572
  
    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 this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97283497
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/31201/
    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 does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97290469
  
     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 have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97283487
  
      [Test build #31201 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/31201/consoleFull) for   PR 5765 at commit [`8431865`](https://github.com/apache/spark/commit/8431865426496d5f1bc79cf9f78ef58817ecb464).
     * This patch **fails Spark unit tests**.
     * This patch merges cleanly.
     * This patch adds the following public classes _(experimental)_:
      * `   *   class SomethingNotSerializable `
      * `      logDebug(s" + cloning the object $obj of class $`
    
     * This patch does not change any dependencies.


---
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 and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97289592
  
      [Test build #31221 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/31221/consoleFull) for   PR 5765 at commit [`cea6769`](https://github.com/apache/spark/commit/cea6769edd8bc1d3595e68f4efde06c6df637c05).


---
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 and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by andrewor14 <gi...@git.apache.org>.
Github user andrewor14 commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97299809
  
    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 this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97276958
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/31199/
    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 does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97277941
  
    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 this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97298602
  
    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 does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97278193
  
      [Test build #31201 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/31201/consoleFull) for   PR 5765 at commit [`8431865`](https://github.com/apache/spark/commit/8431865426496d5f1bc79cf9f78ef58817ecb464).


---
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 and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97299836
  
    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 this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by andrewor14 <gi...@git.apache.org>.
Github user andrewor14 commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97297746
  
    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 this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97283496
  
    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 does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97299914
  
      [Test build #31239 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/31239/consoleFull) for   PR 5765 at commit [`3598d3d`](https://github.com/apache/spark/commit/3598d3d742215d9994d8052296221198a474bfa8).


---
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 and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97299713
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/31235/
    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 does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97289694
  
      [Test build #31221 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/31221/consoleFull) for   PR 5765 at commit [`cea6769`](https://github.com/apache/spark/commit/cea6769edd8bc1d3595e68f4efde06c6df637c05).
     * This patch **fails Scala style tests**.
     * This patch merges cleanly.
     * This patch adds the following public classes _(experimental)_:
      * `   *   class SomethingNotSerializable `
      * `      logDebug(s" + cloning the object $obj of class $`
    
     * This patch does not change any dependencies.


---
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 and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97277921
  
     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 have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97298591
  
      [Test build #31222 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/31222/consoleFull) for   PR 5765 at commit [`3598d3d`](https://github.com/apache/spark/commit/3598d3d742215d9994d8052296221198a474bfa8).
     * This patch **fails Spark unit tests**.
     * This patch merges cleanly.
     * This patch adds the following public classes _(experimental)_:
      * `   *   class SomethingNotSerializable `
      * `      logDebug(s" + cloning the object $obj of class $`
    
     * This patch does not change any dependencies.


---
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 and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request: [TESTING ONLY] [DO] [NOT] [MERGE]

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/5765#issuecomment-97313301
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/31239/
    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 does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org