-
Notifications
You must be signed in to change notification settings - Fork 28.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SPARK-1497. Fix scalastyle warnings in YARN, Hive code #413
Conversation
Merged build triggered. |
Merged build started. |
Merged build finished. |
Refer to this link for build results: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/14144/ |
Jenkins, retest this please. |
Merged build triggered. |
Merged build started. |
Merged build finished. |
Refer to this link for build results: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/14145/ |
Different unrelated failures each time. One more roll of the dice. Jenkins, retest this please. |
Thanks for looking at this! To add this to the test harness you can augment
|
Done, and good thing as it turned up a few more long lines to cut down. |
Merged build triggered. |
Merged build started. |
Merged build finished. All automated tests passed. |
All automated tests passed. |
@@ -18,6 +18,10 @@ | |||
# | |||
|
|||
echo -e "q\n" | sbt/sbt clean scalastyle > scalastyle.txt | |||
# Check style with YARN alpha built too |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any interest in doing the hive one here too? I edited my comment earlier to show how to do that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Never mind - these are checked already.
Thanks - I've merged this! |
(I wasn't sure how to automatically set `SPARK_YARN=true` and `SPARK_HIVE=true` when running scalastyle, but these are the errors that turn up.) Author: Sean Owen <[email protected]> Closes #413 from srowen/SPARK-1497 and squashes the following commits: f0c9318 [Sean Owen] Fix more scalastyle warnings in yarn 80bf4c3 [Sean Owen] Add YARN alpha / YARN profile to scalastyle check 026319c [Sean Owen] Fix scalastyle warnings in YARN, Hive code (cherry picked from commit 77f8367) Signed-off-by: Patrick Wendell <[email protected]>
Adjusted visibility of various components and documentation for 0.9.0 release.
API doc update & make Broadcast public In apache#413 Broadcast was mistakenly made private[spark]. I changed it to public again. Also exposing id in public given the R frontend requires that. Copied some of the documentation from the programming guide to API Doc for Broadcast and Accumulator. This should be cherry picked into branch-0.9 as well for 0.9.0 release.
(I wasn't sure how to automatically set `SPARK_YARN=true` and `SPARK_HIVE=true` when running scalastyle, but these are the errors that turn up.) Author: Sean Owen <[email protected]> Closes apache#413 from srowen/SPARK-1497 and squashes the following commits: f0c9318 [Sean Owen] Fix more scalastyle warnings in yarn 80bf4c3 [Sean Owen] Add YARN alpha / YARN profile to scalastyle check 026319c [Sean Owen] Fix scalastyle warnings in YARN, Hive code
API doc update & make Broadcast public In apache#413 Broadcast was mistakenly made private[spark]. I changed it to public again. Also exposing id in public given the R frontend requires that. Copied some of the documentation from the programming guide to API Doc for Broadcast and Accumulator. This should be cherry picked into branch-0.9 as well for 0.9.0 release. (cherry picked from commit 2ce23a5) Signed-off-by: Reynold Xin <[email protected]>
Revert TF_SCHEMA_PANIC_ON_ERROR for Terraform OpenStack Provider
(I wasn't sure how to automatically set
SPARK_YARN=true
andSPARK_HIVE=true
when running scalastyle, but these are the errors that turn up.)