TemplatesInitializer создаёт 9 записей Templates со статусом Creating

This commit is contained in:
Mikhail Kuznetsov
2023-09-18 12:40:42 +10:00
parent 4d56cbfd97
commit 9816ece7fe
8 changed files with 395 additions and 38 deletions

View File

@@ -1,43 +1,32 @@
using PARR.MockData.Data;
using RabbitMQ.Client;
using System.Text;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using PARR.DAL;
using PARR.MockData.Services;
using Serilog;
var factory = new ConnectionFactory() { HostName = "10.99.253.216" };
factory.UserName = "espp_templates_robot";
factory.Password = "P@ssRwEsppTempl202";
//var esppImporter = new EsppDataImporter();
//esppImporter.Import();
string[] rows = EsppExport.data.Replace("\r", "").Split('\n');
using (var connection = factory.CreateConnection())
using (var channel = connection.CreateModel())
{
//https://www.rabbitmq.com/lazy-queues.html
//Рекомендовано при работе порциями использовать ленивые очереди. сообщения не используют память
//Формируем соответствующий аргумент
Dictionary<String, Object> argums = new Dictionary<String, Object>();
argums.Add("x-queue-mode", "lazy");
//Объявляем очередь с которой будем работать. Если такой очереди ещё нет, то создатся. Если нет, нужно параметры типа durable должны совпадать иначе будет ошибка. В целом эти параметры можно посмотреть в админке RabbitMQ
channel.QueueDeclare(queue: "parr-espp-templates",
durable: true,//If you want to make sure your messages are persisted, you need to create a durable queue. To do this, simply set the durable flag to true when creating the queue.
exclusive: false,
autoDelete: false,
arguments: argums);
//перебираем строки и отправляем строки сообщениями
for (int i = 0; i < rows.Count(); i++)
IHost host = Host.CreateDefaultBuilder(args)
.ConfigureServices((hostContext, services) =>
{
var body = Encoding.UTF8.GetBytes(rows[i]);
IBasicProperties props = channel.CreateBasicProperties();
//If you dont mark your messages as persistent, then RabbitMQ will store them in memory. This is fine if youre just playing around or building a prototype. But if youre building a production system, then you need to make sure that your messages are persisted to disk so that theyre not lost if the server crashes.
//Говорим менеджеру RabbitMq при получении хранить сообщения на диске
props.DeliveryMode = 2;
//время жизни в мс. на этапе отладки сделаем коротким чтобы не устраивать помойку
props.Expiration = "60000";
services.InstallDalServices(hostContext.Configuration);
services.AddSingleton<ITemplatesInitializer, TemplatesInitializer>();
})
.UseSerilog((hostContext, services, config) =>
{
config
.WriteTo.Console()
.ReadFrom.Configuration(hostContext.Configuration);
})
.Build();
//host.Run();
var tempInitializer = host.Services.GetRequiredService<ITemplatesInitializer>();
await tempInitializer.InitAsync();
await host.StopAsync();
channel.BasicPublish(exchange: "",
routingKey: "parr-espp-templates",//совпадает с именем очереди иначе не принимает
basicProperties: props,
body: body);
}
}