ServerLess computing Intro

Hi Folks,

Today we gonna talk about how to run our codes wihtout having any server!
YES!! you read it right.

First tell me what the hell is Serverless computing?

Ans: Serverless computing allows you to build and run applications and services without thinking about servers. Serverless applications don't require you to provision, scale, and manage any servers. You can build them for virtually any type of application or backend service, and everything required to run and scale your application with high availability is handled for you.
         

The main benifit of using serverless computing is: 

1. No server management

There is no need to provision or maintain any servers. There is no software or runtime to install, maintain, or administer.

2. Flexible scaling
Your application can be scaled automatically or by adjusting its capacity through toggling the units of consumption (e.g. throughput, memory) rather than units of individual servers.

3.High availability

Serverless applications have built-in availability and fault tolerance. You don't need to architect for these capabilities since the services running the application provide them by default.

4.No idle capacity

You don't have to pay for idle capacity. There is no need to pre- or over-provision capacity for things like compute and storage. For example, there is no charge when your code is not running.

Comments

Popular This Time