Live data from Hacker News

Introducing Nuclio: A scalable, open source, real-time processing platform

iguazio.com

1–3 of 3 posts

Re: Introducing Nuclio: A scalable, open source, real-time processing platform

#3
post #2

> nuclio runs faster than bare-metal code So I'm staring at the high-level architecture [1], and I don't see how this claim can be true. Is this claim explained somewhere? [1] https://github.com/nuclio/nuclio#nuclio-high-level-architect...

to some extent in the detailed arch: https://github.com/nuclio/nuclio/blob/master/docs/architectu... The point is that there is a lot of parallelism, reduced locks and context switches, zero-copy and buffer reuse (less GC), async IO, Etc. things that most developers wont implement (unless they are perf optimization savvy), so you get that for free and can run 400K events/sec on a process using standard server (with Go functions)