Function as a service (FaaS) is a cloud-computing service that allows customers to run code in response to events, without managing the complex infrastructure typically associated with building and launching microservices applications.
Hosting a software application on the internet typically requires provisioning and managing a virtual or physical server and managing an operating system and web server hosting processes. With FaaS, the physical hardware, virtual machine operating system and web server software management are all handled automatically by the cloud service provider. This feature allows developers to focus solely on individual functions in their application code.
Read how desktop as a service (DaaS) enables enterprises to achieve the same level of performance and security as deploying the applications on premises.
Register for the guide on hybrid cloud
Serverless and Functions-as-a-Service (FaaS) are often conflated with one another but the truth is that FaaS is actually a subset of serverless.
Serverless is focused on any service category, be it compute, storage, database, messaging and api gateways where configuration, management and billing of servers are invisible to the user.
However, faaS while perhaps the most central technology in serverless architectures, is focused on the event-driven computing paradigm wherein application code or containers only run in response to events or requests.
FaaS is a valuable tool for efficient and cost-effective application migration to the cloud. Here are some more benefits:
There are several best practices that you can follow to make using FaaS easier to deploy and more effective:
Because it enables transactions to be isolated and scaled easily, FaaS is good for high-volume and embarrassingly parallel workloads. It can also be used to create backend systems or for activities such as data processing, format conversion, encoding or data aggregation.
FaaS is also a good tool for web apps, backends, data or stream processing, or for creating online chatbots or back ends for IoT devices. FaaS can help you manage and use third-party services. If you’re considering Android app development, for example, you can adopt a FaaS approach to keep your costs in check. Because you’re only charged when your app connects to the cloud for a specific function like batch processing, costs can be considerably lower than they would when using a traditional approach.
FaaS can also dramatically boost computing performance. For example, two students recently worked with IBM engineers to explore how to use IBM Cloud Functions for Monte Carlo simulations (mathematical methods used to estimate the future outcomes of certain hard-to-predict events) to estimate stock prices. Monte Carlo simulations are considered an important high-performance computing workload.
The combination of Monte Carlo and IBM Cloud Functions enabled the team to run computations on a massive scale and allowed them to focus on the business logic. Using FaaS, the team completed an entire Monte Carlo simulation in about 90 seconds with 1,000 concurrent invocations. Comparatively, running the same flow over a laptop with four CPU cores took 247 minutes and almost 100% CPU utilization.
FaaS, PaaS (Platform-as-a-Service), containers and virtual machines (VMs) all play a critical role in the serverless ecosystem. Because FaaS is the most central and most definitional element of the serverless stack, it’s worth exploring how FaaS differs from other common models of compute on the market today across key attributes:
Kubernetes and Knative are one implementations of “plumbing” behind FaaS. Kubernetes is an open source, container orchestration tool that is critical to the managing of cloud applications. Knative lets you run serverless within a Kubernetes cluster.
The combination of Knative and Kubernetes means you can take advantage of Kubernetes functions like monitoring, security, logging and authentication and combine them with Knative benefits such as automated container build, full portability and working across hybrid environments.
Creators of this technology believed that developers should not have to choose between serverless and containers when building cloud apps. The goal was to augment the availability and consistency of containers with the powerful scaling and on-demand access of serverless.
Run container images, batch jobs or source code as serverless workloads—no sizing, deploying, networking or scaling required.
Serverless is a cloud application development and execution model that lets developers build and run application code without provisioning or managing servers or backend infrastructure.
Containers are executable units of software that package application code together with its libraries dependencies, and can be run anywhere, whether it be on desktop, traditional IT or the cloud.
PaaS, or Platform-as-a-Service, provides a complete, flexible and cost-effective cloud platform for developing, running and managing applications.