What is Serverless Computing?
What is Serverless Computing?
Serverless computing is a term for a type of cloud computing where the cloud provider manages all the servers used to run applications and services. This can include provisioning, managing, patching, and upgrading servers. It also includes monitoring server performance and handling capacity demands.
Serverless computing means you don't have to think about servers. Your application still runs on servers, but your cloud provider like Amazon takes care of all the server management for you. This way, you can focus on your application code instead of worrying about servers. Amazon offers cost-effective services that provide built-in availability and flexible scaling, so your application can grow as needed.
What is AWS Lambda?
AWS Lambda is a compute service that lets you run code without having to manage servers. You create a Lambda function, and Amazon executes it for you. You can use Lambda to handle events such as processing images uploaded to Amazon S3, responding to web requests using Amazon API Gateway, or scanning files in an AWS S3 bucket for malicious content.
You can also use Lambda to run batch processes or cron jobs. For example, you can use Lambda to archive old log files to Amazon S3 every day at midnight.
AWS Lambda integrates with other AWS services, so you can easily create applications that are scalable and highly available. You can also use Lambda with other services outside of AWS. For example, you can use Lambda to send push notifications to an iPhone app using the Apple Push Notification Service (APNS) or to send emails using Amazon Simple Email Service (SES).
other services outside AWS
- Apple Push Notification Service (APNS)
- Amazon Simple Email Service (SES)
In a serverless world, you don't need to think about or manage servers. You can simply write code and let AWS take care of the rest. With AWS Lambda, you can run code in response to events, such as uploading an image to Amazon S3 or processing
AWS Lambda is a compute service that lets you run code without having to manage servers. You create a Lambda function, and Amazon executes it for
Comments
Post a Comment