Hey guys,
Akka stream has a nice feature, the buffers (with backpressure).
source()
.buffer(1000, OverflowStrategy.backpressure())
It works pretty good but sometimes it is hard to decide how big it should be. I see in the logs if its full but not how much of this buffer is used. It could be also too large.
Is there a possibility too see how much data is in a buffer?