Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DataFactory] Add Chaining Trigger #7001

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4335,8 +4335,8 @@
},
"readOnly": true
},
"runDimension": {
"description": "Run dimension emitted by Pipeline run.",
"runDimensions": {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe this will result in a breaking change.

"description": "Run dimensions emitted by Pipeline run.",
"type": "object",
"additionalProperties": {
"type": "string"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@
]
},
"ChainingTrigger": {
"description": "Trigger that schedules pipeline runs based on dependent pipelines successful completion.",
"description": "Trigger that allows the referenced pipeline to depend on other pipeline runs based on runDimension Name/Value pairs. Upstream pipelines should declare the same runDimension Name and their runs should have the values for those runDimensions. The referenced pipeline run would be triggered if the values for the runDimension match for all upstream pipeline runs.",
"type": "object",
"allOf": [
{
Expand All @@ -597,7 +597,7 @@
"properties": {
"pipeline": {
"$ref": "../datafactory.json#/definitions/TriggerPipelineReference",
"description": "Pipeline for which runs are created when all dependent pipelines complete successfully."
"description": "Pipeline for which runs are created when all upstream pipelines complete successfully."
},
"typeProperties": {
"description": "Chaining Trigger properties.",
Expand All @@ -608,10 +608,10 @@
"items": {
"$ref": "../datafactory.json#/definitions/PipelineReference"
},
"description": "Dependent Pipelines."
"description": "Upstream Pipelines."
},
"runDimension": {
"description": "Run Dimension property that needs to be emitted by dependent pipelines.",
"description": "Run Dimension property that needs to be emitted by upstream pipelines.",
"type": "string"
}
},
Expand Down