I am looking for a way to record the status of the pipeline in a DB table. Assuming this is a very common use case. Is there any way where I can record
- status and time of completion of the complete pipeline.
- status and time of completion of selected individual activities.
- the ID of individual runs/execution.
The only way I found was using SQLActivity that is dependent on an individual activity but even there I cannot access the status or timestamp of the parent/node.
I am using a jdbc connection to connect to a remote SQLServer. And the pipeline is for coping S3 files into the SQLServer DB.