我们可以使用Azure Data Factory将图像,视频文件从一个位置移动到另一位置吗?

时间:2019-02-21 15:45:01

标签: azure azure-data-factory azure-data-factory-2

正在探索将诸如图像/视频之类的多媒体文件从一个位置(可能是FTP)移动到蔚蓝斑点的方法,并想知道Azure Data Factory是否支持这种数据移动。

对此用例有一些了解。 :)

1 个答案:

答案 0 :(得分:0)

  

正在探索移动图像/视频等多媒体文件的方法   从一个位置(可能是FTP)到天蓝色斑点,想知道是否   Azure数据工厂支持这种数据移动。

是的,您可以使用Azure数据工厂Copy Activity,它支持FTP connectors。您可以按照上面的链接将ftp链接服务和数据集配置为源。

"activities":[
    {
        "name": "CopyFromFTP",
        "type": "Copy",
        "inputs": [
            {
                "referenceName": "<FTP input dataset name>",
                "type": "DatasetReference"
            }
        ],
        "outputs": [
            {
                "referenceName": "<output dataset name>",
                "type": "DatasetReference"
            }
        ],
        "typeProperties": {
            "source": {
                "type": "FileSystemSource",
                "recursive": true
            },
            "sink": {
                "type": "<sink type>"
            }
        }
    }
]

然后将azure blob storage service配置为接收器。