-
Notifications
You must be signed in to change notification settings - Fork 9.2k
HADOOP-17451. IOStatistics test failures in S3A code. #2594
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-17451. IOStatistics test failures in S3A code. #2594
Conversation
This comment has been minimized.
This comment has been minimized.
|
yetus failure from OOM/thread issues. |
This comment has been minimized.
This comment has been minimized.
|
style |
This comment has been minimized.
This comment has been minimized.
|
-checkstyle of unused import; fixing. Ready for review: @bgaborg @mukund-thakur @mehakmeet @sunchao |
This comment has been minimized.
This comment has been minimized.
Fixing tests which fail intermittently based on configs and in the case of the HugeFile tests, only in bulk runs when existing FS instances meant statistic probes sometimes ended up probing those of a previous FS. Fixes: * HADOOP-17451. HugeFile upload tests * HADOOP-17456. ITestPartialRenamesDeletes.testPartialDirDelete failure Does not fix: * HADOOP-17455. ITestS3ADeleteCost failure Change-Id: Ie6c392179a137e693ed078b4bf4932b20deea9c4
…ngleFileInDir Change-Id: I4453c54e8fbd05492c784dbf3a3dbe1238ec1025
Change-Id: I4ca26d507122b8254ddcbe56d07caced529dd665
Change-Id: Ia0ceec8aa7afc38ee5a23e7d2db4a04e9719b42b
16513c3 to
f303ad4
Compare
|
last yetus run had execution problems. Rebase to trunk and resubmitting |
|
🎊 +1 overall
This message was automatically generated. |
| public void bytesTransferred(long byteCount) { | ||
| bytesUploaded.addAndGet(byteCount); | ||
| incrementGauge(STREAM_WRITE_BLOCK_UPLOADS_BYTES_PENDING, -byteCount); | ||
| incAllGauges(STREAM_WRITE_BLOCK_UPLOADS_BYTES_PENDING, -byteCount); |
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.
nit: why change in name as still only one guage is being incremented in the method underneath.
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.
incAllGauges does both the iostats gauge and the Hadoop metrics gauges; we need that
mukund-thakur
left a comment
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.
LGTM +1
mehakmeet
left a comment
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, tested using mvn clean verify -Ds3guard -Ddynamo -Dauth -Dscale -Dparallel-tests on ap-south, didn't see any test failures regarding IOStats.
|
+1 if the nit is fixed which Mukund pointed out: the method naming |
|
Thanks! Will merge after a rebase on top of mehakmeet's |
This reverts commit d3014e0. (fixing commit text before it is frozen)
Caused by HADOOP-16830 and HADOOP-17271. Fixes tests which fail intermittently based on configs and in the case of the HugeFile tests, bulk runs with existing FS instances meant statistic probes sometimes ended up probing those of a previous FS. Contributed by Steve Loughran. Change-Id: I65ba3f44444e59d298df25ac5c8dc5a8781dfb7d
Caused by HADOOP-16830 and HADOOP-17271. Fixes tests which fail intermittently based on configs and in the case of the HugeFile tests, bulk runs with existing FS instances meant statistic probes sometimes ended up probing those of a previous FS. Contributed by Steve Loughran. Change-Id: I65ba3f44444e59d298df25ac5c8dc5a8781dfb7d
Caused by HADOOP-16830 and HADOOP-17271. Fixes tests which fail intermittently based on configs and in the case of the HugeFile tests, bulk runs with existing FS instances meant statistic probes sometimes ended up probing those of a previous FS. Contributed by Steve Loughran. Change-Id: I65ba3f44444e59d298df25ac5c8dc5a8781dfb7d
…ache#2594) Caused by HADOOP-16830 and HADOOP-17271. Fixes tests which fail intermittently based on configs and in the case of the HugeFile tests, bulk runs with existing FS instances meant statistic probes sometimes ended up probing those of a previous FS. Contributed by Steve Loughran. Change-Id: I65ba3f44444e59d298df25ac5c8dc5a8781dfb7d
Fixing tests which fail intermittently based on configs and
in the case of the HugeFile tests, only in bulk runs when existing
FS instances meant statistic probes sometimes ended up probing those
of a previous FS.
Fixes:
Testing: s3 london with
-Dparallel-tests -DtestsThreadCount=6 -Dscale -Dmarkers=keep -Ds3guard -Ddynamono test failures!