- TechOps Examples
- Posts
- Function as a Service (FaaS)
Function as a Service (FaaS)
TechOps Examples
Hey β It's Govardhana MK π
Along with a use case deep dive, we identify the remote job opportunities, top news, tools, and articles in the TechOps industry.
π Before we begin... a big thank you to today's sponsor SUPERHUMAN AI
Find out why 1M+ professionals read Superhuman AI daily.
In 2 years you will be working for AI
Or an AI will be working for you
Here's how you can future-proof yourself:
Join the Superhuman AI newsletter β read by 1M+ people at top companies
Master AI tools, tutorials, and news in just 3 minutes a day
Become 10X more productive using AI
Join 1,000,000+ pros at companies like Google, Meta, and Amazon that are using AI to get ahead.
IN TODAY'S EDITION
π§ Use Case
Function as a Service (FaaS)
π Top News
π Remote Jobs
GR8 Tech is hiring a Senior DevOps Engineer
Remote Location: Worldwide
Neon.tech is hiring a Lead Site Reliability Engineer
Remote Location: USA, Europe
ποΈ Resources
π’ Reddit Threads
π§ USE CASE
Function as a Service (FaaS)
Many cloud engineers think Function as a Service (FaaS) just means running code without worrying about servers. Thatβs not wrong, but itβs not the whole picture.
FaaS changes how we build apps, making them more event driven, scalable, and cost efficient. But it also comes with trade offs.
Before we get there, we first need to understand how Serverless operates.

Think of traditional architecture as a well structured, all in one setup. Your application, security, backend logic, and database all live together in a controlled environment. Itβs predictable but requires ongoing maintenance and scaling efforts.
Now, compare that to serverless architecture (which FaaS is a big part of). Instead of managing everything in a monolithic setup, you break down workloads into small, event driven functions that scale automatically.
This shift isnβt just about backend logic, it extends to API gateways, security layers, and even database triggers.
What is FaaS, Really?
FaaS is a cloud service that lets you run code in response to events without managing servers. Your function only runs when triggered, and you only pay for the execution time.

Key traits of FaaS:
Event driven β Functions run when something happens (HTTP requests, database updates, queue messages, etc.).
Stateless β Each function runs in isolation, so you need external storage for state.
Auto scaling β Grows from zero to thousands of executions in seconds.
Short execution time β Functions usually have limits (eg: AWS Lambda allows up to 15 minutes).
FaaS shines in specific situations. Hereβs when it makes the most sense:
API Backends β Deploy REST or GraphQL APIs quickly.
Event Driven Workloads β Process log changes, queue messages, or IoT events.
Scheduled Jobs β Automate tasks like backups, reports, or notifications.
Glue Code & Automation β Connect different cloud services efficiently.
Parallel Processing β Run multiple independent tasks without heavy orchestration.
Security & Compliance Hooks β Implement security policies, enforce access control, and monitor events in real time.
Practical Technical Considerations:
Cold Starts & Latency β Idle functions take 100ms to several seconds to start. To mitigate:
Use provisioned concurrency (where available) for critical functions.
Optimize startup times by reducing dependencies and using lightweight runtimes.
Networking Constraints β Functions execute in ephemeral containers with no persistent connections:
Use database proxies (like RDS Proxy) to pool connections efficiently.
Prefer event driven data pipelines over direct DB queries.
Observability & Debugging β Traditional logging methods donβt work well, instead:
Use structured logs in external log aggregators (e.g., Loki, Datadog, CloudWatch Logs).
Enable distributed tracing (OpenTelemetry, AWS X-Ray, GCP Cloud Trace).
State Management β Since functions are stateless, consider:
Storing transient data in object stores (S3, Cloud Storage).
Using managed caches (Redis) for session persistence.
Execution Time & Resource Limits β Functions are not meant for long running tasks:
If processing exceeds time limits, use an orchestrator (Step Functions, Durable Functions).
For high memory workloads, leverage tiered memory settings to optimize execution.
Cost Considerations β Billing is based on execution time, memory allocation, and request count:
Reduce cost by right sizing memory configurations.
Minimize execution time with optimized runtime environments (e.g., Golang over Python for faster cold starts).
If you need long running processes, persistent connections, or deep runtime control, you might want a mix of PaaS or containerized solutions.
FaaS is a powerful but requires architectural changes, monitoring strategies, and workload specific optimizations.
Kubernetes Key Commands Map π
This is not a complete list; it includes only the key commands.
40K+ read my free bite-sized weekday TechOps examples newsletter: techopsexamples.com/subscribe
What do we cover:
DevSecOps, Cloud, Kubernetes, IaC, GitOps, MLOpsπ Consider a Retweet ifβ¦ x.com/i/web/status/1β¦
β Govardhana Miriyala Kannaiah (@govardhana_mk)
3:00 PM β’ Mar 16, 2025
You may even like: