gpt4 book ai didi

c# - Azure 服务总线队列如何在 HTTPs 模式下将消息传递到客户端

转载 作者:太空宇宙 更新时间:2023-11-03 12:07:02 24 4
gpt4 key购买 nike

我们在应用程序中对 Azure 服务总线队列使用 HTTPs 模式。

ServiceBusEnvironment.SystemConnectivity.Mode = ConnectivityMode.Https;

但我们不确定 Azure 服务总线如何以 HTTPs 模式传递消息,如果服务总线客户端使用轮询,轮询到 Azure 服务总线队列的频率如何。

我们使用包:

Microsoft.ServiceBus;
Microsoft.ServiceBus.Messaging;

最佳答案

我们似乎没有任何关于此的官方文档。但是,大多数服务总线客户端使用长轮询,这意味着它们打开与服务总线的连接并保持打开状态,直到收到数据。如果收到消息,客户端会处理该消息并打开一个新连接。如果连接超时,客户端将在增量退避期后打开新连接。 According to the product team ,超时时间设置为30秒。

您可以使用此测试程序来查看消息发送到队列后需要多长时间才能被接收。当前设置为一次运行一条消息。通过使用批处理,总吞吐量可以比此示例高得多。

在我的机器上,消息通常在放入队列后 100 毫秒内被检索。如果我将 sleepTime 设置为较大的间隔,则检索将花费稍长的时间,因此增量回退生效。如果音量较低,则可能需要更长的时间才能收到消息。

class Program
{
private static readonly string connectionString = "";
private static readonly int sleepTime = 100;
private static readonly int messageCount = 10;
static void Main(string[] args)
{
ServiceBusEnvironment.SystemConnectivity.Mode = ConnectivityMode.Https;

var client = QueueClient.CreateFromConnectionString(connectionString, "testqueue");
client.PrefetchCount = 1;
var timeCheck = DateTime.UtcNow;

client.OnMessage((message) =>
{
var timing = (DateTime.UtcNow - message.EnqueuedTimeUtc).TotalMilliseconds;
Console.WriteLine($"{message.GetBody<string>()}: {timing} milliseconds between between send and receipt.");
});

for (int i = 0; i < messageCount; i++)
{
client.Send(new BrokeredMessage($"Message {i}"));
Console.WriteLine($"Message {i} sent");
Thread.Sleep(sleepTime);
}

Console.WriteLine("Test Complete");

Console.ReadLine();
}
}

关于c# - Azure 服务总线队列如何在 HTTPs 模式下将消息传递到客户端,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54420904/

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