当Azure将这批消息发送到服务总线时,如果包含超过256KB,会发生什么?
我想将批量消息发送到服务总线主题。我不知道该批次的消息大小。
根据文档,标准层仅允许 256kb。
如果一批消息包含的内容超过了大小,我们应该如何处理?
还有其他内置功能可以处理这个问题吗?
请建议方法?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 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).