What does backpressure mean in the context of streams?
- A The source producing data faster than the destination can consume it
- B Errors travelling back up the pipeline
- C Compression of stream data
- D Retrying a failed write
Answer
The source producing data faster than the destination can consume it
Without handling, data accumulates in memory. pipe and pipeline pause the source when the destination's buffer is full.





