File tree 4 files changed +10
-0
lines changed
4 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 1
1
# PythonVsRustAWSLambda
2
2
Testing the runtime difference between Python and Rust for AWS Lambda.
3
3
4
+ All AWS Lambda's must include a handler function ` lambda_handler ` , this is what
5
+ the lambda runtime will call be default.
6
+
7
+ When triggering these lambdas off an s3 event, it's important to note more
8
+ than one event might run though that lambda invocation, hence the
9
+ inital loop.
10
+
4
11
See the full blog post here https://www.confessionsofadataguy.com/aws-lambdas-python-vs-rust-performance-and-cost-savings/
5
12
13
+ ` Rust ` lambda.
14
+ You will need to add the crate ` cargo-lambda ` . It helps you package and build
15
+ the bootstrip binary needed for deployment.
6
16
To build the ` bootstrap.zip ` that your Rust AWS Lambda needs, run ` cargo lambda build --release --output-format zip `
File renamed without changes.
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments