限制服务总线队列中的分区数
Limit on number of partitions in service bus queue
服务总线队列中的分区数量是否有任何限制? Documentation 提到了一些限制,但没有提到任何有关编号的内容。分区数。
Currently Service Bus imposes the following limitations on partitioned queues and topics:
Partitioned queues and topics aren't supported in the Premium messaging tier. Sessions are supported in the premier tier by using SessionId.
Partitioned queues and topics don't support sending messages that belong to different sessions in a single transaction.
Service Bus currently allows up to 100 partitioned queues or topics per namespace. Each partitioned queue or topic counts towards the quota of 10,000 entities per namespace (doesn't apply to Premium tier).
查看 Azure 门户上的服务总线队列页面:
有什么不同吗?或者我们可以像 Azure 门户上提到的那样只有 16 个分区吗?
类似的问题,但没有完全回答这个问题,因为没有可用的文档:Are there any limitation on the number of partitions in a Azure Service Bus Queue or Topics?
参见 enabling partitioning 上的文档页面:
In a Standard tier namespace, you can create Service Bus queues and topics in 1, 2, 3, 4, or 5-GB sizes (the default is 1 GB). With partitioning enabled, Service Bus creates 16 copies (16 partitions) of the entity, each of the same size specified. As such, if you create a queue that's 5 GB in size, with 16 partitions the maximum queue size becomes (5 * 16) = 80 GB.
分区选项只是一个复选框(在门户中)或命令行选项 (--enable-partitioning true
)。如上述文档所述,分区数始终为 16。
服务总线队列中的分区数量是否有任何限制? Documentation 提到了一些限制,但没有提到任何有关编号的内容。分区数。
Currently Service Bus imposes the following limitations on partitioned queues and topics: Partitioned queues and topics aren't supported in the Premium messaging tier. Sessions are supported in the premier tier by using SessionId. Partitioned queues and topics don't support sending messages that belong to different sessions in a single transaction. Service Bus currently allows up to 100 partitioned queues or topics per namespace. Each partitioned queue or topic counts towards the quota of 10,000 entities per namespace (doesn't apply to Premium tier).
查看 Azure 门户上的服务总线队列页面:
有什么不同吗?或者我们可以像 Azure 门户上提到的那样只有 16 个分区吗?
类似的问题,但没有完全回答这个问题,因为没有可用的文档:Are there any limitation on the number of partitions in a Azure Service Bus Queue or Topics?
参见 enabling partitioning 上的文档页面:
In a Standard tier namespace, you can create Service Bus queues and topics in 1, 2, 3, 4, or 5-GB sizes (the default is 1 GB). With partitioning enabled, Service Bus creates 16 copies (16 partitions) of the entity, each of the same size specified. As such, if you create a queue that's 5 GB in size, with 16 partitions the maximum queue size becomes (5 * 16) = 80 GB.
分区选项只是一个复选框(在门户中)或命令行选项 (--enable-partitioning true
)。如上述文档所述,分区数始终为 16。