MCPcopy Create free account
hub / github.com/aws-samples/serverless-rust-demo

github.com/aws-samples/serverless-rust-demo @main

Chat with this repo
repository ↗ · DeepWiki ↗ · + Follow
119 symbols 272 edges 25 files 14 documented · 12% updated 21mo ago★ 2992 open issues

Browse by type

Functions 97 Types & classes 22
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Serverless Rust Demo

build

Architecture diagram

This is a simple serverless application built in Rust. It consists of an API Gateway backed by four Lambda functions and a DynamoDB table for storage.

This single crate will create five different binaries, one for each Lambda function. It uses an hexagonal architecture pattern to decouple the entry points, from the main domain logic, the storage component, and the event bus component.

🏗️ Deployment and testing

Requirements

  • Rust 1.56.0 or higher
  • cargo-lambda
  • Zig for cross-compilation (cargo-lambda will prompt you to install it if it's missing in your host system)
  • The AWS SAM CLI 1.33.0 or higher for deploying to the cloud
  • Artillery for load-testing the application

Commands

You can use the following commands at the root of this repository to test, build, and deploy this project:

# Optional: check if tools are installed
make setup

# Run unit tests
make tests-unit

# Compile and prepare Lambda functions
make build

# Deploy the functions on AWS
make deploy

# Run integration tests against the API in the cloud
make tests-integ

Load Test

Artillery is used to make 300 requests / second for 10 minutes to our API endpoints. You can run this with the following command:

make tests-load

CloudWatch Logs Insights

Using this CloudWatch Logs Insights query you can analyse the latency of the requests made to the Lambda functions.

The query separates cold starts from other requests and then gives you p50, p90 and p99 percentiles.

filter @type="REPORT"
| fields greatest(@initDuration, 0) + @duration as duration, ispresent(@initDuration) as coldStart
| stats count(*) as count, pct(duration, 50) as p50, pct(duration, 90) as p90, pct(duration, 99) as p99, max(duration) as max by coldStart

Load Test Results

🦀 Getting started with Rust on Lambda

If you want to get started with Rust on Lambda, you can use these cookiecutter templates to setup your project.

👀 With other languages

You can find implementations of this project in other languages here:

Security

See CONTRIBUTING for more information.

License

This library is licensed under the MIT-0 License. See the LICENSE file.

Extension points exported contracts — how you extend this code

browse all types & interfaces →

Core symbols most depended-on inside this repo

browse all functions →

Shape

Function 61
Method 36
Class 11
Interface 8
Enum 3

Languages

Rust100%

Modules by API surface

src/store/dynamodb/mod.rs18 symbols
src/store/memory.rs17 symbols
src/entrypoints/lambda/dynamodb/model.rs17 symbols
src/event_bus/eventbridge/mod.rs10 symbols
src/store/dynamodb/ext.rs7 symbols
tests/aws_test.rs6 symbols
src/event_bus/void.rs6 symbols
src/store/mod.rs5 symbols
src/entrypoints/lambda/apigateway.rs5 symbols
src/domain.rs5 symbols
src/model.rs4 symbols
src/utils.rs3 symbols

For agents

$ claude mcp add serverless-rust-demo \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page