Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Circuit breaker #266

Merged
merged 28 commits into from
Jan 28, 2025
Merged

Circuit breaker #266

merged 28 commits into from
Jan 28, 2025

Conversation

Kamil-Lontkowski
Copy link
Contributor

This draft implements CricuitBreaker with features based on that are provided in breaker from resilience4j.

Those features, for count based window (last n operations):

  • defining threshold for failures
  • defining threshold for slow operations, and threshold for what is considered slow
  • minimum number of operations until thresholds are calculated
  • HalfOpen state that allows number of operations to pass, after that it is calculated if those operations where below threshold so we can close breaker or go back to open.
  • time after which breaker goes from Open to HalfOpen

Things that are not implemented in here but are in resilience4j.

  • Timeout for HalfOpen state, after which breaker goes back to Open
  • Ability to turn of automatic transition from Open to HalfOpen state

@Kamil-Lontkowski
Copy link
Contributor Author

For now this is incomplete since I have some questions.

  1. Right now I am not keeping results of calls made in HalfOpen state separate. Maybe it should be, because different number of operations can push rate more or less depending on the difference.
  2. Should I add those 2 missing features from resilience4j? Flag seems necessary, since we should not worry about background thread. But HalfOpen timeout might be useful, but it will complicate a bit process of registering operation started in HalfOpen state, so we don't end up with wrong metrics.
  3. Right now there is only runOrDrop operation defined. Since resilience4j always throw exception I am not sure what other interfaces would make sense.
  4. Would it make sense to have ability to completely wipe out current state of circuit breaker?

Right now only now only count based sliding window is implemented but I wanted to discuss those questions right away.

With time based sliding windows I think that background loop evicting older entries from queue similar to SlidingWindow RateLimiterAlgorithm should be sufficient.

@adamw
Copy link
Member

adamw commented Jan 10, 2025

As for the questions:

  1. hm I don't know - how do circuit breakers work normally? maybe you could find some articles describing typical designs, and link to them here or in the comments; I think we should aim for whatever is "industry standard"
  2. again, that's a question of how circuit breakers work in general. Intuitively, the half open state should transition to open/closed after certain conditions are met, but I'm sure there's plenty of edge-cases to consider
  3. yeah, runOrDrop is fine
  4. I think any use-case for wiping can be served by simply creating a new CB, so let's omit wiping for now

@Kamil-Lontkowski
Copy link
Contributor Author

Kamil-Lontkowski commented Jan 13, 2025

Answer based on what is available in pekko/akka, monix, rezilience (zio). circuit (cats-effect) and polly(C#)

  1. resilience4j provide some more configuration in this regard than other libs. I think it would be best to calculate metrics for different states separately. It is more intuitive how rates are calculated. Other libs allow just for one call and if it succeeds it closes.
  2. This also seems like more flexibility on resilience4j side.

Monix, circuit and Pekko/Akka works exactly the same. They count failures (or slow calls) in a row not a rate based on window. Then wait before going to halfOpen and then deciding based on one operation result. Plus the wait duration before transitioning to halfOpen is configured as backoff.

rezilience provides maxFailures in a row just like monix and also count based sliding window. It also supports different schedules for waiting before going to halfOpen state. It also allows only one call to decide if it goes back to open or close.

Polly is little different but only in few cases. It provides threshold rates for sampling window of some duration. As I understand it in effect means sliding window(But maybe it is simpler and works just like fixed window). It also support minimum number of calls to be able trip in a sample. It also allows for dynamically determining break duration before switching to halfOpen.It also provide ability to set state manually and reading current state through CircuitBreakerStateProvider.

Zio, resilience4j and rezilience also provides ability to consume different events like state changes or metrics.

@adamw
Copy link
Member

adamw commented Jan 14, 2025

Answer based on what is available in pekko/akka, monix, rezilience (zio). circuit (cats-effect) and polly(C#)

Good analysis, thanks :) So basing on that, what design would you propose? What would be the configuration options, and the algorithm of transferring between closed/ho/open states?

Not sure if we need both count-based and windowed variants - isn't the count-based variant a windowed variant, but with window duration = Inf?

@Kamil-Lontkowski
Copy link
Contributor Author

There is difference that if we would just treat count based as sliding window with Inf we would always have to count all results. Window size defines how many n last operation we want to include in metrics. I wanted to move all state machine logic to base trait and only difference between implementations would be how we calculate metrics.

If we leave both variants we can have all functionalities (maybe apart from ability to consume events). Giving proper arguments we can mimic pekko and monix behavior exactly. I am only debating if we would want to support any Infinite schedule when it comes to those durations, but I would want to have proper implementation of all other functionalities before that, then see if it fits.

@adamw
Copy link
Member

adamw commented Jan 15, 2025

But in a count-based approach, you're counting all results anyway?

@Kamil-Lontkowski
Copy link
Contributor Author

Yeah, but callResults is a very basic implementation of CircularBuffer so we count only on max n call results and don't hold in memory more results than we need. The writeIndex is increment during registration of result.

@Kamil-Lontkowski
Copy link
Contributor Author

I changed calculating state change to be pure function. Added docs in code and some tests for the state machine. I will add more tests especially testing if schedules and timeout for state changes work properly. I also need to add docs, I think in this case some kind of diagram would be helpful to understand how this work.

@Kamil-Lontkowski Kamil-Lontkowski marked this pull request as ready for review January 16, 2025 15:33
@Kamil-Lontkowski
Copy link
Contributor Author

Also seems like CI is broken because of deprecation of actions/upload-artifact: v3

@adamw
Copy link
Member

adamw commented Jan 18, 2025

Also seems like CI is broken because of deprecation of actions/upload-artifact: v3

Let's fix it then, in a separate PR then :)

doc/utils/circuit-breaker.md Outdated Show resolved Hide resolved
doc/utils/circuit-breaker.md Outdated Show resolved Hide resolved
@Kamil-Lontkowski
Copy link
Contributor Author

I think I addressed everything in this round of comments :). Turns out there were also typos in comments and tests, so I corrected them.

@adamw
Copy link
Member

adamw commented Jan 27, 2025

Great, looking :)

@adamw adamw merged commit 590f671 into master Jan 28, 2025
5 checks passed
@adamw adamw deleted the circuit-breaker branch January 28, 2025 10:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants