Can we use multiple git repos for a job running multiple tasks?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2022 10:52 AM
I have a job running multiple tasks :
- Task 1 runs a machine learning pipeline from git repo 1
- Task 2 runs an ETL pipeline from git repo 1
Task 2 is actually a generic pipeline and should not be checked in repo 1, and will be made available in another repo where various ETL pipelines are stored.
However I see now that git repos are set up per Job, and not per Task.
Does anyone have a solution for this, which I would suppose is quite a common scenario?
- Labels:
-
Git Repo
-
Multiple Tasks
-
Tasks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2022 11:29 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2022 12:17 AM
Hi @Prabakar Ammeappin , task2 depends on task1, as it sends out the results from task1.
I also tried removing the dependency and edited the git reference, but it changes the git reference for all the tasks in the job.
Do you know if that is a feature missing from jobs, or if it is intentional?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-11-2023 01:15 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2025 10:27 PM
Had this same problem. Fix was to have two workflows with no triggers, each pointing to the respective git repo. Then setup a 3rd workflow with appropriate triggers/schedule which calls the first 2 workflows.
A workflow can run other workflows.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2025 07:14 AM
Yes, but this can cause an issue on waiting more time to have the cluster up.. How did u fix this?