- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2024 09:29 PM
I noticed there is a numUpdateRetryAttempts property mentioned in the the document https://learn.microsoft.com/en-us/azure/databricks/delta-live-tables/properties used for configing the retry times of any DLT pipeline, but I cannot find it in the DLT pipeline creation API document https://docs.databricks.com/api/workspace/pipelines/create.
Also if I added it into the asset yaml bundle file like
silver_pipeline:
name:
clusters:
photon:
pipelines.numUpdateRetryAttempts: 3
The validator gave me a warning about it is a unknown field
So has the numUpdateRetryAttempts property been deprecated?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2024 09:19 AM
According to the Delta Live Tables properties reference, pipelines.numUpdateRetryAttempts is a recognized configuration parameter. It specifies the maximum number of attempts to retry an update before failing the update when a retryable failure occurs. This parameter is set as a key-value pair in the pipeline configuration and is applicable to triggered updates run in production mode. The default value for this property is five.
{
"configuration": {
"pipelines.numUpdateRetryAttempts": 5
}
}
Or:
silver_pipeline:
name: <your_pipeline_name>
clusters:
- <cluster_configuration>
photon: <true_or_false>
configuration:
pipelines.numUpdateRetryAttempts: 3
Hope it helps!