In a masstransit saga when UseInMemoryOutbox is enabled, Is there possibility of losing events? As far as I understand UseInMemoryOutbox, It will postpone publishing events after persisting saga, So what would happen if saga persisted and then server restarts?
If it is true, What are workarounds to avoid this situation?
Also if I don't use UseInMemoryOutbox, I face situation where saga wont do anything for incoming events because its state is not persisted yet.