Jump to section

What is Function-as-a-Service (FaaS)?

Copy URL

Function-as-a-Service, or FaaS, is a kind of cloud computing service that allows developers to build, compute, run, and manage application packages as functions without having to maintain their own infrastructure.

FaaS is an event-driven execution model that runs in stateless containers and those functions manage server-side logic and state through the use of services from a FaaS provider.

FaaS solutions are available on major public clouds and can be provisioned on-premise, adding significant new capabilities to enterprise IT for app development. Get the cloud-native strategy guide to prepare to implement a serverless approach with FaaS.

Some popular examples of FaaS include:

  • IBM Cloud Functions
  • Amazon's AWS Lambda
  • Google Cloud Functions
  • Microsoft Azure Functions (open source)
  • OpenFaaS (open source)

FaaS gives developers an abstraction for running web applications in response to events, without managing servers. For example, uploading a file could trigger custom code that transcodes the file into a variety of formats.

FaaS infrastructure is usually metered on-demand by the service provider, primarily through an event-driven execution model, so it’s there when you need it but it doesn’t require any server processes to be running constantly in the background, like platform-as-a-service (PaaS) would. 

Modern PaaS solutions offer serverless capabilities as part of common workflows that developers can use to deploy applications, blurring the lines between PaaS and FaaS. 

In reality, entire applications will be composed of a mix of these solutions: functions, microservices, and long running services

A provider makes your function available via an application programming interface (API) and manages resource allocation. Because functions are event-driven, not resource-driven, they are easily scalable and that scalability allows for increased efficiency and value.

There are architectural constraints in order to enable some of these benefits, like time limits on the execution of a function, so a function needs to be something that can start up and run quickly. 

Functions start within milliseconds and process individual requests. If there are several simultaneous requests for your function, then the system will create as many copies of the function as needed to meet demand.

When demand drops, the application automatically scales down. Dynamic scaling is a benefit of FaaS, and is cost-efficient as well, because providers only charge for the resources that are used, not idle time.

When running on premise, this dynamic nature can also increase your platform density, allowing more workloads to run and optimize resource consumption and functionality.

An event-driven service that needs horizontal scaling can work well as a function, as well as RESTful applications

FaaS works well for high volume transactions and workloads that only happen every so often, like generating reports, image processing, or any scheduled tasks. Common FaaS use cases are data processing, IoT services, and mobile or web apps.

You can build an entirely serverless application using FaaS, or comprise an application of partially serverless and partially traditional microservices components to take advantage of newer technology and container orchestration systems like Kubernetes.

  • Increased developer productivity and faster development time
  • Not responsible for server management
  • Easy to scale and horizontal scaling is managed by the platform
  • Only pay for or consume resources when necessary and as needed
  • Functions can be written in almost any programming language

Initially, FaaS and serverless meant more or less the same thing, but serverless has expanded to mean a larger set of architectural patterns and practices that make extensive use of common services in addition to custom business logic encoded in FaaS.

Serverless can be used by microservices and even traditional apps, as long as they can be containerized and adhere to the dynamic scale and state management requirements. 

The term "serverless" is also being used to represent managed services, like databases and messaging systems, where a developer or administrator is not required to operate the system since it's being managed by a cloud provider or third-party company.  

The combination of FaaS and common back-end services (such as databases, messaging, and authentication) connected primarily through an event-driven architecture is what provides the best benefits for serverless developers.

Keep reading

Article

Stateful vs stateless

Whether something is stateful or stateless depends on how long the state of interaction with it is being recorded and how that information needs to be stored.

Article

What is Quarkus?

Quarkus is a Kubernetes-native Java stack made for Java virtual machines (JVMs) and native compilation, optimizing Java specifically for containers.

Article

What is serverless?

Serverless is a cloud-native development model that allows developers to build and run applications without having to manage servers.

More about Red Hat OpenShift Service on AWS

Products

Red Hat OpenShift on Amazon Web Services (AWS) logo

A fully managed turnkey application platform in a native AWS environment.

An enterprise application platform with a unified set of tested services for bringing apps to market on your choice of infrastructure.

Resources

Training

Free training course

Introduction to Red Hat OpenShift Service on AWS (ROSA)