A Minimal Stack for Scalable Machine Learning

Stefan Keselj's Blog

8 min read Original article ↗

Sep. 10, 2026

Goal

In this article, I'd like to provide a good answer to the question:

"What is the simplest technology stack that can support scalable machine learning?"

Summary

In short, I think using Beam, Spark, & Kubernetes is the simplest way translate a pipeline from the single-machine to multi-machine setting.

Definitions

  1. Doing machine learning is using data to create logic [1].
  2. A scalable system can utilize an arbitrary amount of computational resources.

Background & Motivation

I've worked on various machine learning projects over the course of 10 years.

I've found that infrastructure has a profound influence on what gets done. If an operation is complicated or risky, people will avoid it.

Use Case

To make this discussion more concrete, I'll index on what I think is an emblematic use case of machine learning infrastructure.

Say we have a set of videos, like this one:

Tigst Assefa finishing the 2023 Berlin Marathon.
She broke the women's world record here.

And say we want to run a person detection model on the video (running model inference is key to both training & evaluation of machine-learned functionality).

The high-level pipeline we'd like to run is represented in this diagram:

High-level detection pipeline

Challenges

To implement this pipeline, 2 key properties need to be attained:

  1. Correctness. We need to implement the basic functions of the above pipeline.
  2. Scalability. We need to implement them in a way that scales with more resources.

Modularity of the pipeline is important because it will likely be effective to non-uniformly scale stages:

Potential scaled detection pipeline

The 2 properties above naturally lend themselves to 2 settings:

  1. Single-machine. Convenient for attainaing correctness.
  2. Multi-machine. Necessary for attaining scalability.

Here lies the key challenge to be respected:

Excellent infrastructure must support both above settings in a seamless way.

Proposed Solution

Now that I've established a use-case and its challenges, let me describe what I think is the best solution.

To start, consider the high level technological functions that need to be fulfilled. The following diagram summarizes my view on these.

A stack of layers. General purpose programming languages sit on top, resting on orchestrators and executors, which rest on task schedulers. Below those, databases and file formats rest on file systems.
Functional stack

I think the following are the best open-access implementations of these roles, for scalable machine learning use-cases.

Selected technologies
Function Technologies Notes
General purpose programming languages Python
Orchestrators Prefect,
Beam
An orchestrator helps resolve stage dependencies.
Executors Spark An executor helps execute parallel operations.
Task schedulers Slurm,
Kubernetes
On-premises can save a lot of money.
Databases Redis,
SQLite, PostgreSQL
File formats NPZ,
HDF5,
JPG, MP4,
Parquet
File systems Lustre,
GCS, S3
On-premises can save a lot of money.

Discussion

I'd like to highlight what I think is the key chord in the above stack:

This triple is the best way I see for translating pipeline code from the single-machine setting to the multi-machine setting.

Demonstration

I'll apply the above stack to the above use case.


Single-machine setting for correctness

To start, I'll create a basic correct version of the pipeline.

Code: person_detection.py.

In this file I implement the stages in simple Python:

  • Read: get_frame_batches
  • Detect: detect_in_batches
  • Render: render_frames & write_video

I can get the pipeline to process this 2:10 video in 1:50 on my desktop:

=================================================================================
Resources
---------------------------------------------------------------------------------
CPU  AMD Ryzen 5 3600 6-Core Processor (6 cores / 12 threads)
RAM  15,932 MiB
GPU  NVIDIA GeForce RTX 2060 (6,144 MiB)

=================================================================================
Top-line statistics
---------------------------------------------------------------------------------
Wall clock time         110.6 s
Samples                 2,086 @ 50 ms
Mean CPU usage          132% of 1,200% (1.3 of 12 cores busy)
Peak RSS usage          9,862 / 15,932 MiB (62%)
Time in GPU phases      26.2% (29.0 s)
GPU usage p50/p90/max   2%/62%/76% (idle baseline: 3%)
Peak GPU used           4,268 / 6,144 MiB (69%, incl. other processes)
Peak torch allocated    1,971 MiB
Peak torch reserved     2,326 MiB

=================================================================================
Per-phase statistics

phase         calls    wall s  % wall      cpu    peak rss  gpu util     peak gpu
---------------------------------------------------------------------------------
encode        3,256     41.46   37.5%     103%   9,860 MiB        8%       41 MiB
render        3,256     24.07   21.8%     103%   9,860 MiB        7%       41 MiB
detect           51     19.63   17.8%     104%   9,862 MiB       49%    1,254 MiB
decode          123     11.22   10.2%     456%   9,862 MiB        2%       41 MiB
warmup            1      9.34    8.5%      38%   5,596 MiB        2%       64 MiB
---------------------------------------------------------------------------------
accounted              105.73   95.6%

=================================================================================
Notes
---------------------------------------------------------------------------------
"cpu" column is for this process, summed over cores. 100% is one busy core.
"gpu util" column is coarse (1s driver window) and over all processes.
"accounted" row should be 100%. If more/less, there's over/under counting.
YOLO26 top-1 person detection.
Tigst Assefa finishing the 2023 Berlin Marathon.

Analysis of GPU stages

GPU's are costly devices, so I'd like to see what I'm getting out of mine.

When my GPU is on, I see:

Wall clock time         110.6 s

phase         calls    wall s  % wall      cpu    peak rss  gpu util     peak gpu
---------------------------------------------------------------------------------
encode        3,256     41.46   37.5%     103%   9,860 MiB        8%       41 MiB
render        3,256     24.07   21.8%     103%   9,860 MiB        7%       41 MiB
detect           51     19.63   17.8%     104%   9,862 MiB       49%    1,254 MiB
decode          123     11.22   10.2%     456%   9,862 MiB        2%       41 MiB
warmup            1      9.34    8.5%      38%   5,596 MiB        2%       64 MiB
---------------------------------------------------------------------------------
accounted              105.73   95.6%

...
ran detection on 64 frames, 5.5 ms/frame; profile: detect: 353 ms, CPU 102%, GPU 76% mean GPU util, 1,088 MiB peak torch alloc
ran detection on 64 frames, 5.5 ms/frame; profile: detect: 350 ms, CPU 106%, GPU 76% mean GPU util, 1,087 MiB peak torch alloc
ran detection on 56 frames, 5.5 ms/frame; profile: detect: 309 ms, CPU 107%, GPU 76% mean GPU util, 1,126 MiB peak torch alloc

Whereas when I turn it off, I see:

Wall clock time         255.1 s

phase         calls    wall s  % wall      cpu    peak rss  gpu util     peak gpu
---------------------------------------------------------------------------------
detect           51    175.11   68.6%     682%   9,268 MiB        0%        0 MiB
encode        3,256     42.63   16.7%     100%   9,267 MiB        0%        0 MiB
render        3,256     22.10    8.7%     101%   9,267 MiB        0%        0 MiB
decode          123      8.76    3.4%     544%   9,268 MiB        0%        0 MiB
warmup            1      3.86    1.5%      87%   5,039 MiB        0%        0 MiB
---------------------------------------------------------------------------------
accounted              252.47   99.0%

...
ran detection on 64 frames, 43.0 ms/frame; profile: detect: 2,750 ms, CPU 766%, GPU 0% mean GPU util, 0 MiB peak torch alloc
ran detection on 64 frames, 43.5 ms/frame; profile: detect: 2,785 ms, CPU 760%, GPU 0% mean GPU util, 0 MiB peak torch alloc
ran detection on 56 frames, 43.8 ms/frame; profile: detect: 2,451 ms, CPU 768%, GPU 0% mean GPU util, 0 MiB peak torch alloc

A (175.11 s / 19.63 s) ~= 8.9x speedup on the "detect" stage.

From a basic search, it seems the costs of these resources on Google Cloud are about:

  • $0.19/h for an "n1-standard-4" 4-core CPU node
  • $0.54/h for an "n1-standard-4-t4" 4-core CPU & T4 GPU node

A ($0.54 / $0.19) ~= 2.8x cost difference.

So, when scaling this pipeline, it would make sense to pay for a GPU to run detection on.

  • The stage would be ~8.9x faster.
  • And (175.11 s / 19.63 s) / ($0.54 / $0.19) ~= 3.1x cheaper.

Analyis of CPU stages

The video output stages seem to take longest. 59% of time on "render" & "encode".

Probably, these stages can be sped up by using the GPU.


Multi-machine setting for scalability

Now, let's say I want to scale the above pipeline.

(There are optimizations that can be made, but let's say I have time urgency, and I am ok with accepting the core pipeline code as is).

Code: person_detection_beam.py.

In this file I re-use the above functions to implement the stages in the Python Beam API:

  • Read: beam.Create(split_video)
  • Detect: beam.ParDo(DetectChunk)
  • Render: beam.ParDo(RenderChunk) & beam.Map(concatenate_in_order)

I set up a kind (Kubernetes in Docker) cluster on my desktop, to simulate having a large Kubernetes cluster to run on (see kind_config.yaml, k8s, & docker).

I can submit my pipeline to that cluster:

$ python person_detection_beam.py ../data/sports/womens_marathon_record_2023.mp4 \
>     --video-chunk-size-s 10 \
>     --runner=PortableRunner \
>     --worker-root /mnt/project \
>     --job_endpoint=localhost:8099 \
>     --artifact_endpoint=localhost:8098 \
>     --environment_type=EXTERNAL \
>     --environment_config=localhost:50000
Split ../data/sports/womens_marathon_record_2023.mp4 into 13 chunk(s)
Job state changed to STOPPED
Job state changed to STARTING
Job state changed to RUNNING
Job state changed to DONE
Wrote ../data/sports/womens_marathon_record_2023_output.mp4

And watch it run:

$ kubectl get nodes
NAME                         STATUS   ROLES           AGE   VERSION
mini-cluster-control-plane   Ready    control-plane   19h   v1.31.0

$ kubectl get pods
NAME                               READY   STATUS                     RESTARTS      AGE
beam-job-server-659fdf49dc-2tvsz   1/1     Running                    0             3m40s
spark-master-c997cf78b-sg8n6       1/1     Running                    1 (12h ago)   19h
spark-worker-7977679bfc-t95vf      2/2     Running                    0             12h

This setup affords me 2 key abilities:

  1. Scale. I can scale the stages up to sizes that would be too large for one machine.
  2. Non-uniform scale. I can scale different stages differently. E.g. scaling the CPU stages most, like in the "Potential scaled detection pipeline" diagram.
  1. See Karpathy's Software 2.0. ↩︎