We wrote a big U-SQL script that consists of several units of code dependent on each other. It could run as a single U-SQL job. BTW, we are running this job as Azure Data Factory activity.
We want to divide this script into multiple U-SQL scripts each containing single unit for better maintenance and testing. In this way, we will be able to do unit testing on the individual unit of the script. But we faced another issue if we do this. In the case of multiple scripts, we have to combine all of these scripts into the single script before deploying data factory pipeline.
Is there a way to manage U-SQL scripts in multiple files and submit it as a single job in Azure Data Factory?