Skip to content
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

HADOOP-17191. ABFS: Run tests with all AuthTypes #2202

Closed
wants to merge 24 commits into from

Conversation

bilaharith
Copy link
Contributor

@bilaharith bilaharith commented Aug 7, 2020

ADLS Gen 2 supports accounts with and without hierarchical namespace support.
ABFS driver supports various authorization mechanisms like OAuth, SharedKey,
Shared Access Signature. The integration tests need to be executed against
accounts with and without hierarchical namespace support using various
authorization mechanisms.

The aforementioned combinations of tests are ran automatically. Currently,
tests are ran against accounts with and without hierarchical name space
support. Authorisation mechanisms supported are OAuth and SharedKey. The
combinations to run the tests against should be configured in the
azure-auth-keys.xml using the property fs.azure.test.combinations. Each
combination has to be separated with a |. The first config to mention in
should be the account type (HNS and NonHNS). Second one being the
authorisation type (OAuth, SharedKey). The configuration values has to be
separated with -. An example value would be
HNS-SharedKey|HNS-OAuth|NonHNS-SharedKey. Account names for both HNS and
NonHNS has to be specified within the configuration file using the keys
fs.azure.hns.abfs.account.name and fs.azure.nonhns.abfs.account.name.

How to write test cases to run against all the configured combinations
A test written in a test class is run with all the combinations configured if
the class implements the AbfsTestable interface and a rule instance of type
AbfsTestsRule is part of the class. In case if a particular test case needs
to run with only a certain combinations the same can be mentioned with the
method level annotation AbfsConfigsToTest. If a hadoop contract test class
needs to exclude certain auth types, the same cannot be done with the
AbfsConfigsToTest annotation, as the tests are present in the hadoop-common
module. The same can be achieved by implementing the excludeAuthTypes method
of the AbfsTestable interface.

@bilaharith
Copy link
Contributor Author

Driver test results using accounts in Central India
mvn -T 1C -Dparallel-tests=abfs -Dscale -DtestsThreadCount=8 clean verify

[INFO] Tests run: 87, Failures: 0, Errors: 0, Skipped: 0
[ERROR] Errors:
[ERROR] ITestAbfsInputStreamStatistics.testReadAheadCounters:346 » TestTimedOut test t...
[INFO]
[ERROR] Tests run: 451, Failures: 0, Errors: 1, Skipped: 18
[WARNING] Tests run: 207, Failures: 0, Errors: 0, Skipped: 16

@bilaharith bilaharith force-pushed the allauthtests branch 5 times, most recently from 53a7f00 to 79b9109 Compare August 11, 2020 06:04
Copy link
Contributor

@steveloughran steveloughran left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a big change to the test set up.

My ability to review this is hampered by the fact there is no explanation in the JIRA or PR as to what it is directly trying to do.

Proposed

  • a paragraph in both outlining what your goal is
  • details in testing_azure.md, including detailed instructions for people writing new test as to what they are expected to do.

Now is it is now a requirement that people running tests have multiple authentication mechanisms? Because we been having problems recently with test to have different expectations from some of us testers. Will this help there or would it make things worse?

Various tests are fiddling with test timeouts. Either things have got very slow are you been changing them so you can debug stuff. If you do have to multiply what there is, why not make this a single constant?

finally, my comments on imports are predictable. Save time by guessing what I will say.

@@ -214,6 +214,8 @@ private boolean executeHttpOperation(final int retryCount) throws AzureBlobFileS
httpOperation = new AbfsHttpOperation(url, method, requestHeaders);
incrementCounter(AbfsStatistic.CONNECTIONS_MADE, 1);

LOG.error("{}.{}", client.getAuthType(), url);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

???

@@ -23,9 +23,12 @@
*/
public final class TestConfigurationKeys {
public static final String FS_AZURE_ACCOUNT_NAME = "fs.azure.account.name";
public static final String FS_AZURE_ABFS_HNS_ACCOUNT_NAME = "fs.azure.hns.abfs.account.name";
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

javadocs please

import org.apache.hadoop.fs.Path;
import org.apache.hadoop.fs.azurebfs.constants.FileSystemUriSchemes;
import org.apache.hadoop.fs.azurebfs.utils.UriUtils;
import org.apache.hadoop.fs.contract.AbstractBondedFSContract;

import java.io.IOException;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

import ordering

protected Configuration createConfiguration() {
return this.binding.getRawConfiguration();
protected int getTestTimeoutMillis() {
return 3 * 180000;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why the change? and use 9 * 60_000 for readability

*/
@InterfaceAudience.Private
@InterfaceStability.Evolving
package org.apache.hadoop.fs.azurebfs.rules;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

add a javadoc to describe package

@@ -25,13 +25,19 @@
import java.util.UUID;
import java.util.concurrent.Callable;

import org.apache.hadoop.fs.azurebfs.constants.TestConfigurationKeys;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

import ordering

@@ -50,20 +56,24 @@
import org.apache.hadoop.fs.permission.FsPermission;
import org.apache.hadoop.io.IOUtils;

import static org.junit.Assume.assumeTrue;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

avoid import reordering

@@ -54,6 +55,10 @@ public ITestAbfsClient() throws Exception {
super();
}

protected int getTestTimeoutMillis() {
return 3 * TEST_TIMEOUT;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

really that long? Why the hard coding

import java.io.FileNotFoundException;
import java.util.List;
import java.util.UUID;

import org.junit.Assume;
import org.junit.Ignore;
import org.junit.Test;
import com.google.common.collect.Lists;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

import reordering. Once in, best to leave alone unless you enjoy more merge pain than normal.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
+0 🆗 reexec 1m 16s Docker mode activated.
_ Prechecks _
+1 💚 dupname 0m 1s No case conflicting files found.
+0 🆗 markdownlint 0m 0s markdownlint was not available.
+1 💚 @author 0m 0s The patch does not contain any @author tags.
+1 💚 test4tests 0m 0s The patch appears to include 54 new or modified test files.
_ trunk Compile Tests _
+1 💚 mvninstall 34m 54s trunk passed
+1 💚 compile 0m 36s trunk passed with JDK Ubuntu-11.0.8+10-post-Ubuntu-0ubuntu118.04.1
+1 💚 compile 0m 30s trunk passed with JDK Private Build-1.8.0_265-8u265-b01-0ubuntu2~18.04-b01
+1 💚 checkstyle 0m 24s trunk passed
+1 💚 mvnsite 0m 35s trunk passed
+1 💚 shadedclient 17m 43s branch has no errors when building and testing our client artifacts.
+1 💚 javadoc 0m 30s trunk passed with JDK Ubuntu-11.0.8+10-post-Ubuntu-0ubuntu118.04.1
+1 💚 javadoc 0m 23s trunk passed with JDK Private Build-1.8.0_265-8u265-b01-0ubuntu2~18.04-b01
+0 🆗 spotbugs 1m 1s Used deprecated FindBugs config; considering switching to SpotBugs.
+1 💚 findbugs 0m 59s trunk passed
-0 ⚠️ patch 1m 18s Used diff version of patch file. Binary files and potentially other changes not applied. Please rebase and squash commits if necessary.
_ Patch Compile Tests _
+1 💚 mvninstall 0m 32s the patch passed
+1 💚 compile 0m 33s the patch passed with JDK Ubuntu-11.0.8+10-post-Ubuntu-0ubuntu118.04.1
+1 💚 javac 0m 33s the patch passed
+1 💚 compile 0m 27s the patch passed with JDK Private Build-1.8.0_265-8u265-b01-0ubuntu2~18.04-b01
+1 💚 javac 0m 27s the patch passed
-0 ⚠️ checkstyle 0m 19s hadoop-tools/hadoop-azure: The patch generated 4 new + 11 unchanged - 1 fixed = 15 total (was 12)
+1 💚 mvnsite 0m 31s the patch passed
-1 ❌ whitespace 0m 0s The patch has 2 line(s) that end in whitespace. Use git apply --whitespace=fix <<patch_file>>. Refer https://git-scm.com/docs/git-apply
-1 ❌ whitespace 0m 0s The patch 89 line(s) with tabs.
+1 💚 xml 0m 2s The patch has no ill-formed XML file.
+1 💚 shadedclient 16m 19s patch has no errors when building and testing our client artifacts.
+1 💚 javadoc 0m 24s the patch passed with JDK Ubuntu-11.0.8+10-post-Ubuntu-0ubuntu118.04.1
+1 💚 javadoc 0m 21s the patch passed with JDK Private Build-1.8.0_265-8u265-b01-0ubuntu2~18.04-b01
+1 💚 findbugs 1m 7s the patch passed
_ Other Tests _
+1 💚 unit 1m 28s hadoop-azure in the patch passed.
-1 ❌ asflicense 0m 30s The patch generated 1 ASF License warnings.
82m 45s
Subsystem Report/Notes
Docker ClientAPI=1.40 ServerAPI=1.40 base: https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-2202/13/artifact/out/Dockerfile
GITHUB PR #2202
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient xml markdownlint findbugs checkstyle
uname Linux 86b39620f84b 4.15.0-112-generic #113-Ubuntu SMP Thu Jul 9 23:41:39 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/bin/hadoop.sh
git revision trunk / 83fd15b
Default Java Private Build-1.8.0_265-8u265-b01-0ubuntu2~18.04-b01
Multi-JDK versions /usr/lib/jvm/java-11-openjdk-amd64:Ubuntu-11.0.8+10-post-Ubuntu-0ubuntu118.04.1 /usr/lib/jvm/java-8-openjdk-amd64:Private Build-1.8.0_265-8u265-b01-0ubuntu2~18.04-b01
checkstyle https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-2202/13/artifact/out/diff-checkstyle-hadoop-tools_hadoop-azure.txt
whitespace https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-2202/13/artifact/out/whitespace-eol.txt
whitespace https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-2202/13/artifact/out/whitespace-tabs.txt
Test Results https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-2202/13/testReport/
asflicense https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-2202/13/artifact/out/patch-asflicense-problems.txt
Max. process+thread count 311 (vs. ulimit of 5500)
modules C: hadoop-tools/hadoop-azure U: hadoop-tools/hadoop-azure
Console output https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-2202/13/console
versions git=2.17.1 maven=3.6.0 findbugs=4.0.6
Powered by Apache Yetus 0.13.0-SNAPSHOT https://yetus.apache.org

This message was automatically generated.

@bilaharith
Copy link
Contributor Author

This is a big change to the test set up.

My ability to review this is hampered by the fact there is no explanation in the JIRA or PR as to what it is directly trying to do.

Proposed

  • a paragraph in both outlining what your goal is
  • details in testing_azure.md, including detailed instructions for people writing new test as to what they are expected to do.

Now is it is now a requirement that people running tests have multiple authentication mechanisms? Because we been having problems recently with test to have different expectations from some of us testers. Will this help there or would it make things worse?

Various tests are fiddling with test timeouts. Either things have got very slow are you been changing them so you can debug stuff. If you do have to multiply what there is, why not make this a single constant?

finally, my comments on imports are predictable. Save time by guessing what I will say.

Thanks @steveloughran for the comments. I have still kept this PR as draft(work in progress). The comments will be addressed once the same is ready to review.

@apache apache deleted a comment from hadoop-yetus Aug 24, 2020
@apache apache deleted a comment from hadoop-yetus Aug 24, 2020
@apache apache deleted a comment from hadoop-yetus Aug 24, 2020
@apache apache deleted a comment from hadoop-yetus Aug 24, 2020
@apache apache deleted a comment from hadoop-yetus Aug 24, 2020
@apache apache deleted a comment from hadoop-yetus Aug 24, 2020
@apache apache deleted a comment from hadoop-yetus Aug 24, 2020
@apache apache deleted a comment from hadoop-yetus Aug 24, 2020
@apache apache deleted a comment from hadoop-yetus Aug 24, 2020
@apache apache deleted a comment from hadoop-yetus Aug 24, 2020
@apache apache deleted a comment from hadoop-yetus Aug 24, 2020
@steveloughran steveloughran added fs/azure changes related to azure; submitter must declare test endpoint work in progress PRs still Work in Progress; reviews not expected but still welcome labels Aug 24, 2020
@steveloughran
Copy link
Contributor

ok...labelled as WiP. Thanks for the docs, makes it a lot clearer

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
+0 🆗 reexec 0m 0s Docker mode activated.
-1 ❌ patch 0m 4s #2202 does not apply to trunk. Rebase required? Wrong Branch? See https://wiki.apache.org/hadoop/HowToContribute for help.
Subsystem Report/Notes
GITHUB PR #2202
Console output https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-2202/14/console
versions git=2.17.1
Powered by Apache Yetus 0.13.0-SNAPSHOT https://yetus.apache.org

This message was automatically generated.

@bilaharith bilaharith marked this pull request as ready for review August 25, 2020 06:32
@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
+0 🆗 reexec 1m 2s Docker mode activated.
_ Prechecks _
+1 💚 dupname 0m 1s No case conflicting files found.
+0 🆗 markdownlint 0m 1s markdownlint was not available.
+1 💚 @author 0m 0s The patch does not contain any @author tags.
+1 💚 test4tests 0m 0s The patch appears to include 57 new or modified test files.
_ trunk Compile Tests _
+1 💚 mvninstall 29m 15s trunk passed
+1 💚 compile 0m 35s trunk passed with JDK Ubuntu-11.0.8+10-post-Ubuntu-0ubuntu118.04.1
+1 💚 compile 0m 33s trunk passed with JDK Private Build-1.8.0_265-8u265-b01-0ubuntu2~18.04-b01
+1 💚 checkstyle 0m 27s trunk passed
+1 💚 mvnsite 0m 38s trunk passed
+1 💚 shadedclient 15m 3s branch has no errors when building and testing our client artifacts.
+1 💚 javadoc 0m 31s trunk passed with JDK Ubuntu-11.0.8+10-post-Ubuntu-0ubuntu118.04.1
+1 💚 javadoc 0m 28s trunk passed with JDK Private Build-1.8.0_265-8u265-b01-0ubuntu2~18.04-b01
+0 🆗 spotbugs 0m 58s Used deprecated FindBugs config; considering switching to SpotBugs.
+1 💚 findbugs 0m 55s trunk passed
-0 ⚠️ patch 1m 14s Used diff version of patch file. Binary files and potentially other changes not applied. Please rebase and squash commits if necessary.
_ Patch Compile Tests _
+1 💚 mvninstall 0m 29s the patch passed
+1 💚 compile 0m 29s the patch passed with JDK Ubuntu-11.0.8+10-post-Ubuntu-0ubuntu118.04.1
+1 💚 javac 0m 29s hadoop-tools_hadoop-azure-jdkUbuntu-11.0.8+10-post-Ubuntu-0ubuntu118.04.1 with JDK Ubuntu-11.0.8+10-post-Ubuntu-0ubuntu118.04.1 generated 0 new + 12 unchanged - 3 fixed = 12 total (was 15)
+1 💚 compile 0m 24s the patch passed with JDK Private Build-1.8.0_265-8u265-b01-0ubuntu2~18.04-b01
+1 💚 javac 0m 24s hadoop-tools_hadoop-azure-jdkPrivateBuild-1.8.0_265-8u265-b01-0ubuntu218.04-b01 with JDK Private Build-1.8.0_265-8u265-b01-0ubuntu218.04-b01 generated 0 new + 6 unchanged - 3 fixed = 6 total (was 9)
-0 ⚠️ checkstyle 0m 17s hadoop-tools/hadoop-azure: The patch generated 1 new + 30 unchanged - 2 fixed = 31 total (was 32)
+1 💚 mvnsite 0m 28s the patch passed
+1 💚 whitespace 0m 0s The patch has no whitespace issues.
+1 💚 shadedclient 13m 54s patch has no errors when building and testing our client artifacts.
+1 💚 javadoc 0m 25s the patch passed with JDK Ubuntu-11.0.8+10-post-Ubuntu-0ubuntu118.04.1
+1 💚 javadoc 0m 24s the patch passed with JDK Private Build-1.8.0_265-8u265-b01-0ubuntu2~18.04-b01
+1 💚 findbugs 0m 55s the patch passed
_ Other Tests _
+1 💚 unit 1m 39s hadoop-azure in the patch passed.
-1 ❌ asflicense 0m 31s The patch generated 1 ASF License warnings.
71m 48s
Subsystem Report/Notes
Docker ClientAPI=1.40 ServerAPI=1.40 base: https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-2202/16/artifact/out/Dockerfile
GITHUB PR #2202
Optional Tests dupname asflicense mvnsite markdownlint compile javac javadoc mvninstall unit shadedclient findbugs checkstyle
uname Linux f673a8648e04 4.15.0-112-generic #113-Ubuntu SMP Thu Jul 9 23:41:39 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/bin/hadoop.sh
git revision trunk / a932796
Default Java Private Build-1.8.0_265-8u265-b01-0ubuntu2~18.04-b01
Multi-JDK versions /usr/lib/jvm/java-11-openjdk-amd64:Ubuntu-11.0.8+10-post-Ubuntu-0ubuntu118.04.1 /usr/lib/jvm/java-8-openjdk-amd64:Private Build-1.8.0_265-8u265-b01-0ubuntu2~18.04-b01
checkstyle https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-2202/16/artifact/out/diff-checkstyle-hadoop-tools_hadoop-azure.txt
Test Results https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-2202/16/testReport/
asflicense https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-2202/16/artifact/out/patch-asflicense-problems.txt
Max. process+thread count 469 (vs. ulimit of 5500)
modules C: hadoop-tools/hadoop-azure U: hadoop-tools/hadoop-azure
Console output https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-2202/16/console
versions git=2.17.1 maven=3.6.0 findbugs=4.0.6
Powered by Apache Yetus 0.13.0-SNAPSHOT https://yetus.apache.org

This message was automatically generated.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
+0 🆗 reexec 30m 22s Docker mode activated.
_ Prechecks _
+1 💚 dupname 0m 0s No case conflicting files found.
+0 🆗 markdownlint 0m 0s markdownlint was not available.
+1 💚 @author 0m 0s The patch does not contain any @author tags.
+1 💚 test4tests 0m 0s The patch appears to include 57 new or modified test files.
_ trunk Compile Tests _
+1 💚 mvninstall 31m 3s trunk passed
+1 💚 compile 0m 33s trunk passed with JDK Ubuntu-11.0.8+10-post-Ubuntu-0ubuntu118.04.1
+1 💚 compile 0m 29s trunk passed with JDK Private Build-1.8.0_265-8u265-b01-0ubuntu2~18.04-b01
+1 💚 checkstyle 0m 22s trunk passed
+1 💚 mvnsite 0m 34s trunk passed
+1 💚 shadedclient 16m 26s branch has no errors when building and testing our client artifacts.
+1 💚 javadoc 0m 26s trunk passed with JDK Ubuntu-11.0.8+10-post-Ubuntu-0ubuntu118.04.1
+1 💚 javadoc 0m 23s trunk passed with JDK Private Build-1.8.0_265-8u265-b01-0ubuntu2~18.04-b01
+0 🆗 spotbugs 0m 54s Used deprecated FindBugs config; considering switching to SpotBugs.
+1 💚 findbugs 0m 53s trunk passed
-0 ⚠️ patch 1m 10s Used diff version of patch file. Binary files and potentially other changes not applied. Please rebase and squash commits if necessary.
_ Patch Compile Tests _
+1 💚 mvninstall 0m 27s the patch passed
+1 💚 compile 0m 28s the patch passed with JDK Ubuntu-11.0.8+10-post-Ubuntu-0ubuntu118.04.1
+1 💚 javac 0m 28s hadoop-tools_hadoop-azure-jdkUbuntu-11.0.8+10-post-Ubuntu-0ubuntu118.04.1 with JDK Ubuntu-11.0.8+10-post-Ubuntu-0ubuntu118.04.1 generated 0 new + 12 unchanged - 3 fixed = 12 total (was 15)
+1 💚 compile 0m 23s the patch passed with JDK Private Build-1.8.0_265-8u265-b01-0ubuntu2~18.04-b01
+1 💚 javac 0m 23s hadoop-tools_hadoop-azure-jdkPrivateBuild-1.8.0_265-8u265-b01-0ubuntu218.04-b01 with JDK Private Build-1.8.0_265-8u265-b01-0ubuntu218.04-b01 generated 0 new + 6 unchanged - 3 fixed = 6 total (was 9)
-0 ⚠️ checkstyle 0m 16s hadoop-tools/hadoop-azure: The patch generated 1 new + 30 unchanged - 2 fixed = 31 total (was 32)
+1 💚 mvnsite 0m 26s the patch passed
+1 💚 whitespace 0m 0s The patch has no whitespace issues.
+1 💚 shadedclient 15m 18s patch has no errors when building and testing our client artifacts.
+1 💚 javadoc 0m 22s the patch passed with JDK Ubuntu-11.0.8+10-post-Ubuntu-0ubuntu118.04.1
+1 💚 javadoc 0m 20s the patch passed with JDK Private Build-1.8.0_265-8u265-b01-0ubuntu2~18.04-b01
+1 💚 findbugs 0m 56s the patch passed
_ Other Tests _
+1 💚 unit 1m 22s hadoop-azure in the patch passed.
-1 ❌ asflicense 0m 29s The patch generated 1 ASF License warnings.
104m 30s
Subsystem Report/Notes
Docker ClientAPI=1.40 ServerAPI=1.40 base: https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-2202/15/artifact/out/Dockerfile
GITHUB PR #2202
Optional Tests dupname asflicense mvnsite markdownlint compile javac javadoc mvninstall unit shadedclient findbugs checkstyle
uname Linux 88c4266a0351 4.15.0-112-generic #113-Ubuntu SMP Thu Jul 9 23:41:39 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/bin/hadoop.sh
git revision trunk / a932796
Default Java Private Build-1.8.0_265-8u265-b01-0ubuntu2~18.04-b01
Multi-JDK versions /usr/lib/jvm/java-11-openjdk-amd64:Ubuntu-11.0.8+10-post-Ubuntu-0ubuntu118.04.1 /usr/lib/jvm/java-8-openjdk-amd64:Private Build-1.8.0_265-8u265-b01-0ubuntu2~18.04-b01
checkstyle https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-2202/15/artifact/out/diff-checkstyle-hadoop-tools_hadoop-azure.txt
Test Results https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-2202/15/testReport/
asflicense https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-2202/15/artifact/out/patch-asflicense-problems.txt
Max. process+thread count 345 (vs. ulimit of 5500)
modules C: hadoop-tools/hadoop-azure U: hadoop-tools/hadoop-azure
Console output https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-2202/15/console
versions git=2.17.1 maven=3.6.0 findbugs=4.0.6
Powered by Apache Yetus 0.13.0-SNAPSHOT https://yetus.apache.org

This message was automatically generated.

@bilaharith
Copy link
Contributor Author

Driver test results using accounts in Canary region
mvn -T 1C -Dparallel-tests=abfs -Dscale -DtestsThreadCount=8 clean verify

[INFO] Tests run: 87, Failures: 0, Errors: 0, Skipped: 0

[ERROR] Errors:
[ERROR] ITestAbfsInputStreamStatistics.testReadAheadCounters:346 » TestTimedOut test t...
[INFO]
[ERROR] Tests run: 451, Failures: 0, Errors: 1, Skipped: 5

[WARNING] Tests run: 207, Failures: 0, Errors: 0, Skipped: 16

@hadoop-yetus
Copy link

🎊 +1 overall

Vote Subsystem Runtime Comment
+0 🆗 reexec 1m 28s Docker mode activated.
_ Prechecks _
+1 💚 dupname 0m 1s No case conflicting files found.
+0 🆗 markdownlint 0m 1s markdownlint was not available.
+1 💚 @author 0m 0s The patch does not contain any @author tags.
+1 💚 test4tests 0m 0s The patch appears to include 57 new or modified test files.
_ trunk Compile Tests _
+1 💚 mvninstall 34m 39s trunk passed
+1 💚 compile 0m 37s trunk passed with JDK Ubuntu-11.0.8+10-post-Ubuntu-0ubuntu118.04.1
+1 💚 compile 0m 32s trunk passed with JDK Private Build-1.8.0_265-8u265-b01-0ubuntu2~18.04-b01
+1 💚 checkstyle 0m 24s trunk passed
+1 💚 mvnsite 0m 38s trunk passed
+1 💚 shadedclient 17m 48s branch has no errors when building and testing our client artifacts.
+1 💚 javadoc 0m 29s trunk passed with JDK Ubuntu-11.0.8+10-post-Ubuntu-0ubuntu118.04.1
+1 💚 javadoc 0m 25s trunk passed with JDK Private Build-1.8.0_265-8u265-b01-0ubuntu2~18.04-b01
+0 🆗 spotbugs 1m 1s Used deprecated FindBugs config; considering switching to SpotBugs.
+1 💚 findbugs 0m 59s trunk passed
-0 ⚠️ patch 1m 17s Used diff version of patch file. Binary files and potentially other changes not applied. Please rebase and squash commits if necessary.
_ Patch Compile Tests _
+1 💚 mvninstall 0m 31s the patch passed
+1 💚 compile 0m 31s the patch passed with JDK Ubuntu-11.0.8+10-post-Ubuntu-0ubuntu118.04.1
+1 💚 javac 0m 31s hadoop-tools_hadoop-azure-jdkUbuntu-11.0.8+10-post-Ubuntu-0ubuntu118.04.1 with JDK Ubuntu-11.0.8+10-post-Ubuntu-0ubuntu118.04.1 generated 0 new + 12 unchanged - 3 fixed = 12 total (was 15)
+1 💚 compile 0m 26s the patch passed with JDK Private Build-1.8.0_265-8u265-b01-0ubuntu2~18.04-b01
+1 💚 javac 0m 26s hadoop-tools_hadoop-azure-jdkPrivateBuild-1.8.0_265-8u265-b01-0ubuntu218.04-b01 with JDK Private Build-1.8.0_265-8u265-b01-0ubuntu218.04-b01 generated 0 new + 6 unchanged - 3 fixed = 6 total (was 9)
+1 💚 checkstyle 0m 16s hadoop-tools/hadoop-azure: The patch generated 0 new + 30 unchanged - 2 fixed = 30 total (was 32)
+1 💚 mvnsite 0m 28s the patch passed
+1 💚 whitespace 0m 0s The patch has no whitespace issues.
+1 💚 shadedclient 18m 2s patch has no errors when building and testing our client artifacts.
+1 💚 javadoc 0m 25s the patch passed with JDK Ubuntu-11.0.8+10-post-Ubuntu-0ubuntu118.04.1
+1 💚 javadoc 0m 23s the patch passed with JDK Private Build-1.8.0_265-8u265-b01-0ubuntu2~18.04-b01
+1 💚 findbugs 1m 10s the patch passed
_ Other Tests _
+1 💚 unit 1m 41s hadoop-azure in the patch passed.
+1 💚 asflicense 0m 35s The patch does not generate ASF License warnings.
84m 50s
Subsystem Report/Notes
Docker ClientAPI=1.40 ServerAPI=1.40 base: https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-2202/17/artifact/out/Dockerfile
GITHUB PR #2202
Optional Tests dupname asflicense mvnsite markdownlint compile javac javadoc mvninstall unit shadedclient findbugs checkstyle
uname Linux 66cf86af3bfa 4.15.0-112-generic #113-Ubuntu SMP Thu Jul 9 23:41:39 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/bin/hadoop.sh
git revision trunk / 82a7505
Default Java Private Build-1.8.0_265-8u265-b01-0ubuntu2~18.04-b01
Multi-JDK versions /usr/lib/jvm/java-11-openjdk-amd64:Ubuntu-11.0.8+10-post-Ubuntu-0ubuntu118.04.1 /usr/lib/jvm/java-8-openjdk-amd64:Private Build-1.8.0_265-8u265-b01-0ubuntu2~18.04-b01
Test Results https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-2202/17/testReport/
Max. process+thread count 311 (vs. ulimit of 5500)
modules C: hadoop-tools/hadoop-azure U: hadoop-tools/hadoop-azure
Console output https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-2202/17/console
versions git=2.17.1 maven=3.6.0 findbugs=4.0.6
Powered by Apache Yetus 0.13.0-SNAPSHOT https://yetus.apache.org

This message was automatically generated.

@bilaharith bilaharith closed this Aug 28, 2020
@steveloughran
Copy link
Contributor

why closed?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
fs/azure changes related to azure; submitter must declare test endpoint work in progress PRs still Work in Progress; reviews not expected but still welcome
Projects
None yet
3 participants