In Project Reactor, you can configure backpressure to either drop excess items or buffer them, depending on your system's needs. In a stock trading app, dropping outdated price updates might be preferred to avoid processing stale data, while buffering could be useful for log storage where data integrity is crucial.
Additional Notes
Can backpressure be configured to drop or buffer items in a fast data stream?