How to promote only few jobs out of many from DEV to MASTER in Datafactory

Goutham Kannekanti 1 Reputation point
2020-11-16T14:48:29.83+00:00

In the Data factory, I have a development branch that has 10 new files added. But my requirement is to promote only 4 out of these 10 new files into the master branch and also the adf_publish branch. How can I do this? Request your help ASAP. Thanks in advance.

Azure Data Factory
Azure Data Factory
An Azure service for ingesting, preparing, and transforming data at scale.
10,667 questions
{count} votes

1 answer

Sort by: Most helpful
  1. MartinJaffer-MSFT 26,086 Reputation points
    2020-11-16T19:21:26.78+00:00

    Hello @Goutham Kannekanti and welcome to Microsoft Q&A.

    This is not something that Data Factory can do, but there is a way to accomplish your ask. I assume master branch is your collaboration branch. Most of the following you will need to do in Git or DevOps, wherever your repository is.

    1. Create a new branch from master (let us call it "Temp")
    2. Copy the desired changes from Dev branch to Temp branch (this means your 4 files). This includes any deletions.
    3. Create pull request to merge Temp into master
    4. After merging, go to Data Factory and check all is in master the way you want it.
    5. Publish master. This pushes to adf_publish branch.

    Please let me know if this helps. If it solves your problem please mark as accepted answer, otherwise let me know how I may better assist.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.