Closed hakan458 closed 2 weeks ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 66.29%. Comparing base (
c6da54b
) to head (2e5b589
).
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Back to using send_and_wait, which while using before we never lost a message in this stage.
However, we switched to send for speed purposes. To mitigate this, we are now sending batches of records to the output topic, instead of calling send_and_wait once per record. Even if we have the small delay while awaiting the result, that will now happen once per batch (e.g. 50 records) instead of once per record, greatly reducing the time it takes.