View on GitHub

reading-notes

My learning journal for Code Fellows

Serverless Functions

What is Serverless?

Serverless ia a cloud application development and execution model that lets devs build and run code without having to worry about server management or pay for idle cloud management. With serverless, devs only need to focus on creating the front end of an application, and then deploy those front end packages to the cloud service provider.

Serverless does not mean no servers, it simply refers yto outsourcing the server side creation and maintenance to a third party (AWS, Azure, Google Cloud, IBM Cloud engine). As needed, the amount of storage and functionality required from these third party server management companies will spin up and down. Because of this, you will only pay for the execution time and resources actually used.

FaaS

FaaS, or function as a service, is a service that enables devs to run code or containers in response to specific events or requests, without specifying or managing the resources needed to run that code.

Serverless vs. Platform as a service, containers, and virtual machines

Kubernetes and Knative

Kubernetes is an open-source container orchestration platform that automates deployment, management and scaling of containers. Serverless apps are deployed in containers, but Kubernetes needs a specialized software that integrates Kubernetes into the specific cloud platform’s serverless platform. Knative is an open-source extension of Kubernetes that allows any container on any Kubernetes utilizing cloud platform. Knative works by handling the network routing, event triggers and autoscaling of the application.

Pros and Cons of Serverless

Pros

Cons