Intermediate Web & Software Development
Q51 / 100

What is the circuit breaker pattern?

Correct! Well done.

Incorrect.

The correct answer is B) A pattern that stops calling a failing service to prevent cascading failures, automatically retrying after a recovery period

B

Correct Answer

A pattern that stops calling a failing service to prevent cascading failures, automatically retrying after a recovery period

Explanation

Circuit breaker (Hystrix, Resilience4j): CLOSED (normal), OPEN (failing — reject calls immediately), HALF-OPEN (test one request). Prevents cascading failures when a dependency is down.

Progress
51/100