azure-data-factory

Using Azure Data Factory to get data from a REST API

余生长醉 提交于 2019-11-30 09:50:35
Is it possible to use Azure Data Factory to get data from a REST API and insert it to a Azure database table? Data factory now has a http connector , allowing you to do GET or POST (with a body) to a http endpoint. For example: { "name": "HttpLinkedService", "properties": { "type": "Http", "typeProperties": { "authenticationType": "Anonymous", "url" : "https://en.wikipedia.org/wiki/" } } } I have done this using Custom .Net Activities. I had a need to pull data from Salesforce API. I have a write up on how to do this here: http://eatcodelive.com/2016/02/06/accessing-azure-data-lake-store-from

The subscription is not registered to use namespace 'Microsoft.DataFactory error

♀尐吖头ヾ 提交于 2019-11-30 01:38:40
问题 Going through this tutorial "Create a pipeline with Copy Activity using Visual Studio" and recieving this error when i hit publish. Creating datafactory-Name:VSTutorialFactory,Tags:,Subscription:Pay-As-You-Go,ResourceGroup:MyAppGroup,Location:North Europe, 24/03/2016 11:30:34- Error creating data factory: Microsoft.WindowsAzure.CloudException: MissingSubscriptionRegistration: The subscription is not registered to use namespace 'Microsoft.DataFactory'. Error not mentioned anywhere on net and

Release Azure Data Factory project using VSTS Release

狂风中的少年 提交于 2019-11-29 15:47:47
I want to create an Azure Data Factory project in Visual Studio rather than create an Azure Data Factory directly in the Azure portal. The reason why is that I wish to have the project in source control since it is a team project and for the sake of having it backed up. I want to use Visual Studio Team Services to automate the Build and Release processes for the aforementioned Azure Data Factory project. The Build process is straightforward; it will be an MSBuild run on the solution. However, I am unsure how to go about the Release definition. Is there a task/set of tasks or a different method

Trigger Azure Data Factory Pipeline from Logic App w/ Parameter

孤街醉人 提交于 2019-11-29 12:05:35
Let me preface that I'm a noob to Logic Apps and Data Factory. Anyways, I'm currently working on an integration and one part of it is that I need to trigger a pipeline in Data Factory from Logic Apps. I've successfully done that, the one part I can't seem to figure out is how to pass parameters to my pipeline. I've tried altering the JSON under both the "parameters" & "triggers" sections but haven't gotten anything to click so far. The pipeline ends up executing, but only with the default parameters. Has anybody had any success in doing this yet? Any help is appreciated. You can use the body

Error while running U-SQL Activity in Pipeline in Azure Data Factory

断了今生、忘了曾经 提交于 2019-11-29 08:06:29
I am getting following error while running a USQL Activity in the pipeline in ADF: Error in Activity: {"errorId":"E_CSC_USER_SYNTAXERROR","severity":"Error","component":"CSC", "source":"USER","message":"syntax error. Final statement did not end with a semicolon","details":"at token 'txt', line 3\r\nnear the ###:\r\n**************\r\nDECLARE @in string = \"/demo/SearchLog.txt\";\nDECLARE @out string = \"/scripts/Result.txt\";\nSearchLogProcessing.txt ### \n", "description":"Invalid syntax found in the script.", "resolution":"Correct the script syntax, using expected token(s) as a guide.",

Release Azure Data Factory project using VSTS Release

醉酒当歌 提交于 2019-11-28 10:05:32
问题 I want to create an Azure Data Factory project in Visual Studio rather than create an Azure Data Factory directly in the Azure portal. The reason why is that I wish to have the project in source control since it is a team project and for the sake of having it backed up. I want to use Visual Studio Team Services to automate the Build and Release processes for the aforementioned Azure Data Factory project. The Build process is straightforward; it will be an MSBuild run on the solution. However,

U- SQL Unable to extract data from JSON file

我与影子孤独终老i 提交于 2019-11-28 08:03:48
问题 I was trying to extract data from a JSON file using USQL. Either the query runs successfully without producing any output data or results in "vertex failed fast error". The JSON file looks like: { "results": [ { "name": "Sales/Account", "id": "7367e3f2-e1a5-11e5-80e8-0933ecd4cd8c", "deviceName": "HP", "deviceModel": "g6-pavilion", "clientip": "0.41.4.1" }, { "name": "Sales/Account", "id": "c01efba0-e0d5-11e5-ae20-af6dc1f2c036", "deviceName": "acer", "deviceModel": "veriton", "clientip": "10

Trigger Azure Data Factory Pipeline from Logic App w/ Parameter

人走茶凉 提交于 2019-11-28 02:00:15
问题 Let me preface that I'm a noob to Logic Apps and Data Factory. Anyways, I'm currently working on an integration and one part of it is that I need to trigger a pipeline in Data Factory from Logic Apps. I've successfully done that, the one part I can't seem to figure out is how to pass parameters to my pipeline. I've tried altering the JSON under both the "parameters" & "triggers" sections but haven't gotten anything to click so far. The pipeline ends up executing, but only with the default