Kafka - Event-Driven Architecture
Consider this orchestration snippet in Kafka:
What is the main issue with this approach?
if (event.type === 'OrderPlaced') {
startPayment();
startShipping();
}What is the main issue with this approach?
