gpt4 book ai didi

azure - 从 Azure 数据工厂 Web 事件获取 Azure Blob 队列消息

转载 作者:行者123 更新时间:2023-12-03 06:14:13 26 4
gpt4 key购买 nike

我正在尝试使用 Azure Web 事件从 Azure Blob 存储获取队列消息。然后将解析该消息以获取我在数据管道的后续部分中需要的参数。

enter image description here

我尝试使用 SAS 连接,但不断出现

<?xml version="1.0" encoding="utf-8"?><Error><Code>UnsupportedHttpVerb</Code><Message>The resource doesn't support specified Http Verb.

我这里的设置有什么问题吗?我已阅读 Azure 文档,但似乎找不到任何解决方案。谢谢。

最佳答案

我尝试使用 SAS 使用以下 URL,并得到了预期的结果。

https://<storage_account_name>.queue.core.windows.net/<message_queue_name>/messages<SAS>

这是我的管道 JSON:

{
"name": "pipeline2",
"properties": {
"activities": [
{
"name": "Web1",
"type": "WebActivity",
"dependsOn": [],
"policy": {
"timeout": "0.12:00:00",
"retry": 0,
"retryIntervalInSeconds": 30,
"secureOutput": false,
"secureInput": false
},
"userProperties": [],
"typeProperties": {
"url": "https://<storage_account_name>.queue.core.windows.net/<message_queue_name>/messages<SAS>",
"method": "GET",
"headers": {
"x-ms-date": {
"value": "@{formatDateTime(utcnow(),'r')}",
"type": "Expression"
},
"x-ms-version": "2020-04-08",
"Content-Type": "application/json"
}
}
}
],
"annotations": []
}
}

如果您在队列中选中以下复选标记,您将在 Web 事件输出中获得加密的消息正文。

enter image description here

输出:

enter image description here

取消选中它,您可以看到,我在 Web 事件输出中获取了消息正文。

enter image description here

关于azure - 从 Azure 数据工厂 Web 事件获取 Azure Blob 队列消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/76438183/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com