Current limitations of Serverless platforms
Serverless today provides a great platform for stateless services. It does an amazing job at scaling from 1-10000 requests and down to zero in a very cost-efficient manner (no events == no cost). It also offers simplicity in operations.
However, Serverless means different things to different people. Many equate it with Function-as-a-Service (FaaS). We see it as much more than that: a new category of PaaS itself, where the focal point is the Developer Experience, as well as supporting the full life-cycle of the application, and not merely the programming API of its latest incarnation. The paper Serverless computing: economic and architectural impact, by Adzic et al. agrees with this broader picture:
The current incarnation of Serverless, focusing on Function-as-as Service (FaaS), is a classic data-shipping architecture—developers move data to the code, not the other way round. We, however, believe that FaaS is only the first step along the journey. It’s not about a specific implementation. Instead, it’s all about the Developer Experience, a new way of building and running applications. And, it is time to expand on its scope and supported use-cases to create a better experience. What are the limitations of FaaS that we can address to start this journey?
Limitations of FaaS
One limitation of FaaS is that its functions are ephemeral, stateless, and short-lived. For example, Amazon Lambda caps their lifespan to 15 minutes. This makes it problematic to build general-purpose data-centric cloud-native applications. It is simply too costly—in terms of performance, latency, and throughput—to lose the computational context (locality of reference) and be forced to load and store the state from the backend storage over and over again.
Another limitation of FaaS is that, quite often, functions simply have no direct addressability, which means that they can’t communicate directly with each other using point-to-point communication. This forces developers to resort to publish-subscribe, passing all data over some slow and expensive storage medium. Publish-subscribe provides a model that can work well for event-driven use-cases but yields too high latency for addressing general-purpose distributed computing problems.
Strengths of FaaS
However, this does not mean that Serverless 1.0 (FaaS) is not ready for use. As is, it is well suited for parallelizable processing-centric use-cases, where incoming data is pushed downstream through a pipeline of stateless functions doing data enrichment and transformations before pushing it downstream.
Examples of use-cases of this are:
-
Embarrassingly parallel tasks—often invoked on-demand and intermittently. For example, resizing images, performing object recognition, and running integer-programming-based optimizations.
-
Orchestration functions, used to coordinate calls to proprietary auto-scaling services, where the back-end services themselves do the real heavy lifting.
-
Applications that compose chains of functions—for example, workflows connected via data dependencies. These use cases often show high end-to-end latencies though.
As Adzic et al. write in their paper Serverless computing: economic and architectural impact:
The need for Stateful Serverless Computing
If Serverless is conceptually about how to remove humans from the equation and solve developers' hardest problems with reasoning about systems in production, then it needs declarative APIs and high-level abstractions with rich and easily understood semantics (beyond low-level primitives like functions) for working with never-ending streams of data, manage complex distributed data workflows, and managing distributed state in a reliable, resilient, scalable, and performant way.
Serverless needs to provide Stateful long-lived virtual addressable components. All these terms are important:
-
Stateful: in-memory, yet durable and resilient state.
-
Long-lived: life-cycle is not bound to a specific session, the context available until explicitly destroyed.
-
Virtual: location transparent and mobile, not bound to a physical location
-
Addressable: referenced through a stable address, one example of a component with these traits would be Actors.
As discussed by Hellerstein et al:
To achieve stateful long-lived virtual addressable components, we need:
-
A wider range of options for coordination and communication patterns (beyond event-based pub-sub over a broker), including fine-grained sharing of state using common patterns like point-to-point, broadcast, aggregation, merging, shuffling, etc. As concluded by Jonas et al:
-
Tools for managing distributed state reliably at scale—in a durable or ephemeral fashion—with options for consistency ranging from strong to eventual and causal consistency, and ways to physically co-locate code and data while remaining logically separate. For example, disorderly programming constructs like CRDTs. As discussed by Hellerstein et al:
-
Intelligent adaptive placement of stateful functions—ways to physically co-locate code and data while remaining logically separate. As discussed in this article by Stoica and Petersohn.
-
End-to-end correctness and consistency—be able to reason about streaming pipelines and the properties (Such as backpressure, windowing, completeness vs correctness, etc.) and guarantees it has as a whole. End-to-end correctness, consistency, and safety mean different things for different services. It’s totally dependent on the use-case, and can’t be outsourced completely to the infrastructure. The next-generation serverless implementations need to provide programming models and a holistic Developer Experience working in concert with the underlying infrastructure maintaining these properties, without continuing to ignore the hardest, and most important problem: how to manage your data in the cloud—reliably at scale.
-
Predictable performance, latency, and throughput—in startup time, communication, coordination, and durable storage/access of data.
What’s next
Now that we have established general requirements for a stateful serverless platform, let’s consider why it also important to rethink the use of CRUD in Serverless.