Proof of Concept: Implementation of Refresh Access Token in Rust #13
+322
−2
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR is for discussion and would not expect or endorse it being merged into main as-is.
Implementation of the Refresh Token function written in Rust. I saw in the ballpark of a 10x reduction in the amount of compute needed (pending confirmation with a larger sample size). I do not currently have a stress harness nor the resources to run one.
Ballpark figures I was seeing:
Python 3.11 2048mb x86_64
cold ~400ms
warm ~80ms
Rust 256mb arm64
cold ~400ms
warm ~40ms
I also dialed the Python 3.11 version down to 256mb to confirm it was not io bound
cold ~2500ms
warm ~675ms
This would reduce the overall cost to run the solution, perhaps even as far as API Gateway + WAF becoming the dominant drivers for cost. It would also take pressure off any account level Lambda service quotas during a launch event.
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.