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

fix: prevent http connection race condition after restoring from Lambda SnapStart #569

Open
wants to merge 7 commits into
base: main
Choose a base branch
from

Conversation

DiscreteTom
Copy link
Contributor

The issue:

After restoring from Lambda SnapStart, the CLOCK_MONOTONIC might be inconsistent with the snapshoted one.

Sadly, in rust the std::time::Instant use CLOCK_MONOTONIC to track time, and hyper-util use Instant to check if an established connection is expired. This will cause unstable behaviors. Related: hyperium/hyper#3810

As the result, when the lambda function is restored from SnapStart, sometimes lambda web adapter will reuse an expired connection because lambda web adapter thought the connection is not expired. This will only happen on the first invoke after restoring from Lambda SnapStart.

If the app server has an http idle timeout set, there might be a race condition after restoring from Lambda SnapStart: the app server wants to disconnect but lambda web adapter is sending a new request using the expired connection, cause IncompleteMessage error.

Description of changes:

This PR will check the configured client side idle timeout manually, using std::time::SystemTime instead of std::time::Instant.
If the timeout is reached, lambda web adapter will create new connections instead of reusing existing connections.

Besides, this PR add an environment variable AWS_LWA_CLIENT_IDLE_TIMEOUT_MS to make the client side timeout configurable.

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

@DiscreteTom DiscreteTom requested a review from a team as a code owner January 16, 2025 10:22
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.

None yet

1 participant