TechOps Examples
Hey — It's Govardhana MK 👋
Welcome to another technical edition.
Every Tuesday – You’ll receive a free edition with a byte-size use case, remote job opportunities, top news, tools, and articles.
Every Thursday and Saturday – You’ll receive a special edition with a deep dive use case, remote job opportunities and articles.
Top engineers at Anthropic and OpenAI say AI now writes 100% of their code.
If you're not using AI, you're spending 40 hours doing what they do in 4.
These 100+ Claude Code hacks fix that and help you ship 10x faster.
Sign up for The Code and get:
100+ Claude Code hacks used by top engineers — free
The Code newsletter — learn the latest AI tools, tips, and skills to code faster with AI in 5 minutes a day
🔴 Get my DevOps & Kubernetes ebooks! (free for Premium Club and Personal Tier newsletter subscribers)
Use Case
How Provisioned Concurrency Cut AWS Lambda Cold Starts by 98%
AWS Lambda cold starts occur when a function takes longer to start because the environment needs to be set up before running the code.
The Lambda execution environment lifecycle plays a crucial role in understanding cold starts.
When you invoke a Lambda function, AWS Lambda needs to create a secure, isolated environment where your code can run. This environment includes all the necessary resources such as memory, CPU, and the runtime for your function.

Lambda Execution Environment Lifecycle
Cold starts happen in the INIT phase because AWS Lambda has to create the environment from scratch. If no ready environments are available, Lambda needs time to set up everything before running the function, causing a delay in processing the first request. These delays are especially noticeable in high-demand applications.
"Provisioned Concurrency solves this by keeping a set number of instances of the function always warm and ready, reducing the startup time significantly."
As your function gets more requests at the same time, Lambda automatically increases the number of environments needed to run them.

Credit: AWS
Let's pause and time block the animation to see the breakdown clearly.

t1: The first three requests (1, 2, 3) are initialized (Init) and invoked (Invoke), all experiencing a cold start.
t2: The fourth and fifth requests (4, 5) are initialized and invoked, also experiencing a cold start.
t3: Requests 6, 7, and 8 are invoked directly without initialization, benefiting from warm instances.
t4: Request 9 is initialized and invoked, while requests 6, 7 and 8 continue their execution. Request 10 is invoked on a warm instance.
t5: Requests 6, 7, 8, and 10 continue their execution. No new initialization occurs.
t6: The final executions for requests 9 and 10 wrap up, with no new actions initiated.
How Lambda Allocates Provisioned Concurrency ?
Provisioned concurrency takes a minute or two to become active after configuration. Lambda can provision up to 6,000 execution environments per minute per function, regardless of the AWS Region.
"When you request provisioned concurrency, none of the environments are accessible until all requested environments are fully allocated."
For instance, if you request 5,000, the provisioned concurrency is only available once all 5,000 environments are ready.
Concurrency Quotas
Default account concurrency limit: 1,000 units.
Function-level limit: 900 units (100 reserved for unreserved functions).
Requests per second limit: 10 times the concurrency quota.
To check your account's concurrency quota, run this AWS CLI command:
aws lambda get-account-settingsYou’ll see output like this:
{
"AccountLimit": {
"TotalCodeSize": 80530636800,
"CodeSizeUnzipped": 262144000,
"CodeSizeZipped": 52428800,
"ConcurrentExecutions": 1000,
"UnreservedConcurrentExecutions": 900
},
"AccountUsage": {
"TotalCodeSize": 410759889,
"FunctionCount": 8
}
}Tool Of The Day
A management plane that provides lifecycle, performance, and configuration management for service meshes in cloud-native environments.
Interested in reaching smart techies?
Our newsletter puts your products and services in front of the right people - engineering leaders and senior engineers - who make important tech decisions and big purchases.
Did someone forward this email to you? Sign up here



