简体   繁体   English

使用 Azure Logic App 处理和发送数据

[英]Data manipulation and sending it with Azure Logic App

I just started working with Azure last week and I'm wondering if it is possible to create a system that revolves around Azure Logic App.我上周刚开始使用 Azure,我想知道是否有可能创建一个围绕 Azure 逻辑应用程序的系统。 So, I'm generating data using python and somehow send the data to Azure Blobs Storage or SharePoint and make the same AzLogic App to extract some of the columns and rows of that data, map the extracted data, and generate a new CSV file, then use the same Logic App to upload the file to an SFTP server?因此,我正在使用 python 生成数据,并以某种方式将数据发送到 Azure Blob 存储或 SharePoint,并制作相同的 AzLogic 应用程序来提取该数据的一些列和行,map 提取的数据,并生成一个新的 CSV 文件,然后使用相同的逻辑应用程序将文件上传到 SFTP 服务器?

I have done this in the past using AWS.我过去曾使用 AWS 完成过此操作。 For example, I could embed a kinesis end-point or hardcoded access and secret keys on my python data generator and the script will send the data to S3 and uses AWS Glue to perform and ETL and uses the same Glue to send it to a different S3 bucket.例如,我可以在我的 python 数据生成器上嵌入运动端点或硬编码访问和密钥,脚本会将数据发送到 S3 并使用 AWS Glue 执行和 ETL,并使用相同的 Glue 将其发送到不同的S3 桶。 But, I'm not sure if it is achievable to do that in Azure. Any feedback is appreciated.但是,我不确定在 Azure 中是否可以做到这一点。欢迎提供任何反馈。


you can use logic app connectors.您可以使用逻辑应用程序连接器。
for reading files from blob use https://learn.microsoft.com/en-us/azure/connectors/connectors-create-api-azureblobstorage从 blob 读取文件使用https://learn.microsoft.com/en-us/azure/connectors/connectors-create-api-azureblobstorage

performing some data operation use Controls and loop through the data执行一些数据操作使用控件并循环遍历数据

For CSV, you can use https://learn.microsoft.com/en-us/azure/logic-apps/logic-apps-perform-data-operations对于CSV,可以使用https://learn.microsoft.com/en-us/azure/logic-apps/logic-apps-perform-data-operations

and saving that file to SFTP server, you can use https://learn.microsoft.com/en-us/azure/connectors/connectors-sftp-ssh并将该文件保存到 SFTP 服务器,您可以使用https://learn.microsoft.com/en-us/azure/connectors/connectors-sftp-ssh

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

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM