Challenging the Fastest OSS Workflow Engine
obeli.sk·21h·
Flag this post

2025-10-29

November marks 2 years since I started working on Obelisk, an OSS workflow engine written in Rust.

As a reflection on its capabilities I have decided to make a friendly comparison with WindMill, which produced an interesting benchmark accompanied by a blog post titled Fastest self-hostable open-source workflow engine.

The benchmark compares a naive implementation of Fibonacci written in various programming languages:

fn fibo(n: u8) -> u64 {
if n <= 1 {
n.into()
} else {
fibo(n - 1) + fibo(n - 2)
}
}

The following (and more) workflow engines were compared:

  • WindMill
  • Temporal
  • Perfect
  • Ai…

Similar Posts

Loading similar posts...