如何从 http rest 端点获取数据作为数据工厂的输入?
我的用例是每小时从一个休息 HTTP GET 获取新数据并将其更新/插入到 azure 中的文档数据库中。
您可以像这样创建一个端点并放入其余端点吗?
{
"name": "OnPremisesFileServerLinkedService",
"properties": {
"type": "OnPremisesFileServer",
"description": "",
"typeProperties": {
"host": "<host name which can be either UNC name e.g. \\\\server or localhost for the same machine hosting the gateway>",
"gatewayName": "<name of the gateway that will be used to connect to the shared folder or localhost>",
"userId": "<domain user name e.g. domain\\user>",
"password": "<domain password>"
}
}
}
我要添加什么样的组件来创建数据转换作业 - 我看到有一堆东西,比如 hdinsight、数据湖和批处理,但不确定简单地将新集合插入到天蓝色文档数据库。