77 lines
3.3 KiB
C#
77 lines
3.3 KiB
C#
using Microsoft.Extensions.Configuration;
|
||
using Microsoft.Extensions.Hosting;
|
||
using Microsoft.Extensions.Logging;
|
||
using Microsoft.Extensions.Options;
|
||
using Newtonsoft.Json;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Net;
|
||
using System.Net.Http;
|
||
using System.Text;
|
||
using System.Threading;
|
||
using System.Threading.Tasks;
|
||
using Yi.Framework.Common.IOCOptions;
|
||
using Yi.Framework.Common.Models;
|
||
using Yi.Framework.Core;
|
||
|
||
namespace Yi.Framework.ElasticSearchProcessor
|
||
{
|
||
public class WarmupESIndexWorker : BackgroundService
|
||
{
|
||
private readonly IConfiguration _configuration;
|
||
private readonly ILogger<WarmupESIndexWorker> _logger;
|
||
private readonly RabbitMQInvoker _RabbitMQInvoker;
|
||
private readonly ElasticSearchInvoker _elasticSearchInvoker;
|
||
private readonly IOptionsMonitor<ElasticSearchOptions> _ElasticSearchOptions = null;
|
||
|
||
public WarmupESIndexWorker(ILogger<WarmupESIndexWorker> logger, RabbitMQInvoker rabbitMQInvoker, IConfiguration configuration, ElasticSearchInvoker elasticSearchInvoker, IOptionsMonitor<ElasticSearchOptions> optionsMonitor)
|
||
{
|
||
this._logger = logger;
|
||
this._RabbitMQInvoker = rabbitMQInvoker;
|
||
this._configuration = configuration;
|
||
this._elasticSearchInvoker = elasticSearchInvoker;
|
||
this._ElasticSearchOptions = optionsMonitor;
|
||
}
|
||
|
||
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
|
||
{
|
||
RabbitMQConsumerModel rabbitMQConsumerModel = new RabbitMQConsumerModel()
|
||
{
|
||
ExchangeName = RabbitMQExchangeQueueName.SKUWarmup_Exchange,
|
||
QueueName = RabbitMQExchangeQueueName.SKUWarmup_Queue_ESIndex
|
||
};
|
||
HttpClient _HttpClient = new HttpClient();
|
||
this._RabbitMQInvoker.RegistReciveAction(rabbitMQConsumerModel, message =>
|
||
{
|
||
//SKUWarmupQueueModel skuWarmupQueueModel = JsonConvert.DeserializeObject<SKUWarmupQueueModel>(message);
|
||
//<2F><><EFBFBD>õ<EFBFBD><C3B5><EFBFBD>Ϣ<EFBFBD><CFA2><EFBFBD><EFBFBD>ģ<EFBFBD>͡<EFBFBD>
|
||
#region <EFBFBD><EFBFBD>ɾ<EFBFBD><EFBFBD>Index---<EFBFBD>½<EFBFBD>Index---<EFBFBD>ٽ<EFBFBD><EFBFBD><EFBFBD>ȫ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||
{
|
||
try
|
||
{
|
||
this._elasticSearchInvoker.DropIndex(this._ElasticSearchOptions.CurrentValue.IndexName);
|
||
//this._ISearchService.ImpDataBySpu();
|
||
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>es<65><73><EFBFBD>ݵ<EFBFBD><DDB5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||
this._logger.LogInformation($"{nameof(WarmupESIndexWorker)}.InitAll succeed");
|
||
return true;
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
var logModel = new LogModel()
|
||
{
|
||
OriginalClassName = this.GetType().FullName,
|
||
OriginalMethodName = nameof(ExecuteAsync),
|
||
Remark = "<22><>ʱ<EFBFBD><CAB1>ҵ<EFBFBD><D2B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>־"
|
||
};
|
||
this._logger.LogError(ex, $"{nameof(WarmupESIndexWorker)}.Warmup ESIndex failed message={message}, Exception:{ex.Message}", JsonConvert.SerializeObject(logModel));
|
||
return false;
|
||
}
|
||
}
|
||
#endregion
|
||
});
|
||
await Task.CompletedTask;
|
||
}
|
||
}
|
||
}
|