Class TaskRetryPolicy
Task Retry Policy is implemented on a best-effort basis. Retry delay will be exponential based on provided minimum and maximum backoffs. https://en.wikipedia.org/wiki/Exponential_backoff. Note that the delay between consecutive task restarts may not always precisely match the configured settings. This can happen when the ConnectCluster is in rebalancing state or if the ConnectCluster is unresponsive etc.
Implements
Inherited Members
Namespace: Google.Apis.ManagedKafka .v1.Data
Assembly: Google.Apis.ManagedKafka.v1.dll
Syntax
public class TaskRetryPolicy : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
MaximumBackoff
Optional. The maximum amount of time to wait before retrying a failed task. This sets an upper bound for the backoff delay.
Declaration
[JsonProperty("maximumBackoff")]
public virtual object MaximumBackoff { get; set; }
Property Value
Type | Description |
---|---|
object |
MinimumBackoff
Optional. The minimum amount of time to wait before retrying a failed task. This sets a lower bound for the backoff delay.
Declaration
[JsonProperty("minimumBackoff")]
public virtual object MinimumBackoff { get; set; }
Property Value
Type | Description |
---|---|
object |