gpt4 book ai didi

c# - Azure Web 作业 : Queue triggers with different batch sizes

转载 作者:行者123 更新时间:2023-12-04 02:57:05 24 4
gpt4 key购买 nike

我在 azure 上有一个 WebJob,它同时处理来自多个队列的消息:

public async static Task ProcessQueueMessage1([QueueTrigger("queue1")] string message)
{


switch (message.Substring(message.Length - 3, 3))
{
case "tze":
await Parser.Process1(message);
break;
default:
break;
}
}


public async static Task ProcessQueueMessage2([QueueTrigger("queue2")] string message)
{


switch (message.Substring(message.Length - 3, 3))
{
case "tzr":
await Parser.Process2(message);
break;
default:
break;
}
}

以及 MAIN 中的

static void Main()
{

JobHostConfiguration config = new JobHostConfiguration();
config.Queues.BatchSize = 3;
config.Queues.MaxDequeueCount = 1;
var host = new JobHost(config);
host.RunAndBlock();

}

此处:message.Substring(message.Length - 3, 3)只需检查文件的扩展名。

我的问题是,我如何继续使队列1的批量大小与队列2不同,我可以使用不同的配置创建第二个作业主机并拥有host.RunAndBlock()host2.RunAndBlock() ??我如何指定作业主机应该执行什么队列?

我也尝试过 Groupqueuetriggers,但不幸的是它们采用字符串,在我的情况下我实际上无法将列表传递到队列。 :(

最佳答案

为了解决这个问题,您需要提供 IQueueProcessorFactory 的自定义实现。您只需要一台 JobHost。

有一个关于如何执行此操作的示例 here.

    static void Main()
{

//Configure JobHost
var config = new JobHostConfiguration();
config.Queues.BatchSize = 32;
config.Queues.MaxDequeueCount = 6;
// Create a custom configuration
// If you're using DI you should get this from the kernel
config.Queues.QueueProcessorFactory = new CustomQueueProcessorFactory();

//Pass configuration to JobJost
var host = new JobHost(config);
// The following code ensures that the WebJob will be running continuously
host.RunAndBlock();
}

CustomQueueProcessorFactory中,您可以根据队列名称插入自定义配置。

public class CustomQueueProcessorFactory : IQueueProcessorFactory
{
public QueueProcessor Create(QueueProcessorFactoryContext context)
{
if (context == null)
{
throw new ArgumentNullException(nameof(context));
}
if (context.Queue.Name == "queuename1")
{
context.MaxDequeueCount = 10;
}
else if (context.Queue.Name == "queuename2")
{
context.MaxDequeueCount = 10;
context.BatchSize = 1;
}

return new QueueProcessor(context);
}
}

关于c# - Azure Web 作业 : Queue triggers with different batch sizes,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52629666/

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