当Azure将这批消息发送到服务总线时,如果包含超过256KB,会发生什么?

发布于 2025-01-10 20:30:55 字数 137 浏览 0 评论 0 原文

我想将批量消息发送到服务总线主题。我不知道该批次的消息大小。

根据文档,标准层仅允许 256kb。

如果一批消息包含的内容超过了大小,我们应该如何处理?

还有其他内置功能可以处理这个问题吗?

请建议方法?

I want to send the batch of messages to the service bus topic. I don't know the message size of the batch.

As per the documentation, For the standard tier will allow only 256kb.

If a batch of a message contains more than the size, How should we handle that?

Is there any other inbuilt functionality to handle that?

Please suggest the approaches?

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

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

发布评论

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

评论(1

你的心境我的脸 2025-01-17 20:30:55

如果您使用 SDK(例如 .Net)发送批处理并且批处理大小超过限制 (256KB),则 SDK 甚至不会将罪魁祸首消息添加到批处理中,而只会在客户端处理它( 参考)。

如果您不使用 SDK 并直接处理服务总线(例如自己实现 AMQP 或使用 REST API),您将从服务总线本身收到错误。我相信状态代码将为 403(超出配额或消息太大(参考)。

If you are using a SDK (.Net for example) to send the batch and the batch size exceeds the limit (256KB), the SDK won't even add the culprit messages to the batch and would handle it on the client side only (Reference).

If you are not using the SDK and dealing with the Service Bus directly (e.g. implementing AMQP yourself or using the REST API), you will get an error from Service Bus itself. I believe the status code would be 403 (Quota exceeded or message too large (Reference).

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