You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 1, 2021. It is now read-only.
A circuit breaker is an actor that wraps an EventLog actor. If an event log actor is busy re-trying a write longer than a configurable limit, the circuit breaker starts rejecting incoming requests (that require interaction with the storage backend). This prevents event-log and event-sourced actor queues from growing during communication problems with the storage backend. If communication with the storage backend returns to normal, the circuit breaker is closed again. Depends on #176 and is a prerequisite for #174.
The text was updated successfully, but these errors were encountered:
A circuit breaker is an actor that wraps an
EventLog
actor. If an event log actor is busy re-trying a write longer than a configurable limit, the circuit breaker starts rejecting incoming requests (that require interaction with the storage backend). This prevents event-log and event-sourced actor queues from growing during communication problems with the storage backend. If communication with the storage backend returns to normal, the circuit breaker is closed again. Depends on #176 and is a prerequisite for #174.The text was updated successfully, but these errors were encountered: