- Bulkhead (faulttolerance) Configuration
Type: io.helidon.faulttolerance.Bulkhead
This is a standalone configuration type, prefix from configuration root:
fault-tolerance.bulkheads
Configuration options
Optional configuration options
| key | type | default value | description |
|---|---|---|---|
limit | int | 10 | Maximal number of parallel requests going through this bulkhead. When the limit is reached, additional requests are enqueued. @return maximal number of parallel calls, defaults is `DEFAULT_LIMIT` |
queue-length | int | 10 | Maximal number of enqueued requests waiting for processing. When the limit is reached, additional attempts to invoke a request will receive a BulkheadException. @return length of the queue |