New to Claude Skills? Learn how to install them →

aws on GitHub

AWS Lambda Managed Instances

OfficialFree

Efficiently run Lambda functions on EC2 with AWS management.

Get this skill

Free · Opens the source repo

What AWS Lambda Managed Instances does

AWS Lambda Managed Instances (LMI) allows developers to run AWS Lambda functions on EC2 instances while AWS handles the underlying infrastructure management such as provisioning, patching, scaling, routing, and load balancing. This skill is particularly useful for workloads that require steady traffic and demand high performance without the cold start latency associated with standard Lambda functions. By leveraging LMI, users can optimize their AWS costs while maintaining control over their compute resources and execution environments.

The skill is designed for developers and architects who are looking to migrate workloads to AWS Lambda Managed Instances or evaluate the feasibility of using LMI for their applications. It provides guidance on assessing workload characteristics, configuring deployments, and migrating existing code to be compatible with LMI requirements. The references included in the package cover essential topics such as cost comparisons, instance type configurations, and troubleshooting common issues that may arise during deployment.

LMI is best suited for applications with predictable traffic patterns and specific compute requirements, such as high network bandwidth or the need for dedicated hardware. It is also ideal for workloads that cannot tolerate cold starts, as LMI eliminates this issue through provisioned capacity. However, it is important to note that LMI does not scale to zero, making it less suitable for workloads with highly variable traffic. Developers should carefully evaluate their application needs against the capabilities of LMI before making a decision.

In summary, AWS Lambda Managed Instances provides a powerful solution for running Lambda functions in a managed environment, combining the flexibility of EC2 with the ease of use of Lambda. This skill equips users with the necessary tools and knowledge to optimize their serverless architecture effectively.

When to use it

Use this skill when you have steady, predictable traffic and require dedicated resources for your Lambda functions.

When not to use it

Avoid using this skill for workloads with highly variable traffic that require scaling to zero or for applications that do not need dedicated compute resources.

What you can build with it

Migrating a High-Traffic Application

A company with a high-traffic application can use LMI to run Lambda functions on EC2, ensuring performance and eliminating cold starts.

Cost Analysis for Serverless Workloads

A team evaluating costs can use the cost-comparison guide to determine if LMI is more cost-effective than standard Lambda for their workload.

Ensuring Thread Safety in Code

Developers can leverage the thread-safety guidelines to prepare their existing code for concurrent execution in LMI environments.

How to install AWS Lambda Managed Instances

View source

1. Install with the skills CLI

npx skills add aws/agent-toolkit-for-aws/aws-lambda-managed-instances --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by aws

AWS Lambda Managed Instances (LMI)

Runs Lambda functions on EC2 instances in the user's account while AWS manages provisioning, patching, scaling, routing, and load balancing. Combines Lambda's developer experience with EC2's pricing and hardware options.

Works best with the AWS MCP server for sandboxed CLI execution and audit logging. All guidance also works with standard AWS CLI or SAM CLI.

Note: Confirm regional availability, quotas, and instance type offerings against current AWS documentation before production deployment.

Quick Decision: Is LMI Right for This Workload?

SignalLMI is a strong fitStandard Lambda is better
TrafficSteady, predictable, 50M+ req/moBursty, unpredictable, long periods of no traffic
CostDuration-heavy spend at scaleLow or sporadic invocations
Cold startsUnacceptable (LMI eliminates for provisioned capacity)Tolerable
ComputeLatest CPUs, specific families, high network bandwidth, GPU requirementsStandard Lambda memory/CPU sufficient
IsolationDedicated EC2 instances in your account, full VPC controlShared Firecracker micro-VMs acceptable
Scale-to-zeroDoes not scale to zero but can create custom schedules with AWS provided solutionsRequired (pay nothing when idle)
Code readinessThread-safe (Node.js/Java/.NET) or any Python codeNon-thread-safe code, expensive to change

Routing

Read ONLY the single reference file that matches the user's task. Do not preload multiple references.

User needAction
Cost comparison, pricing analysis, Savings Plans, Reserved InstancesRead cost-comparison.md
Instance types, memory sizing, vCPU ratios, scaling tuning, capacity provider configRead configuration-guide.md
Thread safety, concurrency model, code review checklist, multi-concurrency readinessRead thread-safety.md
Before/after code examples, runtime-specific migration, connection poolingRead migration-patterns.md
IAM roles, VPC setup, CLI commands, SAM template, CDK exampleRead infrastructure-setup.md
Errors, throttling, debugging, stuck deploymentsRead troubleshooting.md

Troubleshooting quick facts (always mention when diagnosing issues):

  • Capacity provider stuck in CREATING → most common cause is private subnets missing a NAT gateway route (instances need outbound internet for image pull and Lambda service communication)
  • Function not scaling → check that a version is published (PublishToLatestPublished: true)
  • Memory errors → LMI minimum is 2048 MB

Workflow

Step 1: Assess the Workload

Gather these signals before recommending:

  1. Traffic pattern: Steady vs bursty? Requests per second?
  2. Current costs: Monthly Lambda spend? Existing Savings Plans?
  3. Runtime: Node.js, Java, .NET, or Python?
  4. Memory/CPU: How much memory? CPU-bound or I/O-bound?
  5. Execution duration: Average and P99?
  6. Concurrency readiness: Thread safety? Shared /tmp paths? Per-invocation DB connections?
  7. VPC: Already in a VPC? Private resource access needed?

When recommending LMI, ALWAYS mention: minimum 3 execution environments for AZ resiliency (cannot go below 3 in production).

Step 2: Build the Cost Comparison

REQUIRED: Present a cost comparison before recommending LMI.

Rule of thumb: LMI becomes cost-competitive at 50-100M+ req/month with steady traffic. Use the LMI Pricing Calculator for accurate comparisons.

Step 3: Configure the Deployment

  • Instance families (400+ types, .large and up): C-series (compute), M-series (general), R-series (memory). ARM (Graviton) for best price-performance.
  • When using Graviton instances, MUST set Architectures: [arm64] in the function configuration to match.
  • Memory-to-vCPU ratios: 2:1 (compute), 4:1 (general, default), 8:1 (memory). Min 2 GB, max 32 GB.
  • Multi-concurrency per-vCPU maximums: Node.js 64, Java 32, .NET 32, Python 16. These are system caps — the actual setting is PerExecutionEnvironmentMaxConcurrency (per execution environment, not per vCPU).
  • For I/O-bound workloads: use the runtime default or higher PerExecutionEnvironmentMaxConcurrency (e.g., 10 for Node.js) since each request uses minimal CPU while waiting on network.
  • For CPU-bound workloads: set PerExecutionEnvironmentMaxConcurrency to 1-2 per vCPU since each request saturates CPU.
  • Scaling: MinExecutionEnvironments (default 3), MaxVCpuCount (optional, default 400 — set explicitly as best practice), TargetResourceUtilization.

Step 4: Migrate the Code

Review code for concurrency safety. LMI runs multiple invocations concurrently per execution environment:

  • Python: Process-based isolation — globals are NOT shared. No thread-safety changes needed. Focus on /tmp conflicts and memory sizing.
  • Node.js: Worker threads — globals shared within a worker. Requires async safety.
  • Java/.NET: OS threads/Tasks — handler shared across threads. Requires full thread safety.

Step 5: Set Up Infrastructure

  1. Create two IAM roles: execution role (for the function) and operator role (for capacity provider EC2 management)
  2. Configure VPC with subnets across 3+ AZs
  3. Create capacity provider with VPC config and scaling limits
  4. Create or update function with capacity provider attachment
  5. Publish a version (triggers instance provisioning)

Step 6: Validate and Cut Over

  1. Deploy to a non-production environment first
  2. Monitor CloudWatch: CPU utilization, memory, concurrency, throttle rate
  3. Gradual traffic shift with weighted aliases (10% → 50% → 100%)
  4. Compare costs after 1-2 weeks of production data
  5. Decommission standard Lambda once stable

Best Practices

Pricing (always mention when discussing costs)

  • Three components: EC2 instance hours + 15% management fee + $0.20/1M requests
  • Savings Plans: Compute Savings Plans apply to the EC2 portion (up to 60-72% discount)
  • The 15% fee is charged on top of EC2 cost for AWS managing provisioning, patching, scaling, lifecycle

Scaling (always mention when discussing scaling or traffic)

  • LMI absorbs a 50% traffic spike immediately and doubles capacity within 5 minutes — if traffic more than doubles faster, requests throttle
  • Standard Lambda bursts to 3000 instantly — LMI cannot match this
  • Pre-warm with MinExecutionEnvironments before known spikes
  • MaxVCpuCount (default 400) — set explicitly as a cost ceiling
  • Shape: Reduce MinExecutionEnvironments to lower capacity during off-hours (minimum 3 for AZ resiliency)

Instance Sizing

  • 1 vCPU + 1 GB reserved per instance for OS overhead (not available to your function)
  • Usable capacity = total - overhead

Configuration

  • Start with 4:1 ratio and runtime default concurrency
  • Use ARM (Graviton) unless x86 dependencies exist
  • Let Lambda choose instance types unless specific hardware needed
  • Set MaxVCpuCount to control cost ceiling
  • Never set MinExecutionEnvironments below 3 (breaks AZ resiliency)

Migration

  • Start with I/O-heavy functions (benefit most from multi-concurrency)
  • Review code for concurrency safety before attaching to capacity provider
  • Use weighted aliases for gradual traffic shift
  • Include request IDs in all log statements
  • Initialize DB pools and SDK clients outside the handler

Operations

  • Set CloudWatch alarms on throttle rate > 1% and CPU > 80%
  • Plan for 14-day instance rotation (automatic)
  • Never manually terminate LMI EC2 instances (delete the capacity provider instead)
  • Always publish a version — unpublished functions cannot run on LMI

Limits Quick Reference

ResourceLimit
Memory2 GB min, 32 GB max
Execution environments3 minimum (MinExecutionEnvironments, AZ resiliency)
Instance lifespan14 days (auto-replaced)
Concurrency/vCPU64 (Node.js), 32 (Java/.NET), 16 (Python)
RuntimesNode.js 22+, Java 21+, .NET 8+, Python 3.13+, Rust (provided.al2023)
Instance familiesC, M, R (.large and up)
ScalingBurst headroom equals unused capacity from TargetResourceUtilization; new instances launch within minutes

Security Considerations

  • Operator role scoping: Add aws:SourceAccount and aws:SourceArn conditions to trust policies to prevent confused deputy attacks.
  • VPC egress: Scope security group egress to VPC endpoint security groups or AWS prefix lists rather than 0.0.0.0/0.
  • Credentials: Use AWS Secrets Manager or Parameter Store for database credentials — never environment variables for secrets.
  • Encryption: Enable SQS SSE, CloudWatch Logs encryption (KMS), and S3 default encryption for any data at rest.
  • Logging: Set CloudWatch Log group retention policies. Avoid logging PII or credentials. Enable CloudTrail data events for Lambda.
  • Instance rotation: The 14-day automatic rotation ensures security patches are applied without manual intervention.
  • References: Lambda Security Best Practices, IAM Best Practices

Files

FileContent
cost-comparison.mdPricing analysis, break-even calculations, Savings Plans/RI impact
configuration-guide.mdInstance selection, memory ratios, scaling tuning, capacity provider config
thread-safety.mdConcurrency model per runtime, code review checklist, Powertools compatibility
migration-patterns.mdBefore/after code by runtime, connection pooling, gradual cutover
infrastructure-setup.mdIAM roles, VPC setup, SAM templates, CLI commands
troubleshooting.mdCommon errors, throttling, debugging, stuck deployments

Frequently asked questions about AWS Lambda Managed Instances

Similar skills