Class RetryConfig
Configure automatic retries on requests to CDF.
Inherited Members
Namespace: Cognite.Extractor.Utils.Unstable.Configuration
Assembly: ExtractorUtils.dll
Syntax
public class RetryConfig
  Properties
| Edit this page View SourceMaxBackoff
Max backoff in ms between each retry. Base delay is calculated according to 125*2^retry ms. If less than 0, there is no maximum.
Declaration
public string MaxBackoff { get; set; }
  Property Value
| Type | Description | 
|---|---|
| string | 
MaxBackoffValue
Value of the max-backoff parameter.
Declaration
public TimeSpanWrapper MaxBackoffValue { get; }
  Property Value
| Type | Description | 
|---|---|
| TimeSpanWrapper | 
MaxRetries
Maximum number of retries. Less than 0 retries forever.
Declaration
public int MaxRetries { get; set; }
  Property Value
| Type | Description | 
|---|---|
| int | 
Timeout
Timeout in milliseconds for each individual try. Less than or equal to zero for no timeout.
Declaration
public string Timeout { get; set; }
  Property Value
| Type | Description | 
|---|---|
| string | 
TimeoutValue
Value of the timeout parameter.
Declaration
public TimeSpanWrapper TimeoutValue { get; }
  Property Value
| Type | Description | 
|---|---|
| TimeSpanWrapper |