Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

HADOOP-19522: ABFS: [FnsOverBlob] Rename Recovery Should Succeed When Marker File Exists with Destination Directory#7559

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
anujmodi2021 merged 8 commits intoapache:trunkfrombhattmanish98:HADOOP-19522
Apr 18, 2025

Conversation

bhattmanish98
Copy link
Contributor

@bhattmanish98bhattmanish98 commentedMar 31, 2025
edited by anujmodi2021
Loading

JIRA:https://issues.apache.org/jira/browse/HADOOP-19522

On the blob endpoint, since rename is not a direct operation but a combination of two operations—copy and delete—in the case of directory rename, we first rename all the blobs that have the source prefix and, at the end, rename the source to the destination.

In the normal rename flow, renaming is not allowed if the destination already exists. However, in the case of recovery, there is a possibility that some files have already been renamed from the source to the destination. With the recent change (HADOOP-19474 ABFS: [FnsOverBlob] Listing Optimizations to avoid multiple iteration over list response. - ASF JIRA), where we create a marker if the path is implicit, rename recovery will fail at the end when it tries to rename the source to the destination after renaming all the files.

To fix this, while renaming the source to the destination, if we encounter an error indicating that the path already exists, we will suppress the error and mark the rename recovery as successful.

@hadoop-yetus

This comment was marked as outdated.

@hadoop-yetus

This comment was marked as outdated.

@hadoop-yetus

This comment was marked as outdated.

@bhattmanish98
Copy link
ContributorAuthor

============================================================
HNS-OAuth-DFS

[WARNING] Tests run: 174, Failures: 0, Errors: 0, Skipped: 3
[WARNING] Tests run: 803, Failures: 0, Errors: 0, Skipped: 162
[WARNING] Tests run: 154, Failures: 0, Errors: 0, Skipped: 4
[WARNING] Tests run: 272, Failures: 0, Errors: 0, Skipped: 23

============================================================
HNS-SharedKey-DFS

[WARNING] Tests run: 174, Failures: 0, Errors: 0, Skipped: 4
[WARNING] Tests run: 806, Failures: 0, Errors: 0, Skipped: 116
[WARNING] Tests run: 154, Failures: 0, Errors: 0, Skipped: 4
[WARNING] Tests run: 272, Failures: 0, Errors: 0, Skipped: 10

============================================================
NonHNS-SharedKey-DFS

[WARNING] Tests run: 174, Failures: 0, Errors: 0, Skipped: 11
[WARNING] Tests run: 645, Failures: 0, Errors: 0, Skipped: 217
[WARNING] Tests run: 154, Failures: 0, Errors: 0, Skipped: 5
[WARNING] Tests run: 272, Failures: 0, Errors: 0, Skipped: 11

============================================================
AppendBlob-HNS-OAuth-DFS

[WARNING] Tests run: 174, Failures: 0, Errors: 0, Skipped: 3
[WARNING] Tests run: 803, Failures: 0, Errors: 0, Skipped: 169
[WARNING] Tests run: 131, Failures: 0, Errors: 0, Skipped: 5
[WARNING] Tests run: 272, Failures: 0, Errors: 0, Skipped: 23

============================================================
NonHNS-SharedKey-Blob

[WARNING] Tests run: 174, Failures: 0, Errors: 0, Skipped: 11
[WARNING] Tests run: 648, Failures: 0, Errors: 0, Skipped: 144
[WARNING] Tests run: 154, Failures: 0, Errors: 0, Skipped: 3
[WARNING] Tests run: 272, Failures: 0, Errors: 0, Skipped: 11

============================================================
NonHNS-OAuth-DFS

[WARNING] Tests run: 174, Failures: 0, Errors: 0, Skipped: 11
[WARNING] Tests run: 642, Failures: 0, Errors: 0, Skipped: 218
[WARNING] Tests run: 154, Failures: 0, Errors: 0, Skipped: 5
[WARNING] Tests run: 272, Failures: 0, Errors: 0, Skipped: 24

============================================================
NonHNS-OAuth-Blob

[WARNING] Tests run: 174, Failures: 0, Errors: 0, Skipped: 11
[WARNING] Tests run: 645, Failures: 0, Errors: 0, Skipped: 145
[WARNING] Tests run: 154, Failures: 0, Errors: 0, Skipped: 3
[WARNING] Tests run: 272, Failures: 0, Errors: 0, Skipped: 24

============================================================
AppendBlob-NonHNS-OAuth-Blob

[WARNING] Tests run: 174, Failures: 0, Errors: 0, Skipped: 11
[WARNING] Tests run: 643, Failures: 0, Errors: 0, Skipped: 163
[WARNING] Tests run: 131, Failures: 0, Errors: 0, Skipped: 4
[WARNING] Tests run: 272, Failures: 0, Errors: 0, Skipped: 24

============================================================
HNS-Oauth-DFS-IngressBlob

[WARNING] Tests run: 174, Failures: 0, Errors: 0, Skipped: 3
[WARNING] Tests run: 677, Failures: 0, Errors: 0, Skipped: 165
[WARNING] Tests run: 154, Failures: 0, Errors: 0, Skipped: 4
[WARNING] Tests run: 272, Failures: 0, Errors: 0, Skipped: 23

============================================================
NonHNS-OAuth-DFS-IngressBlob

[WARNING] Tests run: 174, Failures: 0, Errors: 0, Skipped: 11
[WARNING] Tests run: 642, Failures: 0, Errors: 0, Skipped: 216
[WARNING] Tests run: 154, Failures: 0, Errors: 0, Skipped: 5
[WARNING] Tests run: 272, Failures: 0, Errors: 0, Skipped: 24

} catch(AbfsRestOperationException e) {
if (e.getStatusCode() == HttpURLConnection.HTTP_CONFLICT) {
// If the destination path already exists, then delete the source path.
getAbfsClient().deleteBlobPath(src, null, tracingContext);
Copy link
Contributor

Choose a reason for hiding this comment

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

Should we validate that destination has the same Etag as the source before assuming that if it already exists, it is safe to delete the source ?

anujmodi2021 reacted with thumbs up emoji
Copy link
ContributorAuthor

Choose a reason for hiding this comment

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

During recovery, if a marker is present in the destination directory, the destination etag is not linked to the source directory's etag (as it may or may not be created with source to dest copy operation). Therefore, comparing the source etag and destination etag may return false. Since we are not losing any data here, so I think it is safe to follow this process here.

* Simulates an error when copying on the 6th call.
*/
@Test
public void testRenameCopyFailureInBetween() throws Exception {
Copy link
Contributor

Choose a reason for hiding this comment

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

This function and the one below it, has a lot of common code, can be refactored into a common function

Copy link
ContributorAuthor

Choose a reason for hiding this comment

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

Code refactored

Copy link
Contributor

@anujmodi2021anujmodi2021 left a comment

Choose a reason for hiding this comment

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

Production code looks good.
Added some test suggestions and queries

@hadoop-yetus
Copy link

🎊+1 overall

VoteSubsystemRuntimeLogfileComment
+0 🆗reexec0m 49sDocker mode activated.
_ Prechecks _
+1 💚dupname0m 1sNo case conflicting files found.
+0 🆗codespell0m 0scodespell was not available.
+0 🆗detsecrets0m 0sdetect-secrets was not available.
+1 💚@author0m 0sThe patch does not contain any@author tags.
+1 💚test4tests0m 0sThe patch appears to include 4 new or modified test files.
_ trunk Compile Tests _
+1 💚mvninstall41m 40strunk passed
+1 💚compile0m 41strunk passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚compile0m 35strunk passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+1 💚checkstyle0m 33strunk passed
+1 💚mvnsite0m 41strunk passed
+1 💚javadoc0m 41strunk passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚javadoc0m 34strunk passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+1 💚spotbugs1m 8strunk passed
+1 💚shadedclient40m 53sbranch has no errors when building and testing our client artifacts.
-0⚠️patch41m 15sUsed diff version of patch file. Binary files and potentially other changes not applied. Please rebase and squash commits if necessary.
_ Patch Compile Tests _
+1 💚mvninstall0m 31sthe patch passed
+1 💚compile0m 33sthe patch passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚javac0m 33sthe patch passed
+1 💚compile0m 27sthe patch passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+1 💚javac0m 27sthe patch passed
+1 💚blanks0m 0sThe patch has no blanks issues.
+1 💚checkstyle0m 21sthe patch passed
+1 💚mvnsite0m 31sthe patch passed
+1 💚javadoc0m 28sthe patch passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚javadoc0m 25sthe patch passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+1 💚spotbugs1m 8sthe patch passed
+1 💚shadedclient39m 14spatch has no errors when building and testing our client artifacts.
_ Other Tests _
+1 💚unit3m 1shadoop-azure in the patch passed.
+1 💚asflicense0m 35sThe patch does not generate ASF License warnings.
136m 45s
SubsystemReport/Notes
DockerClientAPI=1.48 ServerAPI=1.48 base:https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-7559/4/artifact/out/Dockerfile
GITHUB PR#7559
JIRA IssueHADOOP-19522
Optional Testsdupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient spotbugs checkstyle codespell detsecrets
unameLinux 183040e5fc09 5.15.0-131-generic#141-Ubuntu SMP Fri Jan 10 21:18:28 UTC 2025 x86_64 x86_64 x86_64 GNU/Linux
Build toolmaven
Personalitydev-support/bin/hadoop.sh
git revisiontrunk /af66bd8
Default JavaPrivate Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
Multi-JDK versions/usr/lib/jvm/java-11-openjdk-amd64:Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04 /usr/lib/jvm/java-8-openjdk-amd64:Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
Test Resultshttps://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-7559/4/testReport/
Max. process+thread count524 (vs. ulimit of 5500)
modulesC: hadoop-tools/hadoop-azure U: hadoop-tools/hadoop-azure
Console outputhttps://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-7559/4/console
versionsgit=2.25.1 maven=3.6.3 spotbugs=4.2.2
Powered byApache Yetus 0.14.0https://yetus.apache.org

This message was automatically generated.

@hadoop-yetus
Copy link

🎊+1 overall

VoteSubsystemRuntimeLogfileComment
+0 🆗reexec0m 50sDocker mode activated.
_ Prechecks _
+1 💚dupname0m 0sNo case conflicting files found.
+0 🆗codespell0m 1scodespell was not available.
+0 🆗detsecrets0m 1sdetect-secrets was not available.
+1 💚@author0m 0sThe patch does not contain any@author tags.
+1 💚test4tests0m 0sThe patch appears to include 4 new or modified test files.
_ trunk Compile Tests _
+1 💚mvninstall40m 22strunk passed
+1 💚compile0m 42strunk passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚compile0m 37strunk passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+1 💚checkstyle0m 31strunk passed
+1 💚mvnsite0m 41strunk passed
+1 💚javadoc0m 41strunk passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚javadoc0m 34strunk passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+1 💚spotbugs1m 9strunk passed
+1 💚shadedclient38m 51sbranch has no errors when building and testing our client artifacts.
-0⚠️patch39m 13sUsed diff version of patch file. Binary files and potentially other changes not applied. Please rebase and squash commits if necessary.
_ Patch Compile Tests _
+1 💚mvninstall0m 29sthe patch passed
+1 💚compile0m 33sthe patch passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚javac0m 33sthe patch passed
+1 💚compile0m 28sthe patch passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+1 💚javac0m 28sthe patch passed
+1 💚blanks0m 0sThe patch has no blanks issues.
+1 💚checkstyle0m 20sthe patch passed
+1 💚mvnsite0m 31sthe patch passed
+1 💚javadoc0m 29sthe patch passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚javadoc0m 25sthe patch passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+1 💚spotbugs1m 6sthe patch passed
+1 💚shadedclient38m 57spatch has no errors when building and testing our client artifacts.
_ Other Tests _
+1 💚unit3m 0shadoop-azure in the patch passed.
+1 💚asflicense0m 35sThe patch does not generate ASF License warnings.
133m 21s
SubsystemReport/Notes
DockerClientAPI=1.48 ServerAPI=1.48 base:https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-7559/5/artifact/out/Dockerfile
GITHUB PR#7559
JIRA IssueHADOOP-19522
Optional Testsdupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient spotbugs checkstyle codespell detsecrets
unameLinux 3cb968c9ccb8 5.15.0-131-generic#141-Ubuntu SMP Fri Jan 10 21:18:28 UTC 2025 x86_64 x86_64 x86_64 GNU/Linux
Build toolmaven
Personalitydev-support/bin/hadoop.sh
git revisiontrunk /4a1b115
Default JavaPrivate Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
Multi-JDK versions/usr/lib/jvm/java-11-openjdk-amd64:Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04 /usr/lib/jvm/java-8-openjdk-amd64:Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
Test Resultshttps://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-7559/5/testReport/
Max. process+thread count524 (vs. ulimit of 5500)
modulesC: hadoop-tools/hadoop-azure U: hadoop-tools/hadoop-azure
Console outputhttps://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-7559/5/console
versionsgit=2.25.1 maven=3.6.3 spotbugs=4.2.2
Powered byApache Yetus 0.14.0https://yetus.apache.org

This message was automatically generated.

Copy link
Contributor

@anujmodi2021anujmodi2021 left a comment

Choose a reason for hiding this comment

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

Thanks for taking comments.
Added some final set of thoughts

Copy link
Contributor

@anujmodi2021anujmodi2021 left a comment

Choose a reason for hiding this comment

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

+1
LGTM

Thanks for taking suggestions

@hadoop-yetus
Copy link

🎊+1 overall

VoteSubsystemRuntimeLogfileComment
+0 🆗reexec1m 5sDocker mode activated.
_ Prechecks _
+1 💚dupname0m 0sNo case conflicting files found.
+0 🆗codespell0m 0scodespell was not available.
+0 🆗detsecrets0m 0sdetect-secrets was not available.
+1 💚@author0m 0sThe patch does not contain any@author tags.
+1 💚test4tests0m 0sThe patch appears to include 4 new or modified test files.
_ trunk Compile Tests _
+1 💚mvninstall41m 37strunk passed
+1 💚compile0m 43strunk passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚compile0m 37strunk passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+1 💚checkstyle0m 32strunk passed
+1 💚mvnsite0m 42strunk passed
+1 💚javadoc0m 40strunk passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚javadoc0m 34strunk passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+1 💚spotbugs1m 8strunk passed
+1 💚shadedclient43m 44sbranch has no errors when building and testing our client artifacts.
-0⚠️patch44m 7sUsed diff version of patch file. Binary files and potentially other changes not applied. Please rebase and squash commits if necessary.
_ Patch Compile Tests _
+1 💚mvninstall0m 31sthe patch passed
+1 💚compile0m 34sthe patch passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚javac0m 34sthe patch passed
+1 💚compile0m 28sthe patch passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+1 💚javac0m 28sthe patch passed
+1 💚blanks0m 0sThe patch has no blanks issues.
+1 💚checkstyle0m 20sthe patch passed
+1 💚mvnsite0m 32sthe patch passed
+1 💚javadoc0m 29sthe patch passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚javadoc0m 25sthe patch passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+1 💚spotbugs1m 6sthe patch passed
+1 💚shadedclient39m 0spatch has no errors when building and testing our client artifacts.
_ Other Tests _
+1 💚unit3m 1shadoop-azure in the patch passed.
+1 💚asflicense0m 35sThe patch does not generate ASF License warnings.
140m 3s
SubsystemReport/Notes
DockerClientAPI=1.49 ServerAPI=1.49 base:https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-7559/7/artifact/out/Dockerfile
GITHUB PR#7559
JIRA IssueHADOOP-19522
Optional Testsdupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient spotbugs checkstyle codespell detsecrets
unameLinux 91ba230fb55e 5.15.0-131-generic#141-Ubuntu SMP Fri Jan 10 21:18:28 UTC 2025 x86_64 x86_64 x86_64 GNU/Linux
Build toolmaven
Personalitydev-support/bin/hadoop.sh
git revisiontrunk /aa97158
Default JavaPrivate Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
Multi-JDK versions/usr/lib/jvm/java-11-openjdk-amd64:Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04 /usr/lib/jvm/java-8-openjdk-amd64:Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
Test Resultshttps://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-7559/7/testReport/
Max. process+thread count585 (vs. ulimit of 5500)
modulesC: hadoop-tools/hadoop-azure U: hadoop-tools/hadoop-azure
Console outputhttps://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-7559/7/console
versionsgit=2.25.1 maven=3.6.3 spotbugs=4.2.2
Powered byApache Yetus 0.14.0https://yetus.apache.org

This message was automatically generated.

@bhattmanish98
Copy link
ContributorAuthor

============================================================
HNS-OAuth-DFS

[WARNING] Tests run: 174, Failures: 0, Errors: 0, Skipped: 3
[WARNING] Tests run: 808, Failures: 0, Errors: 0, Skipped: 160
[WARNING] Tests run: 156, Failures: 0, Errors: 0, Skipped: 6
[WARNING] Tests run: 272, Failures: 0, Errors: 0, Skipped: 23

============================================================
HNS-SharedKey-DFS

[WARNING] Tests run: 174, Failures: 0, Errors: 0, Skipped: 4
[WARNING] Tests run: 811, Failures: 0, Errors: 0, Skipped: 113
[WARNING] Tests run: 156, Failures: 0, Errors: 0, Skipped: 6
[WARNING] Tests run: 272, Failures: 0, Errors: 0, Skipped: 10

============================================================
NonHNS-SharedKey-DFS

[WARNING] Tests run: 174, Failures: 0, Errors: 0, Skipped: 10
[WARNING] Tests run: 650, Failures: 0, Errors: 0, Skipped: 218
[WARNING] Tests run: 156, Failures: 0, Errors: 0, Skipped: 7
[WARNING] Tests run: 272, Failures: 0, Errors: 0, Skipped: 11

============================================================
AppendBlob-HNS-OAuth-DFS

[WARNING] Tests run: 174, Failures: 0, Errors: 0, Skipped: 3
[WARNING] Tests run: 808, Failures: 0, Errors: 0, Skipped: 171
[WARNING] Tests run: 133, Failures: 0, Errors: 0, Skipped: 7
[WARNING] Tests run: 272, Failures: 0, Errors: 0, Skipped: 23

============================================================
NonHNS-SharedKey-Blob

[WARNING] Tests run: 174, Failures: 0, Errors: 0, Skipped: 10
[WARNING] Tests run: 653, Failures: 0, Errors: 0, Skipped: 141
[WARNING] Tests run: 156, Failures: 0, Errors: 0, Skipped: 3
[WARNING] Tests run: 272, Failures: 0, Errors: 0, Skipped: 11

============================================================
NonHNS-OAuth-DFS

[WARNING] Tests run: 174, Failures: 0, Errors: 0, Skipped: 10
[WARNING] Tests run: 647, Failures: 0, Errors: 0, Skipped: 220
[WARNING] Tests run: 156, Failures: 0, Errors: 0, Skipped: 7
[WARNING] Tests run: 272, Failures: 0, Errors: 0, Skipped: 24

============================================================
NonHNS-OAuth-Blob

[WARNING] Tests run: 174, Failures: 0, Errors: 0, Skipped: 10
[WARNING] Tests run: 650, Failures: 0, Errors: 0, Skipped: 143
[WARNING] Tests run: 156, Failures: 0, Errors: 0, Skipped: 3
[WARNING] Tests run: 272, Failures: 0, Errors: 0, Skipped: 24

============================================================
AppendBlob-NonHNS-OAuth-Blob

[WARNING] Tests run: 174, Failures: 0, Errors: 0, Skipped: 10
[WARNING] Tests run: 648, Failures: 0, Errors: 0, Skipped: 161
[WARNING] Tests run: 133, Failures: 0, Errors: 0, Skipped: 4
[WARNING] Tests run: 272, Failures: 0, Errors: 0, Skipped: 24

============================================================
HNS-Oauth-DFS-IngressBlob

[WARNING] Tests run: 174, Failures: 0, Errors: 0, Skipped: 3
[WARNING] Tests run: 682, Failures: 0, Errors: 0, Skipped: 167
[WARNING] Tests run: 156, Failures: 0, Errors: 0, Skipped: 6
[WARNING] Tests run: 272, Failures: 0, Errors: 0, Skipped: 23

============================================================
NonHNS-OAuth-DFS-IngressBlob

[WARNING] Tests run: 174, Failures: 0, Errors: 0, Skipped: 10
[WARNING] Tests run: 647, Failures: 0, Errors: 0, Skipped: 218
[WARNING] Tests run: 156, Failures: 0, Errors: 0, Skipped: 7
[WARNING] Tests run: 272, Failures: 0, Errors: 0, Skipped: 24

@anujmodi2021anujmodi2021 merged commitf79f5bc intoapache:trunkApr 18, 2025
4 checks passed
bhattmanish98 added a commit to ABFSDriver/AbfsHadoop that referenced this pull requestApr 18, 2025
… Marker File Exists with Destination Directory (apache#7559)Contributed by Manish BhattReviewed by Anmol Asrani, Manika Joshi, Anuj ModiSigned off by Anuj Modi<anujmodi@apache.org>
anujmodi2021 pushed a commit that referenced this pull requestApr 18, 2025
… Marker File Exists with Destination Directory (#7559) (#7633)Contributed by Manish BhattReviewed by Anmol Asrani, Manika Joshi, Anuj ModiSigned off by Anuj Modi<anujmodi@apache.org>
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers

@anmolanmol1234anmolanmol1234anmolanmol1234 approved these changes

@manika137manika137manika137 approved these changes

@anujmodi2021anujmodi2021anujmodi2021 approved these changes

Assignees
No one assigned
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

5 participants
@bhattmanish98@hadoop-yetus@anmolanmol1234@manika137@anujmodi2021

[8]ページ先頭

©2009-2025 Movatter.jp