Does Azure service bus with premium subscription support 100mb messages in production environment?
Does Azure service bus with premium subscription support 100mb messages in production environment?
No, the premium SKU supports a max size of 1MB. You really don't want to be putting messages that size on a service bus, you should have your message contain details of where your application can go to retrieve this content, rather than including it in the message.
@JHedlund-4101 Azure Service Bus has added support for messages up to 100MB but is currently in preview. While this is now supported, it is still recommended to keep messages as small as possible to ensure reliable performance.
For large data/file payloads, you can explore the Claim Check Pattern to incorporate into your design as mentioned by @Sam-Cogan.
5 people are following this question.