Skip to content

HADOOP-16058 S3A to support terasort - #577

Closed
steveloughran wants to merge 1 commit into
apache:trunkfrom
steveloughran:s3/HADOOP-16058-s3a-terasort-PR2
Closed

HADOOP-16058 S3A to support terasort#577
steveloughran wants to merge 1 commit into
apache:trunkfrom
steveloughran:s3/HADOOP-16058-s3a-terasort-PR2

Conversation

@steveloughran

Copy link
Copy Markdown
Contributor

HADOOP-16058 S3A to support terasort

Change-Id: Icd7911bd44d1382287808f60566a2405265adbd4

Change-Id: Icd7911bd44d1382287808f60566a2405265adbd4
@steveloughran

Copy link
Copy Markdown
ContributorAuthor

tested: S3 london, s3guard, versioned bucket. No noted problems

@hadoop-yetus

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec30Docker mode activated.
_ Prechecks _
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 19 new or modified test files.
_ trunk Compile Tests _
0mvndep90Maven dependency ordering for branch
+1mvninstall1435trunk passed
+1compile1221trunk passed
+1checkstyle243trunk passed
+1mvnsite145trunk passed
+1shadedclient1223branch has no errors when building and testing our client artifacts.
+1findbugs155trunk passed
+1javadoc92trunk passed
_ Patch Compile Tests _
0mvndep25Maven dependency ordering for patch
+1mvninstall100the patch passed
+1compile1112the patch passed
-1javac1112root generated 1 new + 1483 unchanged - 0 fixed = 1484 total (was 1483)
-0checkstyle239root: The patch generated 10 new + 77 unchanged - 0 fixed = 87 total (was 77)
+1mvnsite142the patch passed
+1whitespace0The patch has no whitespace issues.
+1xml2The patch has no ill-formed XML file.
+1shadedclient800patch has no errors when building and testing our client artifacts.
+1findbugs184the patch passed
+1javadoc85the patch passed
_ Other Tests _
-1unit7519hadoop-mapreduce-client-jobclient in the patch failed.
+1unit56hadoop-mapreduce-examples in the patch passed.
+1unit293hadoop-aws in the patch passed.
-1asflicense60The patch generated 1 ASF License warnings.
15149
ReasonTests
Failed junit testshadoop.mapred.TestMRTimelineEventHandling
SubsystemReport/Notes
DockerClient=17.05.0-ce Server=17.05.0-ce base: https://builds.apache.org/job/hadoop-multibranch/job/PR-577/1/artifact/out/Dockerfile
GITHUB PR#577
Optional Testsdupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient findbugs checkstyle xml
unameLinux 7823fae2cae6 4.4.0-139-generic #165~14.04.1-Ubuntu SMP Wed Oct 31 10:55:11 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
Build toolmaven
Personalitypersonality/hadoop.sh
git revisiontrunk / e026041
mavenversion: Apache Maven 3.3.9
Default Java1.8.0_191
findbugsv3.1.0-RC1
javachttps://builds.apache.org/job/hadoop-multibranch/job/PR-577/1/artifact/out/diff-compile-javac-root.txt
checkstylehttps://builds.apache.org/job/hadoop-multibranch/job/PR-577/1/artifact/out/diff-checkstyle-root.txt
unithttps://builds.apache.org/job/hadoop-multibranch/job/PR-577/1/artifact/out/patch-unit-hadoop-mapreduce-project_hadoop-mapreduce-client_hadoop-mapreduce-client-jobclient.txt
Test Resultshttps://builds.apache.org/job/hadoop-multibranch/job/PR-577/1/testReport/
asflicensehttps://builds.apache.org/job/hadoop-multibranch/job/PR-577/1/artifact/out/patch-asflicense-problems.txt
Max. process+thread count1183 (vs. ulimit of 5500)
modulesC: hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient hadoop-mapreduce-project/hadoop-mapreduce-examples hadoop-tools/hadoop-aws U: .
Console outputhttps://builds.apache.org/job/hadoop-multibranch/job/PR-577/1/console
Powered byApache Yetus 0.9.0 http://yetus.apache.org

This message was automatically generated.

@steveloughran

Copy link
Copy Markdown
ContributorAuthor

javac warning is about a deprected use of makeQualified(FileSystem); no plans to fix.

@ajfabbri

Copy link
Copy Markdown
Contributor

How do you usually apply these pull requests locally for testing? Anything easier than (1) adding remote (2) checkout branch from new remote, etc.? Almost wish there was a "click to download .patch" here.

@ajfabbri

Copy link
Copy Markdown
Contributor

+1 LGTM but have not tested yet. Working on that now.

@ajfabbri

Copy link
Copy Markdown
Contributor

pulled your branch and ran into other compile issues

[ERROR] TestZKSignerSecretProvider.testMultiple1:247->testMultiple:301 NoSuchMethod or...
[ERROR] TestZKSignerSecretProvider.testMultiple2:252->testMultiple:301 NoSuchMethod or...
[ERROR] TestZKSignerSecretProvider.testOne:87 NoSuchMethod org.mockito.Mockito.timeout...
[INFO]
[ERROR] Tests run: 138, Failures: 0, Errors: 3, Skipped: 0```

@steveloughran

Copy link
Copy Markdown
ContributorAuthor

thanks for the review. I saw that test on yetus on the hadoop JIRA patch submission. I'm not going anywhere near that module or any of the POM changs, so I can't come up with any theory why they will have broken. Maybe your .m2 cache has got into a mess?

@steveloughran

Copy link
Copy Markdown
ContributorAuthor

given I've got that +1, is it OK for me to commit if I do a local retest? Just trying to keep my personal-PR-count under control.

@steveloughran

Copy link
Copy Markdown
ContributorAuthor

@ajfabbri

  • you know for any pr, put .patch at the end and you get the patch
  • if you hit the "view command line instructions" you get the shell commands to checkout the branch. Probably best strategy for an evolving pr
  • And you can fetch the PR from the project by ID: git fetch origin pull/577/head:BRANCHNAME

@steveloughran

Copy link
Copy Markdown
ContributorAuthor

on trunk, the yarn smart-apply-patch works for me, provided I don't ask it to actually commit the PR

dev-support/bin/smart-apply-patch --project=hadoop GH:577

This will pull down the patch, apply it. doesn't seem to to work for older branches though...you'd probably need to update it everywhere to the latest yetus code.

@ajfabbri

Copy link
Copy Markdown
Contributor

Yep +1 for you to commit it with a local re-test. Thanks for the contribution. Also thanks for the smart-apply-patch tip!

@steveloughran

Copy link
Copy Markdown
ContributorAuthor

VS.code seems to have a github plugin for in-IDE reviewing: need to play with that. If you really can review & comments from in an IDE, that'd be wonderful

shanthoosh pushed a commit to shanthoosh/hadoop that referenced this pull request Oct 15, 2019
…ss public
Author: Aditya Toomula <atoomula@linkedin.com>
Reviewers: Prateek Maheshwari <pmaheshwari@apache.org>
Closesapache#577 from atoomula/table3
@steveloughran
steveloughran deleted the s3/HADOOP-16058-s3a-terasort-PR2 branch October 15, 2021 19:46
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants

@steveloughran@hadoop-yetus@ajfabbri