Adf Policy Element
Attributes
Attribute | API Type | Default | Description |
---|---|---|---|
Concurrency | Int32 | 1 | Specifies the number of concurrent executions of the activity should be permitted to simultaneously process multiple data slices. |
Delay | TimeSpan | 00:00:00 | Specifies the amount of time to wait before the processing of a data slice is allowed to begin. |
ExecutionPriorityOrder | AdfExecutionPriorityOrder | OldestFirst | Specifies the order in which data slices should be processed by the activity. |
LongRetry | Int32 | 1 | Specifies the number of times that the activity should be attempted for a given data slice before the processing for that data slice is marked as a failure. This property is different from the Retry property in that LongRetry allows a dealy to be specified before each retry attempt using the LongRetryInterval property. If both this property is set and the Retry property is set to any value greater than 1 (including the default value of 3), then each failed long retry will also have immediate retry attempts. This results in the total number of retries being the product of Retries and LongRetries. |
LongRetryInterval | TimeSpan | 00:00:00 | Specifies the amount of time that should be waited before attempting a long retry. |
Retry | Int32 | 3 | Specifies the number of times the activity should be executed for a given data slice before the processing for that data slice is marked as a failure. |
Timeout | TimeSpan | 00:00:00 | Specifies the amount of time that the activity should be permitted to execute for a data slice before execution is halted and the attempt is marked as a failure. The default value is 0 which indicates that there is no timeout. |
Collection Children
Child | API Type | Description |
---|---|---|
<Annotations> <Annotation /> </Annotations> | AstAnnotationNode | This is a collection of annotation items that can be used to specify documentation, tags, or other information. Annotations are particularly useful for storing information about nodes that can be used by BimlScript code. |