我添加了一个 Azure Blobdataset
作为 Azure 映射数据流的源,但无法查看预览,因为它显示以下错误:
数据集使用“AzureStorage”链接服务类型,数据流不支持该类型。
下面给出的是数据集 JSON:
{
"name": "PIT_Input",
"properties": {
"linkedServiceName": {
"referenceName": "data_staging",
"type": "LinkedServiceReference"
},
"annotations": [],
"type": "DelimitedText",
"typeProperties": {
"location": {
"type": "AzureBlobStorageLocation",
"container": "dataflowpoc"
},
"columnDelimiter": ",",
"escapeChar": "\\",
"firstRowAsHeader": true,
"quoteChar": "\""
},
"schema": []
}
}
data_staging是Azure Storage类型的链接服务。
该文档指出 Azure Blob 数据集可以用作源。请告诉我我在这里做错了什么。