I'm currently using Data Factory V1.
I have a pipeline with 2 chained activities:
. The first activity is a Copy Activity that extracts a table from SQLDB into a .tsv file in Data Lake Store
. The second activity is a Data Lake Analytics U-SQL activity that collects the data in the previously created .tsv file and adds it to an existing table in Data Lake database.
Obviously, I only want the second activity to run after the first activity so I used the output dataset from the first activity as the input data to the second activity and it works fine.
But, if the first activity fails, the second activity will be stuck at the state "Waiting: Dataset dependencies (The upstream dependencies are not ready)".
I have the policy->timeout property set for the second activity but it only seems to work after this activity has started. So, since the activity never starts, it doesn't timeout and it stays stuck.
How can I set a timeout for this "waiting" period?
Thank you