使用 Azure 数据工厂从私有 s3 实现复制数据
Copy data from private s3 implementation using Azure Data Factory
我正在考虑使用 azure 数据工厂从 不 托管在 Amazon 的 S3 存储桶中复制文件。我们当前使用的解决方案包括一些 Azure 函数、一个逻辑应用程序和一个 Web 应用程序。使用 Azure 数据工厂,这应该更简单,更易于维护。
我研究了可以为 Amazon S3 链接服务提供的属性。
"name": "AmazonS3LinkedService",
"properties": {
"type": "AmazonS3",
"typeProperties": {
"accessKeyId": "<access key id>",
"secretAccessKey": {
"type": "SecureString",
"value": "<secret access key>"
}
},
"connectVia": {
"referenceName": "<name of Integration Runtime>",
"type": "IntegrationRuntimeReference"
}
}
但是我没有在文档中看到 属性 来设置不同的主机。
我的问题是,这可能吗?
我认为它只是 Amazon S3 的连接器。至少从模型层来看,不同主机没有属性。
我正在考虑使用 azure 数据工厂从 不 托管在 Amazon 的 S3 存储桶中复制文件。我们当前使用的解决方案包括一些 Azure 函数、一个逻辑应用程序和一个 Web 应用程序。使用 Azure 数据工厂,这应该更简单,更易于维护。
我研究了可以为 Amazon S3 链接服务提供的属性。
"name": "AmazonS3LinkedService",
"properties": {
"type": "AmazonS3",
"typeProperties": {
"accessKeyId": "<access key id>",
"secretAccessKey": {
"type": "SecureString",
"value": "<secret access key>"
}
},
"connectVia": {
"referenceName": "<name of Integration Runtime>",
"type": "IntegrationRuntimeReference"
}
}
但是我没有在文档中看到 属性 来设置不同的主机。
我的问题是,这可能吗?
我认为它只是 Amazon S3 的连接器。至少从模型层来看,不同主机没有属性。