There is no back-pressure.
Node-RED puts a setImmediate between every wire hop, and that queue has no ceiling. A fast
source outruns a slow sink, the queue grows, and the pod gets OOM-killed with nothing in the log to explain
it. node-red#855 has been open since 2016.
Every inbox in Flow is bounded, with a policy per node: block, drop the newest, drop the oldest, or raise
it to a Catch node and let the flow decide.