Skip to content

Commit

Permalink
Renaming pipeline: MainPipeline as OttMainPipeline
Browse files Browse the repository at this point in the history
Adding pipeline: OttRawToCurated
  • Loading branch information
marvinbuss committed Apr 24, 2024
1 parent cf96bbc commit 392fa35
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 3 deletions.
20 changes: 17 additions & 3 deletions code/datafactory/pipeline/OttMainPipeline.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,23 @@
{
"name": "MainPipeline",
"name": "OttMainPipeline",
"properties": {
"description": "Main Pipeline for Orchestration",
"description": "Main Pipeline for OTT Orchestration",
"activities": [
{
"name": "RawToCurated",
"type": "ExecutePipeline",
"dependsOn": [],
"policy": {
"secureInput": false
},
"userProperties": [],
"typeProperties": {
"waitOnCompletion": true
}
}
],
"folder": {
"name": "Pipelines"
"name": "Pipelines/OTT"
},
"annotations": []
}
Expand Down
48 changes: 48 additions & 0 deletions code/datafactory/pipeline/OttRawToCurated.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{
"name": "OttRawToCurated",
"properties": {
"description": "Pipeline to move OTT data from Raw to curated",
"activities": [
{
"name": "DataflowRawToCurated",
"type": "ExecuteDataFlow",
"dependsOn": [],
"policy": {
"timeout": "0.12:00:00",
"retry": 3,
"retryIntervalInSeconds": 30,
"secureOutput": false,
"secureInput": false
},
"userProperties": [],
"typeProperties": {
"dataflow": {
"referenceName": "OttRawToCurated",
"type": "DataFlowReference",
"parameters": {
"sourceFolderPath": "toString('ott')",
"sourceFileName": "toString('data.csv')"
}
},
"integrationRuntime": {
"referenceName": "IntegrationRuntime001",
"type": "IntegrationRuntimeReference"
},
"traceLevel": "Coarse"
}
}
],
"parameters": {
"sourceFolderPath": {
"type": "string"
},
"sourceFileName": {
"type": "string"
}
},
"folder": {
"name": "Pipelines/OTT"
},
"annotations": []
}
}

0 comments on commit 392fa35

Please sign in to comment.