Clarification on BoundedCapacity for Dataflow #66878
-
How does If I have the pipeline:
Does it control an input buffer or output buffer? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
It means that Although the concept of input and output buffer doesn't explicitely exist, this one refers to input (from Best is to create a simple console app and play around with different producer and consumer speed of |
Beta Was this translation helpful? Give feedback.
It means that
B
can buffer max. 10 items.So
A
can't write toB
successfully ifB
s buffer is full, soA
gets backpressure fromB
.Although the concept of input and output buffer doesn't explicitely exist, this one refers to input (from
A
toB
, see above).Best is to create a simple console app and play around with different producer and consumer speed of
A
,B
, andC
to see whats going on (with debugger attached / or console output).