English

Universal Workers: A Vision for Eliminating Cold Starts in Serverless Computing

Distributed, Parallel, and Cluster Computing 2025-10-31 v2 Performance

Abstract

Serverless computing enables developers to deploy code without managing infrastructure, but suffers from cold start overhead when initializing new function instances. Existing solutions such as "keep-alive" or "pre-warming" are costly and unreliable under bursty workloads. We propose universal workers, which are computational units capable of executing any function with minimal initialization overhead. Based on an analysis of production workload traces, our key insight is that requests in Function-as-a-Service (FaaS) platforms show a highly skewed distribution, with most requests invoking a small subset of functions. We exploit this observation to approximate universal workers through locality groups and three-tier caching (handler, install, import). With this work, we aim to enable more efficient and scalable FaaS platforms capable of handling diverse workloads with minimal initialization overhead.

Keywords

Cite

@article{arxiv.2505.19880,
  title  = {Universal Workers: A Vision for Eliminating Cold Starts in Serverless Computing},
  author = {Saman Akbari and Manfred Hauswirth},
  journal= {arXiv preprint arXiv:2505.19880},
  year   = {2025}
}

Comments

Published in the 2025 IEEE 18th International Conference on Cloud Computing (CLOUD)

R2 v1 2026-07-01T02:39:19.045Z