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
CircuitBreakerThresholds sets the circuit breaker thresholds settings.
138
+
</p>
139
+
140
+
</td>
141
+
</tr>
142
+
126
143
<tr>
127
144
<td>
128
145
<p>
@@ -422,6 +439,98 @@ Authenticate sets authenticate service parameters. If not specified, a Pomerium-
422
439
</tbody>
423
440
</table>
424
441
442
+
### `circuitBreakerThresholds`
443
+
444
+
CircuitBreakerThresholds sets the circuit breaker thresholds settings.
445
+
446
+
<table>
447
+
<thead>
448
+
</thead>
449
+
<tbody>
450
+
451
+
<tr>
452
+
<td>
453
+
<p>
454
+
<code>maxConnectionPools</code>  
455
+
456
+
<strong>integer</strong> 
457
+
458
+
</p>
459
+
<p>
460
+
461
+
MaxConnectionPools sets the maximum number of connection pools per cluster that Envoy will concurrently support at once. If not specified, the default is unlimited. Set this for clusters which create a large number of connection pools.
462
+
</p>
463
+
464
+
</td>
465
+
</tr>
466
+
467
+
<tr>
468
+
<td>
469
+
<p>
470
+
<code>maxConnections</code>  
471
+
472
+
<strong>integer</strong> 
473
+
474
+
</p>
475
+
<p>
476
+
477
+
MaxConnections sets the maximum number of connections that Envoy will make to the upstream cluster. If not specified, the default is 1024.
478
+
</p>
479
+
480
+
</td>
481
+
</tr>
482
+
483
+
<tr>
484
+
<td>
485
+
<p>
486
+
<code>maxPendingRequests</code>  
487
+
488
+
<strong>integer</strong> 
489
+
490
+
</p>
491
+
<p>
492
+
493
+
MaxPendingRequests sets the maximum number of pending requests that Envoy will allow to the upstream cluster. If not specified, the default is 1024. This limit is applied as a connection limit for non-HTTP traffic.
494
+
</p>
495
+
496
+
</td>
497
+
</tr>
498
+
499
+
<tr>
500
+
<td>
501
+
<p>
502
+
<code>maxRequests</code>  
503
+
504
+
<strong>integer</strong> 
505
+
506
+
</p>
507
+
<p>
508
+
509
+
MaxRequests sets the maximum number of parallel requests that Envoy will make to the upstream cluster. If not specified, the default is 1024. This limit does not apply to non-HTTP traffic.
510
+
</p>
511
+
512
+
</td>
513
+
</tr>
514
+
515
+
<tr>
516
+
<td>
517
+
<p>
518
+
<code>maxRetries</code>  
519
+
520
+
<strong>integer</strong> 
521
+
522
+
</p>
523
+
<p>
524
+
525
+
MaxRetries sets the maximum number of parallel retries that Envoy will allow to the upstream cluster. If not specified, the default is 3.
0 commit comments