gpt4 book ai didi

Azure eventhub 多个分区键指向同一分区

转载 作者:行者123 更新时间:2023-12-02 08:29:46 26 4
gpt4 key购买 nike

我们正在开发一个 Multi-Tenancy 应用程序,其中 eventhub 将在不同租户之间共享。我们将在租户之间分配分区。每个租户将在不同的分区上发送消息。我们希望在分区级别对租户进行身份验证。正如 Microsoft 网站上所述,我们根据租户 ID 定义分区键。但问题是不止一个分区键在同一分区上发送消息。事实不应该是这样。理想情况下,每个分区键都应该映射到不同的分区。

        var serviceNamespace = "namespace name here";
var hubName = "hub name here";
var deviceName = "device name here";
var sasToken = "SAS TOKEN HERE";

Mymessage subGroup1 = CreateMessage();

var factory = MessagingFactory.Create(ServiceBusEnvironment.CreateServiceUri("sb", serviceNamespace, ""), new MessagingFactorySettings
{
TokenProvider = TokenProvider.CreateSharedAccessSignatureTokenProvider(sasToken),
TransportType = TransportType.Amqp
});
var client = factory.CreateEventHubClient(String.Format("{0}/publishers/{1}", hubName, deviceName));

var data = new EventData(Encoding.UTF8.GetBytes(JsonConvert.SerializeObject(subGroup1)));
data.PartitionKey = "jeep";

client.Send(data);

请帮助我了解我的方法有什么问题。

最佳答案

很简单,可能的字符串分区键的无限空间被映射到事件中心内非常有限的分区空间。除非您向 Microsoft 请求更多,否则您的 EventHub 中最多有 32 个分区。分区键被散列,然后散列空间被划分到分区空间中。这提供了documentation中的保证。

Event Hubs ensures that any and all events sharing the same partition key value are delivered in order, and to the same partition. Importantly, if partition keys are used with publisher policies, described in the next section, then the identity of the publisher and the value of the partition key must match.

在这种具有良好性能的系统中,无法保证也无法保证每个分区键都指向不同的分区。 this question 中讨论了其中一些内容。 。通过发布商政策,您还知道

When using publisher policies, the PartitionKey value is set to the publisher name. In order to work properly, these values must match.

这意味着来自单个发布者的所有事件都会转到单个分区。就我个人而言,我认为这并不总是一件好事,因为最终每个发布商都会有一个吞吐量单位的硬性上限(如果你在哈希方面不走运,则更少)。

如果您需要将每个客户的数据分离在不同的分区中,并通过向客户提供直接与 EventHub 对话的凭据来强制执行此操作,我认为您唯一的选择可能是使用多个 EventHub。我相信(从某种意义上说,我还没有检查我们的账单)同一服务总线内的 EventHub 共享吞吐量单位。

但是,如果您只需要您的消费者能够知道它来自哪个发布商/客户,那么我相信您可以使用 EventData.PartitionKey保证是上面记录的发布者名称。

关于Azure eventhub 多个分区键指向同一分区,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28292330/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com