Last active
June 27, 2017 05:55
-
-
Save cloudolaf/eaeba454aaeb0016ec1281b9d9f2732c to your computer and use it in GitHub Desktop.
ADF demo - DataDownloaderSamplePipeline
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://datafactories.schema.management.azure.com/schemas/2015-09-01/Microsoft.DataFactory.Pipeline.json", | |
"name": "DataDownloaderSamplePipeline", | |
"properties": { | |
"description": "Custom Data Downloader from an HTTP EndPoint Sample Pipeline", | |
"activities": [ | |
{ | |
"name": "DownloadData", | |
"description": "Download raw data from an http endpoint", | |
"linkedServiceName": "AzureBatchLinkedService", | |
"type": "DotNetActivity", | |
"typeProperties": { | |
"assemblyName": "MyCustomActivity.dll", | |
"entryPoint": "DataDownloaderActivityNS.DataDownloaderActivity", | |
"packageLinkedService": "AzureStorageLinkedService", | |
"packageFile": "adfcontainer/package/MyCustomActivity.zip", | |
"extendedProperties": { | |
"sliceStart": "$$Text.Format('{0:yyyyMMddHHmm}', Time.AddHours(SliceStart, -1), SliceEnd)", | |
"sliceEnd": "$$Text.Format('{0:yyyy-MM-dd HH:mm:ss}', SliceEnd)", | |
"columnMappings": "CustomerID:CustomerID,Title:Title,FirstName:FirstName,MiddleName:MiddleName,LastName:LastName", | |
"output:Uri": "https://requestb.in/18l22kx1" | |
} | |
}, | |
"inputs": [ | |
{ | |
"name": "AzureSqlTableLocation1" | |
} | |
], | |
"outputs": [ | |
{ | |
"name": "HttpTableLocation1" | |
} | |
], | |
"policy": { | |
"executionPriorityOrder": "OldestFirst", | |
"timeout": "01:00:00", | |
"concurrency": 2, | |
"retry": 2 | |
}, | |
"scheduler": { | |
"frequency": "Minute", | |
"interval": 15 | |
} | |
} | |
], | |
"start": "2017-06-27T06:00:00+10:00", | |
"end": "2018-03-09T00:00:00+02:00", | |
"isPaused": false | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment