Eho*_*ret 5 c# masstransit rabbitmq .net-core
正如我在 SO 的一个问题中所指出的(为什么 MassTransit 中的简单配置会创建 2 个队列和 3 个交换器?),MassTransit for RabbitMQ 会针对给定的简单配置自动创建一定数量的队列和交换器:
交易所,所有扇出:
ConsoleApp1:Program-YourMessage: 耐用的VP0003748_dotnet_bus_6n9oyyfzxhyx9ybobdmpj8qeyt:自动删除且持久?test_queue: 耐用的队列:
VP0003748_dotnet_bus_6n9oyyfzxhyx9ybobdmpj8qeyt: x-过期 60000test_queue: 耐用的
然而,我发现无法覆盖这些交换器和队列的命名有点令人沮丧。我能做些什么来改变这一点吗?
例如,如果您重构某种类型或命名空间,您最终可能会因为大量不再使用的交换而污染您的 RabbitMQ 实例 =/
我理解test_queue,因为这是我的决定,非常公平。类型很容易发生更改/重构。
这是一种简单有效的方法: https: //bartwullems.blogspot.com/2018/09/masstransitchange-exchange-naming.html
但最好在这里放置一些 dotnet 核心代码,以帮助任何刚开始使用的人。
我们基于配置的自定义格式化程序:
public class BusEnvironmentNameFormatter : IEntityNameFormatter
{
private readonly IEntityNameFormatter _original;
private readonly string _prefix;
public BusEnvironmentNameFormatter(IEntityNameFormatter original, SomeAppSettingsSection busSettings)
{
_original = original;
_prefix = string.IsNullOrWhiteSpace(busSettings.Environment)
? string.Empty // no prefix
: $"{busSettings.Environment}:"; // custom prefix
}
// Used to rename the exchanges
public string FormatEntityName<T>()
{
var original = _original.FormatEntityName<T>();
return Format(original);
}
// Use this one to rename the queue
public string Format(string original)
{
return string.IsNullOrWhiteSpace(_prefix)
? original
: $"{_prefix}{original}";
}
}
Run Code Online (Sandbox Code Playgroud)
然后要使用它,我们会做这样的事情:
var busSettings = busConfigSection.Get<SomeAppSettingsSection>();
var rabbitMqSettings = rabbitMqConfigSection.Get<SomeOtherAppSettingsSection>();
services.AddMassTransit(scConfig =>
{
scConfig.AddConsumers(consumerAssemblies);
scConfig.AddBus(provider => Bus.Factory.CreateUsingRabbitMq(rmqConfig =>
{
rmqConfig.UseExtensionsLogging(provider.GetRequiredService<ILoggerFactory>());
// Force serialization of default values: null, false, etc
rmqConfig.ConfigureJsonSerializer(jsonSettings =>
{
jsonSettings.DefaultValueHandling = DefaultValueHandling.Include;
return jsonSettings;
});
var nameFormatter = new BusEnvironmentNameFormatter(rmqConfig.MessageTopology.EntityNameFormatter, busSettings);
var host = rmqConfig.Host(new Uri(rabbitMqSettings.ConnectionString), hostConfig =>
{
hostConfig.Username(rabbitMqSettings.Username);
hostConfig.Password(rabbitMqSettings.Password);
});
// Endpoint with custom naming
rmqConfig.ReceiveEndpoint(host, nameFormatter.Format(busSettings.Endpoint), epConfig =>
{
epConfig.PrefetchCount = busSettings.MessagePrefetchCount;
epConfig.UseMessageRetry(x => x.Interval(busSettings.MessageRetryCount, busSettings.MessageRetryInterval));
epConfig.UseInMemoryOutbox();
//TODO: Bind messages to this queue/endpoint
epConfig.MapMessagesToConsumers(provider, busSettings);
});
// Custom naming for exchanges
rmqConfig.MessageTopology.SetEntityNameFormatter(nameFormatter);
}));
});
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
4689 次 |
| 最近记录: |