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
Copy file name to clipboardExpand all lines: README.md
+14-1Lines changed: 14 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -108,6 +108,15 @@ value).
108
108
> If there will be multiple instances, the `MasterPodSettings.IsActive` should be set to `true`. Otherwise, messages can
109
109
> be duplicated or not published.
110
110
111
+
### Circuit Breaker
112
+
113
+
The application uses circuit breakers to handle database operation failures gracefully. Each daemon (OutboxEventsDaemon and MissingEventsDaemon) has its own circuit breaker that:
114
+
115
+
1. Opens after `Threshold` consecutive database failures (default: 3)
116
+
2. Stays open for `DurationSc` (default: 600 seconds)
117
+
3. Allows `HalfOpenMaxAttempts` (default: 1) operations when half-open
118
+
4. Automatically closes if operations succeed in half-open state
119
+
111
120
## Configuration
112
121
113
122
The application can be configured using the `config.json` and `secret.json` files. Here are the configurations you can
0 commit comments