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!