Skip to content

Commit 7498c44

Browse files
Daniel BeachDaniel Beach
Daniel Beach
authored and
Daniel Beach
committed
make some formatting updates
1 parent ddaef3e commit 7498c44

File tree

4 files changed

+10
-0
lines changed

4 files changed

+10
-0
lines changed

README.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
# PythonVsRustAWSLambda
22
Testing the runtime difference between Python and Rust for AWS Lambda.
33

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+
411
See the full blog post here https://www.confessionsofadataguy.com/aws-lambdas-python-vs-rust-performance-and-cost-savings/
512

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.
616
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.

0 commit comments

Comments
 (0)