Azure Service Bus:邮件大小,技术限制和定价

g.p*_*dou 7 azure

我正在尝试阅读Azure Service Bus队列技术规格和定价,但我不清楚

1)邮件是否有任何大小限制?

2)定价是否可能不依赖于消息大小?看来,但我无法相信.

(我希望每封邮件发送大约10K - 100K数据.在多个实例中运行的并发相同工作者角色将使用消息队列.

Thx提前

Thi*_*dio 10

1-)

Service Bus队列支持的最大邮件大小为256 Kb(标头,包括标准和自定义应用程序属性,最大大小为64 Kb).队列中保留的消息数没有限制,但队列保留的消息总大小上限.此队列大小在创建时定义,上限为5 GB.

http://www.windowsazure.com/en-us/documentation/articles/service-bus-dotnet-how-to-use-queues/

2-)

Queues and Topics

$0.01 for every 10,000 messages

Messages exceeding 64KB in size will result in an additional message being charged for every 64KB in message. Billable messages include any “no message available” replies from Service Bus in response to receive requests made against empty queues/subscriptions.

Relay

$0.10 for every 100 relay hours

$0.01 for every 10,000 messages

Relay hours start when the first listener connects to a given relay address and end when the last listener disconnects from that address, and are rounded up to the next clock hour. As with queues/topics, messages greater than 64KB in size will generate additional billable messages per 64KB of additional content.
Run Code Online (Sandbox Code Playgroud)

http://www.windowsazure.com/en-us/pricing/details/service-bus/

  • 这在 2017 年不太准确。我看不到有关超过 64KB 的消息的任何信息 (2认同)