Kafka - Event-Driven Architecture
Given this Kafka event flow in choreography style:
What happens if Service B fails to publish 'PaymentProcessed' event?
Service A publishes event 'OrderCreated' to topic 'orders'. Service B listens to 'orders' and publishes 'PaymentProcessed' to topic 'payments'. Service C listens to 'payments' and updates inventory.
What happens if Service B fails to publish 'PaymentProcessed' event?
