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

Removing crt waitForNoResources #6004

Merged
merged 2 commits into from
Apr 3, 2025

Conversation

RanVaknin
Copy link
Contributor

@RanVaknin RanVaknin commented Apr 2, 2025

Motivation and Context

The AWS SDK Java tests currently use CrtResource.waitForNoResources() in teardown methods to verify proper cleanup of CRT resources. This method blocks execution until all resources are released or until a hardcoded 60-second timeout occurs.

We're experiencing frequent intermittent test failures in integration tests due to this timeout being reached:

[ERROR] Tests run: 7, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 60.36 s <<< FAILURE! -- in software.amazon.awssdk.http.crt.AwsCrtAsyncHttpClientSpiVerificationTest
[ERROR] software.amazon.awssdk.http.crt.AwsCrtAsyncHttpClientSpiVerificationTest -- Time elapsed: 60.36 s <<< ERROR!
java.lang.RuntimeException: Timeout waiting for resource count to drop to zero
	at software.amazon.awssdk.crt.CrtResource.waitForNoResources(CrtResource.java:448)8)

This PR removes all instances of CrtResource.waitForNoResources() from test teardown methods to prevent these intermittent failures. The standard resource cleanup through close() methods will still occur, but we will no longer wait for or validate complete native resource cleanup.

Alternatively, we can just catch these exceptions:

@AfterClass
public static void tearDown() {
    client.close();
    try {
        CrtResource.waitForNoResources();
    } catch (RuntimeException e) {
        // log the exception or do somethging else
    }
}

@RanVaknin RanVaknin requested a review from a team as a code owner April 2, 2025 22:15
@RanVaknin RanVaknin force-pushed the rvaknin/remove-crt-failing-validation branch from 74ee83d to 693bd41 Compare April 2, 2025 22:33
@RanVaknin RanVaknin added this pull request to the merge queue Apr 3, 2025
Merged via the queue into master with commit 4701648 Apr 3, 2025
19 checks passed
Sign up for free to 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.

2 participants