So, you expected this to log dropped because the zip backpressures when it hasn’t received objects on chromeQueue yet.
One cause for this is the internal buffers Akka Streams can insert between stages: you can read more about those at Buffers and working with rate • Akka Documentation. When you add the following configuration (just for illustration, I wouldn’t recommend doing this in production):
There still seems to be some buffering going on, though I’m not entirely sure where that is coming from - that would need some further investigation. In any case: the backpressure in Akka Streams is mainly intended to avoid overwhelming a slow downstream, but may still add buffers for throughput. Many stages won’t really do ‘per-element’ flow control, but batch things up.