英文:
Azure SQL Connection through ADF having transient failure
问题
我们已经建立了ADF管道,在其中有一步是连接到Azure SQL并运行查询。因此,ADF管道每天都会运行,而这一步几乎在98%的时间内都会成功运行,但偶尔会出现以下错误:
|ErrorCode=SqlFailedToConnect,'Type=Microsoft.DataTransfer.Common.Shared.HybridDeliveryException,Message=Cannot connect to SQL Database
注意:此问题在重新启动后得以解决。
我们需要一种自动化的方式,无需手动干预。
我们需要找到一种方法,在第一次失败时进行重试吗?
英文:
We have build ADF Pipeline where we have a step to connect to Azure SQL and run a query. So the ADF pipeline runs every single day and this step runs almost 98% of the time, but once in a while gets failed with the following error,
|ErrorCode=SqlFailedToConnect,'Type=Microsoft.DataTransfer.Common.Shared.HybridDeliveryException,Message=Cannot connect to SQL Database
Note : This issue gets resolved on restart.
We need a way to have this automated without manual intervention.
We need to find if there is any way to retry if this fails the first time?
答案1
得分: 1
您可以为任何您想要的步骤添加重试。
重试 - 如果失败,ADF将重试此步骤的次数。
重试间隔 - 重试之间的持续时间(以秒为单位)。
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论