cost 310 ms
如何在没有队列触发器的情况下从 Azure function 中的 Azure 队列读取 - How to read from an Azure queue in an Azure function, without a Queue Trigger

如果我有一个 Azure Function 为队列生成数据,这很简单:我只需将它设置为 function 的参数: [Queue("myQueue")] ICollector<MyType> myQueue 有没有类似的方法从队列中读回数据? 我在 Azure 函数中从队列中读取时可以找 ...

如何从 Azure 存储队列触发容器应用程序? - How to trigger a Container App from Azure Storage Queue?

我对在 NodeJS 中开发和使用容器有点陌生。 我正在用 NodeJS 开发一个小应用程序,它监听 Azure 存储队列。 现在我希望该应用程序由队列中的新消息触发,但我不知道该怎么做。 我打算使用 Azure 容器应用程序。 我在Microsoft SDK中看到了可以用来从队列中读取消息的方法 ...

将队列消息原始数据的副本存储到某处 - Store a copy of queue message raw data to somewhere

我正在调试 Azure 队列触发器 function。我想找到一种方法来检查排队的原始消息。 棘手的部分是队列触发器 function 仍在运行,我无法访问插入消息的调用者(客户端)。 所以读取队列消息的常规方法,比如从存储资源管理器,对我不起作用,因为队列触发器 function 处理消息的速度非 ...

使用 Windows Powershell Az 模块将队列消息添加到 Azure 存储所需的 ListKeys 权限 - ListKeys permissions required for adding queue message to Azure Storage using Windows Powershell Az module

使用 Powershell 的 Az 模块,我需要将消息放入 Azure 存储队列。 分配了适当的 RBAC 权限。 我可以使用 Azure CLI(不幸的是,目前我无法在我的目标系统上使用)很好地做到这一点。 这里是output,可以看到好像权限不匹配。 该存储帐户上的 ListKeys 是必需的 ...

存储帐户连接字符串不存在 - 为 Azure 函数部署队列存储触发器 - Storage account connection string does not exist - deploying Queue storage trigger for Azure Functions

我想创建一个 azure 存储队列触发 azure function。 我浏览了以下教程https://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-queue-trigger 我基本上想在将消息推 ...

从 Azure 存储队列到 Function App 的批量消息处理 - Batch message processing from Azure Storage Queue to Function App

我想知道的是我是否可以从存储队列中获取 1000 条消息并在单个 Azure Function 运行中处理它们。 我正在构建一个系统,它将例如 1000 条消息的消息数据合并为 json 格式并将其发送到某个地方。 但是,消息每分钟到达十万条。 我正在考虑将这些消息首先放入队列中,并按批次抓取它们并 ...

azure 队列触发器 function 从两个不同的队列中拉取 - azure queue trigger function pull from two different queues

如何让单个 azure 队列触发器 function 连接到两个不同的队列。 有两个像这样的绑定似乎打破了它: 如果可能的话,我希望一个队列优先于另一个队列。 这样,如果priority为空, main只会将作业发送到 function,否则它将从priority接收作业直到为空。 ...

Mongo DB Connection 会自动关闭或过期吗 - Will Mongo DB Connection closes or expires automatically

我编写了一个队列触发器 Azure Function 应用程序(节点 JS),其中每个队列触发器数据将插入 MongoDB。 我正在创建高于 function 级别的 MongoClient 并为所有触发器重新使用相同的 MongoClient 有时在我的 mongo db 集群上,我收到与集群的错 ...

Azure 功能弹性高级计划和队列触发器 - Azure Functions Elastic Premium Plan and Queue Triggers

我们有一个解决方案,我们使用 Azure 存储队列来处理大约需要 6 分钟的消息。 我读到并发处理的队列消息的最大batchSize是每个 VM 32 。 如果 function 应用程序扩展到多个 VM,则每个 VM 可以运行每个队列触发的 function 的一个实例。 https://lea ...

问题:将消息排队到 azure 存储队列不适用于托管标识 - Issue : Enqueuing the message to azure storage queue is not working with Managed Identity

C# Azure Function 应用程序之一生成消息并将它们放入 azure 存储队列,我们想使用托管身份,因为我们不想在配置中使用连接字符串。 创建了用户分配的托管身份提供所需的 RBAC 角色,如存储上的存储 Blob 数据所有者和存储队列数据贡献者。 (我们甚至尝试过贡献者、所有者等其 ...

Azure LogicApp 从存储队列中读取消息但不处理 - Azure LogicApp reading messages from storage queue but not processing

我正在设置 Azure LogicApp 以从存储队列读取消息并将消息发布到 API 端点: LogicApp 按预期触发并记录成功运行。 我可以看到我的队列消息已从队列中删除,但随后又被放回队列中,因为 LogicApp 没有处理 for each 循环,也没有运行循环中的 DeleteMes ...

Azure 存储队列 - 是否有用于设置毒消息 TTL 的应用程序范围配置 - Azure Storage Queues - Is there an App wide configuration for setting poison messages TTL

我正在使用由存储队列触发的 Azure Webjob,使用 [QueueTrigger] 属性,毒消息处理由集成 package 本身完成。 我正在尝试找到一种方法来将有害消息的ExpirationTime设置为大于默认 7 天的时间。 查看文档,这些是所有可用的配置选项: 通过代码配置它的选项 ...

Azure 存储队列客户端未将消息放入毒队列 - Azure Storage Queue Client does not put message in poison queue

这是一个新手问题。 我有一个使用存储队列的计时器触发器(Client.Azure.Storage.Queues) 客户端是否会自动将未处理的消息发送到毒队列? 此代码模拟错误。 如果一切正常,则删除该消息。 我希望在 2 次重试后消息不会返回到队列: 还是我错过了什么? 或者我必须手动将消息添加到毒 ...

如何加快 Azure Function 的开发(使用 Azure 队列存储和 Z3A580F1422036873F53 表) - How to speed up development for Azure Function (with Azure queue storage and Azure table storage)

我是 Azure 的新手。 我需要使用 Azure 存储队列开发一个功能,该存储队列触发 Azure function 并引用存储表中的数据。 我必须在 Azure function 日志中查看结果。 将 Azure function 从 VSCode 部署到 Azure 云需要相当长的时间(可能 ...


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