Glad to know that your issue got resolved.
I still want to find out more about this error to fix the root cause and avoid running into this again.
The "Disk Full Exception Caught" error in Azure Data Factory (ADF) when running SQL Server Integration Services (SSIS) packages typically indicates that the disk space on the machine where the SSIS package is being executed has been exhausted. This error usually occurs because the SSIS package operations require more disk space than is available.
Here are some potential root causes for this error:
- Insufficient Disk Space: The most common reason is simply that the disk does not have enough free space to accommodate the operations being performed by the SSIS package. This can happen if the SSIS package involves large data transfers, large temporary files, or extensive logging.
- Temporary Files: SSIS packages often create temporary files during execution. If these temporary files are large or numerous, they can quickly fill up the available disk space.
- Data Size: If the SSIS package is processing a large amount of data, the intermediate steps might generate large temporary datasets that consume significant disk space.
- Logging: If extensive logging is enabled in the SSIS package, the log files themselves can consume a lot of disk space, especially if the package runs for a long time or processes a large volume of data.
- Other Processes: Other processes running on the same machine might also be consuming disk space, leaving insufficient space for the SSIS package operations.
For more details, please refer this document which might helps you.
Link: Troubleshoot package execution in the SSIS integration runtime.
I hope this information helps, please do let us know if you have any further queries.
Thank you.