Advanced Web & Software Development
Q90 / 100

What is the Saga pattern orchestration vs choreography?

Correct! Well done.

Incorrect.

The correct answer is B) Orchestration: a central coordinator directs each step (easier to trace, single point of failure). Choreography: services react to each other's events (decoupled, harder to debug)

B

Correct Answer

Orchestration: a central coordinator directs each step (easier to trace, single point of failure). Choreography: services react to each other's events (decoupled, harder to debug)

Explanation

Orchestration saga (Temporal, AWS Step Functions): workflow coordinator calls services and handles failures. Choreography saga (Kafka events): each service does its work and emits events; others react. Choose based on complexity and coupling requirements.

Progress
90/100