#aws-lambda #lambda #run-time #proxy #aws

aws-lambda-runtime-proxy

A helper lib to customize the communication between the lambda handler process and the lambda runtime api

4 releases

0.2.1 Apr 9, 2024
0.2.0 Apr 9, 2024
0.1.1 Apr 2, 2024
0.1.0 Apr 1, 2024

#1895 in Network programming

Download history 295/week @ 2024-03-31 237/week @ 2024-04-07 29/week @ 2024-04-14

561 downloads per month
Used in aws-lambda-log-proxy

Custom license

13KB
159 lines

AWS Lambda Runtime Proxy

Crates.io Version license

overview

A helper lib to customize the communication between the lambda handler process and the lambda runtime api.

Usage

Installation

Add the following to the dependencies in your Cargo.toml:

aws-lambda-runtime-proxy = "0.2"

or run:

cargo add aws-lambda-runtime-proxy

Examples

A real world case: AWS Lambda Log Proxy.

Documentation

FAQ

What's the Purpose of this Project?

  • Override reserved environment variables like AWS_LAMBDA_RUNTIME_API.
  • Capture or modify the output of the handler function, including the stdout, stderr, or the return value.
  • Add additional command line arguments to the handler process.

How Does This Work?

proxy

This library will do the following:

  • Start an HTTP server to act as the fake AWS Lambda runtime API server, accepting requests from the handler process.
  • Spawn the handler process as a child process, with the environment variables modified to point to the fake AWS Lambda runtime API server.
  • (Optional) Forward requests from the handler process to the real AWS Lambda runtime API server.

Based on this setup, you can write your own logic to process the requests and responses between the handler process and the AWS Lambda runtime API.

Performance

See benchmark. TLDR: the proxy will introduce less than 2ms latency, which is acceptable for most use cases.

CHANGELOG

Dependencies

~5–14MB
~147K SLoC