Property MaxQueueDepthPerBucket
- Namespace
- DisCatSharp
- Assembly
- DisCatSharp.dll
MaxQueueDepthPerBucket
Gets or sets the maximum number of requests that can be queued per bucket. When the limit is reached, new requests are immediately failed with RestQueueFullException.
public int MaxQueueDepthPerBucket { get; set; }
Property Value
Remarks
Must be non-negative. Set to 0 to disable the limit (unbounded queue). Defaults to 1000.
This protects against OOM from runaway request patterns on a single endpoint.