What Is Serverless Architecture and When Should You Use It?

Cloud computing is constantly evolving, from bare-metal to container technologies. The latest trend in this process is the serverless (Function as a Service, or FaaS) computing model. According to Techbeacon, serverless has an annual growth rate of 75%, making it the fastest growing cloud service model.

So, serverless architecture isn’t a mere buzzword. More companies than ever are adopting it.

If you’re not sure what serverless architecture is, you’ve come to the right place. Read on to learn what serverless architecture is, when it makes sense, and when it doesn’t.

Building with scalyr implying serverless architecture

What Is Serverless Architecture?

The term serverless architecture can be confusing. It doesn’t mean application designs that allow for running applications in some magical space where servers are nonexistent.

Serverless architectures are application designs that make use of third-party services (Back end as a Service, or BaaS). They may use custom code run in managed, ephemeral containers on a FaaS platform.

Servers still run your application. But a third-party company takes care of the grunt work of provisioning, managing, and scaling servers. In serverless architecture, you manage and provision nothing.

Serverless architecture often incorporates two components: Function as a Service and Backend as a Service.

  • FaaS is a computing service that allows you to run self-contained code snippets called functions in the cloud. Your functions remain dormant until events trigger them. Functions are self-contained, small, short-lived, and single-purpose. They die after execution.
  • BaaS is a cloud computing service that completely abstracts backend logic, which takes place on faraway servers. It allows developers to focus on front-end code and integrate with back-end logic that someone else has implemented. BaaS could be authentication, storage services, geolocation services, user management, and so on.

In serverless architecture, you focus on writing code only. You deploy when you’re ready, without caring about what runs it or how it runs.

Is serverless the same as Platform as a Service?

Serverless and Platform as a Service (PaaS): What’s the Difference?

Many people mistake Platform as a Service (PaaS) for serverless architecture. Although they are similar in many ways, they aren’t the same.

PaaS providers offer software and hardware infrastructure as a platform to users—what many people call a solution stack. That means you can run custom applications using the provider’s platform. Serverless, on the other hand, provides an environment where you can write and run custom code (functions) without managing, provisioning, or scaling infrastructure.

What do Paas and serverless architecture have in common? You don’t manage infrastructure in either one. The platform provider takes care of that. However, differences exist in how you compose your application and how you scale it.

Composition

In the PaaS model, you write your application using a framework or language that your platform provider supports, and you deploy your business logic as a single unit. In the serverless model, your business logic is broken down into self-contained units that each perform a business function.

Scaling

Scaling isn’t automatic for PaaS applications. Instead, you have to configure your app and add resources to handle more requests. In serverless architecture, on the other hand, your app scales automatically as the workload increases.

Lifetime Availability

Like traditional applications, PaaS applications have to be available at all times to continue to serve requests. In serverless, by contrast, functions are short-lived—they die after execution.

Now you understand that PaaS isn’t serverless, though the two systems are similar in some ways. But why would you want to go serverless?

Why Use Serverless Architecture?

As you ponder this question, consider these three key attributes of serverless architecture.

  • It’s scalable and highly available. Scaling traditional applications requires you to understand your traffic pattern. You estimate how much of each resource you’d need, and then you’d provision accordingly. Users troop in from all geographical regions to use modern applications. A traditional application could be overwhelmed by a spike—probably on a black Friday. In serverless, your application is highly available, and it scales automatically as your users grow and usage increases.
  • It costs less. One of the reasons serverless architecture is gaining popularity among startups is because of its pricing model. The cost of running servers 24/7 and paying for idle time is no longer an issue in serverless. You pay for usage only. Functions have allocated time in which they run and die afterward. The provider charges based on the number of executions and the size of memory your workload uses. This helps you optimize costs.
  • The time to market is faster. Operational tasks such as server provisioning, maintenance, and monitoring infrastructure are off your shoulders. You can focus solely on your business logic (code), experiment with ideas, and hit production on time.

With all the promises of serverless, is it perfect for all use cases? No. In some cases, serverless architecture makes sense, but in others, it might not. We’ll discuss this point in detail later on in this post.

Let’s explore some common use cases of serverless architecture.

Serverless Architecture Use Cases

In a traditional application, your application runs actively on servers. Since your servers are on 24/7, you also pay for idle time. In the serverless world, though, there are no servers to pay for. You only pay per trigger.

In other words, you pay for what you use. This advantage makes serverless architecture a good option for business cases that don’t have to be always on. In this way, you save money from not paying for idle time.

Examples of serverless architecture use cases are:

High-Traffic Websites

If you’re still serving your static websites from an EC2 instance, you may be missing out on a lot. With serverless, you can host your static website on S3 bucket and serve your assets with a global, fast cloud delivery network. Not only is it cheaper and fast, but it is also highly available and scalable.

Multimedia Processing Applications

If your business deals with images and videos, then serverless architecture might work well for you. You can use a scalable storage service such as AWS S3 to store your data. An upload event can trigger a lambda function after each successful upload that processes your file asynchronously. Your users can continue to enjoy your app while a highly available and scalable back-end service processes the upload in a non-blocking way.

Mobile Backends

An API gateway gives you an entry point to your business functions. These functions can be exposed as rest API that your mobile app consumes. Serverless services such as AWS AppSync allow you to securely access, manipulate, and combine data from multiple sources in real time.

Internet of Things (IoT)

IoT devices generate a lot of data from their environments through sensors. Organizations often struggle to process this overwhelming data coming from these connected devices in a scalable way. Using a serverless back end like AWS IoT Core, you can scale to billions of devices and trillions of messages.

Automate CI/CD Pipelines

Continuous Integration (CI) and Continous Delivery are practices that empower developers to integrate and deliver code frequently and reliably.  You can leverage on serverless to automate your CI/CD workflows. An event from developers’ code check-ins could trigger automated tests or even deploy to production.

Big Data Applications

Before cloud computing, the insights big data provided were available only to big enterprises because of the infrastructure’s overheads needed to make sense of big data.

Setting up and maintaining infrastructures for big data isn’t easy. With serverless computing, your app can now take advantage of several services, including Amazon S3, Amazon Athena, Amazon Kinesis, AWS Glue, and AWS Lambda to build scalable data pipelines.

Earlier, I mentioned that serverless architecture isn’t a silver bullet. There are cases where serverless might not be a good fit.

When Going Serverless Might Not Make Sense

With all the promises of serverless architecture, it has its drawbacks and limitations too. It’s important to keep these in mind when considering serverless architecture and plan accordingly.

  1. There’s a limit to how long a function can run. This makes serverless architecture unsuitable for tasks that run for hours.
  2. What if you require a fast response with a consistent latency of less than 50 milliseconds? Serverless architecture suffers from the problem of a cold start. In a case like this, you might need to reconsider your options.
  3. You may be afraid of vendor lock-in. Serverless architecture could tie you to a single vendor. Migrating serverless applications from one vendor to another requires a lot of manual effort and major changes in your code.
  4.  Serverless vendors limit how much memory you can assign to functions. If you require a complex compute with high memory requirements, then going serverless might not be a good use case.
  5.  Serverless vendors enforce hard limits on deployment size. This could vary from one vendor to another. For example, AWS allows a code deployment size up to 250MB. For large code deployment, serverless architecture might not be suitable.
  6. It’s hard to test locally. One of the greatest advantages of serverless architecture is the cloud, and it’s also its drawback when running tests. Since serverless architecture uses cloud services, it’s difficult to emulate those cloud services locally to run tests. .

Serverless Applications Monitoring

One of the critical aspects of any application in production is monitoring.

Full visibility is vital for debugging and for taking proactive steps when things are about to go wrong. This is even more important in a serverless environment where you use a backend component managed by someone else. 360 degree is an overview is needed.

At first, complete visibility into serverless apps was not intuitive. Over the years, as serverless architectures have gained widespread, sophisticated monitoring tools have begun to emerge. Services like Scalyr, CloudWatch, DataDog , Epsagon allow you to see updates with robust alerting systems before they affect your users. These modern monitoring tools allow for seamless integrations.

Scalyr, one of the advanced monitoring apps for serverless applications, is offering a free trial.

Serverless Compute Platforms

We’ve discussed why serverless architecture is worth the buzz and how you can use it to build scalable and highly available applications. In the next few paragraphs, we’ll look at three serverless computing platforms to get you started.

AWS Lambda

AWS Lambda  lets you run code without provisioning servers. It was introduced in 2014 and has grown ever since. According to a report, AWS Lambda has the largest market share of all serverless computing platforms. If you code in Java, Go, Powershell, Node.js, C#, Python, or Ruby, you’re in luck. AWS Lambda natively supports their runtimes.

Azure Functions

Azure Functions is a serverless platform offering from Microsoft. It allows you to build, run code at scale without the grunt work of server provisioning. At the time of writing this post, Azure functions support C#, Javascript, F#, Java, PowerShell, Python and Typescript.

Cloud Functions

Cloud Functions is an event-driven serverless compute platform from Google Cloud. As stated on cloud function’s official page, write your code and let Google take care of the operational overhead. Google cloud function is one of the leading serverless platforms to run your code. At the time of writing this post, cloud functions support Node.js, Python and Go runtimes.

Conclusion

Before moving to serverless architecture, you must first evaluate your use cases. It’s critical to understand what your business requirements are and whether serverless architecture would make sense for your project and some of the limitations you’d hit down the road. When you have this information, you can better prepare.

In this post, we’ve seen the advantages of serverless architecture. We also discussed some of the drawbacks of serverless architecture and some typical serverless use cases. To build on this knowledge, I encourage you to read these sources: