-
Notifications
You must be signed in to change notification settings - Fork 9k
HADOOP-19072 Override fs.s3a.performance.flags for tests (ADDENDUM) #6993
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
Conversation
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.
We are doing this enough places that I'm going to propose actually putting this out into S3ATestUtils
Configuration setPerformanceFlags(conf, @Nullable String flagStr) {
removeBaseAndBucketOverrides(
conf,
FS_S3A_CREATE_PERFORMANCE,
FS_S3A_PERFORMANCE_FLAGS);
if (flagStr != null) {
conf.set(FS_S3A_PERFORMANCE_FLAGS, flagStr)
}
return conf;
}
And adopt this. This should help for future use
Done with the full test run. Looks good.
Sure, let me refactor this. |
🎊 +1 overall
This message was automatically generated. |
🎊 +1 overall
This message was automatically generated. |
💔 -1 overall
This message was automatically generated. |
Re-tested against |
🎊 +1 overall
This message was automatically generated. |
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.
+1
did a full checkout and test run to make sure that all was good
s3 london -Dparallel-tests -DtestsThreadCount=8 -Dscale
…UM 2) (apache#6993) Second followup to apache#6543; all hadoop-aws integration tests complete correctly even when fs.s3a.performance.flags = * Contributed by Viraj Jasani
…UM 2) (apache#6993) Second followup to apache#6543; all hadoop-aws integration tests complete correctly even when fs.s3a.performance.flags = * Contributed by Viraj Jasani
…UM 2) (apache#6993) Second followup to apache#6543; all hadoop-aws integration tests complete correctly even when fs.s3a.performance.flags = * Contributed by Viraj Jasani
Description of PR
Addendum for HADOOP-19072
How was this patch tested?
Tested against
us-west-2
For code changes:
LICENSE
,LICENSE-binary
,NOTICE-binary
files?