Backpressure (Stream Programming)

Created: 2021-02-09T21:21:08-06:00

Return to the Index

Backpressure is when a process cannot complete tasks faster than they arrive at the input queue.

A worker should announce when it is full, ex. with kanban signals or some feedback mechanism so that jobs stop pushing more work downstream.

node.js article on backpressure in streams