Azure 服务总线:没有可用于使用锁定令牌完成消息的会话

发布于 2025-01-10 02:02:07 字数 418 浏览 0 评论 0原文

我正在逻辑应用程序中使用服务总线队列,但有时当在某个时间通过大量消息时,我在尝试完成消息时开始收到此错误。它与消息锁定丢失或锁定持续时间无关,我已经在线查看了其他来源,但找不到可靠的答案来解释为什么会发生这种情况以及如何完全避免这种情况。

分区可能是一个解决方案,但我不能 100% 确定。

Error: No session available to complete the message with the lock token
Failed

输入图片此处描述

谢谢, 阿尔斯兰

I am working with Service Bus Queues in Logic Apps but sometimes when a lot of messages are coming through at a certain time I am starting to get this error while trying to complete the message. It's not related to Message lock lost or Lock Duration, I have looked into other sources online but couldn't find a solid answer to why is this happening and what to do to avoid this completely.

Partitioning may be a solution but I am not 100% sure.

Error: No session available to complete the message with the lock token
Failed

enter image description here

Thanks,
Arslan

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

行至春深 2025-01-17 02:02:07

根据从 Azure 逻辑应用连接到 Azure 服务总线 Microsoft 文档 并且正如您明确提到的,此问题不是因为消息锁定丢失或锁定持续时间。问题可能是由于超出了会话计​​数限制。 (1500 个独特的会话)。

在服务总线中,服务总线连接器一次最多可以将 1,500 个唯一会话保存到连接器缓存中,根据 服务总线消息传递实体,例如订阅或主题。如果会话计数超过此限制,旧会话将从缓存中删除。有关详细信息,请参阅消息会话

有关连接器的 Swagger 描述中描述的有关触发器、操作和限制的其他技术详细信息,请查看 连接器参考页面。有关 Azure 服务总线消息传递的详细信息,请参阅 什么是 Azure ServiceBus

您可以减少每次会话数,也可以提出功能请求

As per the Connect to Azure Service Bus from Azure logic apps Microsoft document and as you clearly mentioned that this issue is not because of Message lock lost or lock duration. Maybe the issue could be because of exceeding the session count limit. (1500 unique sessions).

From a service bus, the Service Bus connector can save up to 1,500 unique sessions at a time to the connector cache, per Service Bus messaging entity, such as a subscription or topic. If the session count exceeds this limit, old sessions are removed from the cache. For more information, see Message sessions.

For other technical details about triggers, actions, and limits, which are described by the connector's Swagger description, review the connector reference page. For more about Azure Service Bus Messaging, see What is Azure ServiceBus?

Either you can reduce the sessions per time or you can raise a feature request

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文