What Is Lambda?
AWS Lambda is a serverless computing service that lets you run code without provisioning or managing the underlying servers. It’s like you’re running code without computers.
Building a Function.
What Is the AWS Serverless Application Repository?
Allows users to easily find, deploy, or even publish their own serverless
applications.
What Is a Container?
A container is a standard unit of software that packages up code and all its
dependencies, so the application runs quickly and reliably from one computing environment to another.
What is ECS?
What is EKS?
The AWS-managed version of Kubernetes is called Elastic Kubernetes Service (EKS).
How do we decide when to pick ECS or EKS?
ECS:
Proprietary AWS container management solution. Best used when you’re all in on AWS and looking for something simple.
EKS:
AWS-managed version of open-source Kubernetes container management solution. Best used when you’re not all in on AWS. More work to configure and integrate with AWS
What Is Fargate?
AWS Fargate is a serverless compute engine for containers that work with both Amazon Elastic Container Service (ECS) and Amazon Elastic Kubernetes Service (EKS).
EC2 vs. Fargate
EC2:
- You are responsible for the underlying operating system
- EC2 pricing model
- Long-running containers
- Multiple containers share the same host
Fargate:
- No operating system access
- Pay based on resources allocated and time ran
- Short-running tasks
- Isolated environments
What Is EventBridge?
Amazon EventBridge (formerly known as CloudWatch Events) is a serverless event bus. It allows you to pass events from a
source to an endpoint. Essentially, it’s the glue that holds your serverless application together.
What is Amazon ECR?
What is Amazon EKS Distro?
What is EKS Anywhere and EKS Anywhere?
What is Amazon Aurora Serverless?
What is AWS XRAY?
What Is AWS AppSync?
What are some common use cases for Lambda?
What are the two networking modes in AWS Lambda?
What are the two security features in Lambda?
What are the three Lambda invocation modes?
What is the difference between a cold start and a warm start in Lambda?
How to reduce the impact of Lambda cold starts?