Is it possible to set an overflow strategy in Webflux, like one would do for any other Sink? See https://projectreactor.io/docs/core/release/api/reactor/core/publisher/FluxSink.OverflowStrategy.html
The default behaviour appears to be:
FluxSink.OverflowStrategy BUFFERBuffer all signals if the downstream can't keep up. Warning! This does unbounded buffering and may lead to OutOfMemoryError.
I was looking for a way to change this to DROP or ERROR: (see https://projectreactor.io/docs/core/release/api/reactor/core/publisher/FluxSink.OverflowStrategy.html)
ignorewhen using a flux processor. - 123