Best practice for sending large messages on ServiceBus
问题 We need to send large messages on ServiceBus Topics. Current size is around 10MB. Our initial take is to save a temporary file in BlobStorage and then send a message with reference to the blob. The file is compressed to save upload time. It works fine. Today I read this article: http://geekswithblogs.net/asmith/archive/2012/04/10/149275.aspx The suggestion there is to split the message in smaller chunks and on the receiving side aggregate them again. I can admit that is a "cleaner approach",