Hacker News new | ask | show | jobs
by aerzen 13 days ago
Spawning processes should not be on the hot path of any program.
2 comments

Why? That's a very useful processing primitive.
It’s a hack with many disadvantages. Sometimes a hack is the right answer, but the kernel should it add a primitive for it.
Should bash link in every program the user might want? Load them up as dynamic libraries?
Bash as an interactive tool is very different. It is used to run an almost arbitrary number of things, and a pretty low rate.

Bash as a programming language is just a bad idea.

Node, Python, PowerShell, and the rest do (almost) just that. launchd and systemd famously strived to remove as much shell from the start up process as possible because it was harming boot times and introducing unpredictability.
I don't know Node or PowerShell very well, but I'm not sure what you mean by this with respect to Python.
CPython doesn't usually create subprocesses unless specifically asked to, it loads Python modules and native extensions into its process. The former is similar (you're still extending an existing process with new code, just interpreted), the latter is literally dlopen(), so loading dynamic libraries.

A lot of other Python implementations don't have the ability to spin up new processes at all too.

Aren't we discussing just such a primitive?
oh, sorry, typo

s/it/not/

It ends up on the hot path of programs that use process isolation aggressively
Sure, and there a primary thing you want is a whole new environment/context for the child (new environment, fds, memory, cgroups, namespaces, etc).