简体   繁体   English

复制 Azure 数据工厂中的替代活动

[英]copy activity alternative in Azure Data Factory

I have output from web activity in Azure data factory and I want to store the data in blob storage.我有 output 来自 Azure 数据工厂中的 web 活动,我想将数据存储在 blob 存储中。 Is there any way other than Copy Activity and Function app that I can use to store data in blob storage?除了 Copy Activity 和 Function 应用程序之外,还有其他方法可以用来将数据存储在 blob 存储中吗?

Yes, You can use following way to store data in blob storage.是的,您可以使用以下方式将数据存储在 blob 存储中。

Use PUT method to store web activity output to blob storage.使用PUT方法将 web 活动 output 存储到 blob 存储中。

Step1: Use Web activity body as @activity('Web1').output第一步:使用 Web 活动主体作为@activity('Web1').output

在此处输入图像描述

Or if you want to pass the "data" (depending on variable name) and not the headers use @activity('Web1').output.data或者,如果您想传递“数据”(取决于变量名)而不是标头,请使用@activity('Web1').output.data

在此处输入图像描述

Step2: For Authentication select Managed Identity and Resource should be https://storage.azure.com/第 2 步对于身份验证 select 托管身份和资源应为https://storage.azure.com/

在此处输入图像描述

For information follow this link - Azure Data Factory Web activity save output有关信息,请点击此链接 - Azure 数据工厂 Web 活动保存 output

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何在 Azure 数据工厂的复制活动中捕获 output 值 - How to capture an output value in Copy Activity in Azure Data Factory Azure 数据工厂 (V2) 复制活动 - 缺少高级编辑器 - Azure Data Factory (V2) Copy Activity - advanced editor missing 复制活动中的正则表达式附加列 Azure 数据工厂 - Regex Additional Column in Copy Activity Azure Data Factory 使用 Azure 数据工厂复制活动更新 Cosmos 项目 TTL - Upsert Cosmos item TTL using Azure Data Factory Copy Activity 如何在 Azure 数据工厂的复制活动中强制映射 - How to force mapping in copy activity of Azure Data Factory 将带有参数的 MySQL 视图中的活动复制到带有 Azure 数据工厂的 Azure SQL 数据库 - Copy Activity from a MySQL view with parameters to Azure SQL database with Azure Data Factory Azure 数据工厂中 MONEY 数据类型的替代方案 - Alternative to MONEY Data type in Azure data factory Azure 数据工厂 - Google BigQuery 复制数据活动未返回嵌套列名称 - Azure Data Factory - Google BigQuery Copy Data activity not returning nested column names 使用 Azure 数据工厂中的复制活动复制数据时转换文件格式 - Convert file format while copying data using copy activity in Azure data factory 如何在 Azure 数据工厂中为与外键相关的表创建管道并执行复制活动? - How to create a pipeline and perform copy activity in Azure data factory for the tables related to foreign keys?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM