I have a foreach
loop in my Azure Data Factory pipeline with three activities. The first activity uses a Self-Hosted Integration Runtime (SHIR) to copy data from an On-premises SQL Server to Azure Data Lake Storage Gen2 (ADLS2). The second activity is a pipeline (PL_Delta_Infinity_ADLS_To_ASQL
) that invokes a data flow (DF_Upsert_To_ASQL_Infinity
). This data flow reads data from ADLS2 and performs an upsert operation to write it into an Azure SQL Database using the Alter row transformation.
Up until 10 AM today, everything was functioning correctly. However, after 10 AM, the second activity began encountering an error. The error code reported is "InternalServerError," with a failure type of "system error," and the details indicate "InternalServerError executing request." This issue specifically occurs during the process of reading data from ADLS2 and writing it to the Azure SQL Database.
I have verified that the Azure SQL Database is accessible and operational by connecting through SQL Server Management Studio (SSMS). Additionally, I confirmed the functionality of the linked services to ADLS2 and the Azure SQL Database by successfully previewing the data through them.
I'm seeking assistance to understand the root cause of this issue and to troubleshoot the "InternalServerError" error affecting the data flow operation in my Azure Data Factory pipeline. Any guidance on resolving this would be greatly appreciated.