Commit c0538601 authored by Savorboard's avatar Savorboard Committed by GitHub

Release 2.2.2 (#121)

* fixed message enqueue exception in v2.2

* add log to samples

* Improved log output.  #114

* add default timeout configuration for kafka client.

* fixed retry processor bugs.

* Fixed kafka producer exception log without logging when publish message.

* update version num to 2.2.2

* rename configuration options FailedCallback to FailedThresholdCallback

* rename files name.

* remove unused files.

* modify the error comments.

* update samples.

* add logs.
parent bd66dc5f
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<PropertyGroup> <PropertyGroup>
<VersionMajor>2</VersionMajor> <VersionMajor>2</VersionMajor>
<VersionMinor>2</VersionMinor> <VersionMinor>2</VersionMinor>
<VersionPatch>1</VersionPatch> <VersionPatch>2</VersionPatch>
<VersionQuality></VersionQuality> <VersionQuality></VersionQuality>
<VersionPrefix>$(VersionMajor).$(VersionMinor).$(VersionPatch)</VersionPrefix> <VersionPrefix>$(VersionMajor).$(VersionMinor).$(VersionPatch)</VersionPrefix>
</PropertyGroup> </PropertyGroup>
......
...@@ -37,7 +37,7 @@ namespace Sample.Kafka.MySql.Controllers ...@@ -37,7 +37,7 @@ namespace Sample.Kafka.MySql.Controllers
[CapSubscribe("xxx.xxx.test2")] [CapSubscribe("xxx.xxx.test2")]
public void Test2(int value) public void Test2(int value)
{ {
Console.WriteLine(value); Console.WriteLine("Subscriber output message: " + value);
} }
} }
} }
\ No newline at end of file
using Microsoft.AspNetCore; using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Hosting;
using NLog.Web;
namespace Sample.Kafka.MySql namespace Sample.Kafka.MySql
{ {
...@@ -14,7 +15,11 @@ namespace Sample.Kafka.MySql ...@@ -14,7 +15,11 @@ namespace Sample.Kafka.MySql
public static IWebHost BuildWebHost(string[] args) => public static IWebHost BuildWebHost(string[] args) =>
WebHost.CreateDefaultBuilder(args) WebHost.CreateDefaultBuilder(args)
.UseStartup<Startup>() .UseStartup<Startup>()
.ConfigureLogging((hostingContext, builder) =>
{
hostingContext.HostingEnvironment.ConfigureNLog("nlog.config");
})
.UseNLog()
.Build(); .Build();
} }
} }
\ No newline at end of file
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
<ItemGroup> <ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.6" /> <PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.6" />
<PackageReference Include="MySqlConnector" Version="0.38.0" /> <PackageReference Include="MySqlConnector" Version="0.38.0" />
<PackageReference Include="NLog.Web.AspNetCore" Version="4.5.2" />
<PackageReference Include="zipkin4net" Version="1.2.0" /> <PackageReference Include="zipkin4net" Version="1.2.0" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
...@@ -20,5 +21,10 @@ ...@@ -20,5 +21,10 @@
<ProjectReference Include="..\..\src\DotNetCore.CAP.MySql\DotNetCore.CAP.MySql.csproj" /> <ProjectReference Include="..\..\src\DotNetCore.CAP.MySql\DotNetCore.CAP.MySql.csproj" />
<ProjectReference Include="..\..\src\DotNetCore.CAP\DotNetCore.CAP.csproj" /> <ProjectReference Include="..\..\src\DotNetCore.CAP\DotNetCore.CAP.csproj" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<Content Update="nlog.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project> </Project>
<?xml version="1.0" encoding="utf-8"?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
autoReload="true"
internalLogLevel="Warn"
internalLogFile="logs/internal-nlog.txt">
<variable name="myLogLayout"
value="---------------------------------------------------------------------------${newline}Date:${longdate} Level:${uppercase:${level}} User:${aspnet-user-identity}(${aspnet-request-ip}) Logger:${logger} URL:${aspnet-request-method} ${aspnet-request-url:IncludePort=true:IncludeQueryString=true} Action:${aspnet-mvc-action} ${newline}Message:${message} ${newline}${onexception:Exception:${exception:format=toString}}" />
<extensions>
<add assembly="NLog.Web.AspNetCore" />
</extensions>
<!-- define various log targets -->
<targets>
<!-- write logs to file -->
<target name="allfile" xsi:type="File" fileName="logs/cap-all-${shortdate}.log"
layout="${myLogLayout}" />
</targets>
<rules>
<!--All logs, including from Microsoft-->
<logger name="*" minlevel="Debug" writeTo="allfile" />
</rules>
</nlog>
\ No newline at end of file
using System; using Microsoft.EntityFrameworkCore;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.EntityFrameworkCore;
namespace Sample.RabbitMQ.MySql namespace Sample.RabbitMQ.MySql
{ {
...@@ -10,8 +6,7 @@ namespace Sample.RabbitMQ.MySql ...@@ -10,8 +6,7 @@ namespace Sample.RabbitMQ.MySql
{ {
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{ {
optionsBuilder.UseMySql("Server=localhost;Database=Sample.RabbitMQ.MySql;UserId=root;Password=123123;Allow User Variables=True"); optionsBuilder.UseMySql("Server=192.168.10.110;Database=testcap;UserId=root;Password=123123;");
//optionsBuilder.UseMySql("Server=192.168.2.206;Database=Sample.RabbitMQ.MySql;UserId=root;Password=123123;");
} }
} }
} }
...@@ -50,7 +50,7 @@ namespace Sample.RabbitMQ.MySql.Controllers ...@@ -50,7 +50,7 @@ namespace Sample.RabbitMQ.MySql.Controllers
[CapSubscribe("sample.rabbitmq.mysql")] [CapSubscribe("sample.rabbitmq.mysql")]
public void ReceiveMessage(DateTime time) public void ReceiveMessage(DateTime time)
{ {
Console.WriteLine("[sample.rabbitmq.mysql] message received: "+ DateTime.Now.ToString() +" , sent time: " + time.ToString()); Console.WriteLine("[sample.rabbitmq.mysql] message received: " + DateTime.Now + ",sent time: " + time);
} }
} }
} }
using System; using Microsoft.AspNetCore;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration; using NLog.Web;
namespace Sample.RabbitMQ.MySql namespace Sample.RabbitMQ.MySql
{ {
...@@ -20,6 +14,11 @@ namespace Sample.RabbitMQ.MySql ...@@ -20,6 +14,11 @@ namespace Sample.RabbitMQ.MySql
public static IWebHost BuildWebHost(string[] args) => public static IWebHost BuildWebHost(string[] args) =>
WebHost.CreateDefaultBuilder(args) WebHost.CreateDefaultBuilder(args)
.UseStartup<Startup>() .UseStartup<Startup>()
.ConfigureLogging((hostingContext, builder) =>
{
hostingContext.HostingEnvironment.ConfigureNLog("nlog.config");
})
.UseNLog()
.Build(); .Build();
} }
} }
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
<ItemGroup> <ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.6" /> <PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.6" />
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="2.0.1" /> <PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="2.0.1" />
<PackageReference Include="NLog.Web.AspNetCore" Version="4.5.2" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet" Version="2.0.0" /> <DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet" Version="2.0.0" />
...@@ -21,5 +22,10 @@ ...@@ -21,5 +22,10 @@
<ProjectReference Include="..\..\src\DotNetCore.CAP.RabbitMQ\DotNetCore.CAP.RabbitMQ.csproj" /> <ProjectReference Include="..\..\src\DotNetCore.CAP.RabbitMQ\DotNetCore.CAP.RabbitMQ.csproj" />
<ProjectReference Include="..\..\src\DotNetCore.CAP\DotNetCore.CAP.csproj" /> <ProjectReference Include="..\..\src\DotNetCore.CAP\DotNetCore.CAP.csproj" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<Content Update="nlog.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project> </Project>
<?xml version="1.0" encoding="utf-8"?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
autoReload="true"
internalLogLevel="Warn"
internalLogFile="logs/internal-nlog.txt">
<variable name="myLogLayout"
value="---------------------------------------------------------------------------${newline}Date:${longdate} Level:${uppercase:${level}} User:${aspnet-user-identity}(${aspnet-request-ip}) Logger:${logger} URL:${aspnet-request-method} ${aspnet-request-url:IncludePort=true:IncludeQueryString=true} Action:${aspnet-mvc-action} ${newline}Message:${message} ${newline}${onexception:Exception:${exception:format=toString}}" />
<extensions>
<add assembly="NLog.Web.AspNetCore" />
</extensions>
<!-- define various log targets -->
<targets>
<!-- write logs to file -->
<target name="allfile" xsi:type="File" fileName="logs/cap-all-${shortdate}.log"
layout="${myLogLayout}" />
</targets>
<rules>
<!--All logs, including from Microsoft-->
<logger name="*" minlevel="Debug" writeTo="allfile" />
</rules>
</nlog>
\ No newline at end of file
...@@ -57,6 +57,8 @@ namespace DotNetCore.CAP ...@@ -57,6 +57,8 @@ namespace DotNetCore.CAP
MainConfig["socket.blocking.max.ms"] = "10"; MainConfig["socket.blocking.max.ms"] = "10";
MainConfig["enable.auto.commit"] = "false"; MainConfig["enable.auto.commit"] = "false";
MainConfig["log.connection.close"] = "false"; MainConfig["log.connection.close"] = "false";
MainConfig["request.timeout.ms"] = "3000";
MainConfig["message.timeout.ms"] = "5000";
_kafkaConfig = MainConfig.AsEnumerable(); _kafkaConfig = MainConfig.AsEnumerable();
} }
......
...@@ -36,11 +36,7 @@ namespace DotNetCore.CAP.Kafka ...@@ -36,11 +36,7 @@ namespace DotNetCore.CAP.Kafka
if (message.Error.HasError) if (message.Error.HasError)
{ {
return OperateResult.Failed(new OperateError throw new PublisherSentFailedException(message.Error.ToString());
{
Code = message.Error.Code.ToString(),
Description = message.Error.Reason
});
} }
_logger.LogDebug($"kafka topic message [{keyName}] has been published."); _logger.LogDebug($"kafka topic message [{keyName}] has been published.");
......
...@@ -132,7 +132,7 @@ namespace DotNetCore.CAP.Abstractions ...@@ -132,7 +132,7 @@ namespace DotNetCore.CAP.Abstractions
{ {
throw new InvalidOperationException( throw new InvalidOperationException(
"If you are using the EntityFramework, you need to configure the DbContextType first." + "If you are using the EntityFramework, you need to configure the DbContextType first." +
" otherwise you need to use overloaded method with IDbConnection and IDbTransaction."); " otherwise you need to use overloaded method with IDbTransaction.");
} }
} }
......
...@@ -58,9 +58,9 @@ namespace DotNetCore.CAP ...@@ -58,9 +58,9 @@ namespace DotNetCore.CAP
public int FailedRetryInterval { get; set; } public int FailedRetryInterval { get; set; }
/// <summary> /// <summary>
/// We’ll invoke this call-back with message type,name,content when requeue failed message. /// We’ll invoke this call-back with message type,name,content when retry failed (send or executed) messages equals <see cref="FailedRetryCount"/> times.
/// </summary> /// </summary>
public Action<MessageType, string, string> FailedCallback { get; set; } public Action<MessageType, string, string> FailedThresholdCallback { get; set; }
/// <summary> /// <summary>
/// The number of message retries, the retry will stop when the threshold is reached. /// The number of message retries, the retry will stop when the threshold is reached.
......
...@@ -15,7 +15,7 @@ namespace DotNetCore.CAP ...@@ -15,7 +15,7 @@ namespace DotNetCore.CAP
/// (EntityFramework) Asynchronous publish a object message. /// (EntityFramework) Asynchronous publish a object message.
/// <para> /// <para>
/// If you are using the EntityFramework, you need to configure the DbContextType first. /// If you are using the EntityFramework, you need to configure the DbContextType first.
/// otherwise you need to use overloaded method with IDbConnection and IDbTransaction. /// otherwise you need to use overloaded method with IDbTransaction.
/// </para> /// </para>
/// </summary> /// </summary>
/// <typeparam name="T">The type of content object.</typeparam> /// <typeparam name="T">The type of content object.</typeparam>
...@@ -28,7 +28,7 @@ namespace DotNetCore.CAP ...@@ -28,7 +28,7 @@ namespace DotNetCore.CAP
/// (EntityFramework) Publish a object message. /// (EntityFramework) Publish a object message.
/// <para> /// <para>
/// If you are using the EntityFramework, you need to configure the DbContextType first. /// If you are using the EntityFramework, you need to configure the DbContextType first.
/// otherwise you need to use overloaded method with IDbConnection and IDbTransaction. /// otherwise you need to use overloaded method with IDbTransaction.
/// </para> /// </para>
/// </summary> /// </summary>
/// <typeparam name="T">The type of content object.</typeparam> /// <typeparam name="T">The type of content object.</typeparam>
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
namespace DotNetCore.CAP namespace DotNetCore.CAP
{ {
/// <summary> /// <summary>
/// An empty interface, which is used to mark the current class have a CAP methods. /// An empty interface, which is used to mark the current class have a CAP subscriber methods.
/// </summary> /// </summary>
public interface ICapSubscribe public interface ICapSubscribe
{ {
......
...@@ -178,6 +178,8 @@ namespace DotNetCore.CAP ...@@ -178,6 +178,8 @@ namespace DotNetCore.CAP
private (Guid, string) TracingBefore(string topic, string values) private (Guid, string) TracingBefore(string topic, string values)
{ {
_logger.LogDebug("CAP received topic message:" + topic);
Guid operationId = Guid.NewGuid(); Guid operationId = Guid.NewGuid();
var eventData = new BrokerConsumeEventData( var eventData = new BrokerConsumeEventData(
......
// Copyright (c) .NET Core Community. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
using System;
using DotNetCore.CAP.Models;
namespace DotNetCore.CAP
{
public interface IFetchedMessage : IDisposable
{
int MessageId { get; }
MessageType MessageType { get; }
void RemoveFromQueue();
void Requeue();
}
}
\ No newline at end of file
...@@ -67,15 +67,13 @@ namespace DotNetCore.CAP ...@@ -67,15 +67,13 @@ namespace DotNetCore.CAP
} }
else else
{ {
TracingError(operationId, message.Name, sendValues, result.Exception, startTime, stopwatch.Elapsed); TracingError(operationId, message, result, startTime, stopwatch.Elapsed);
_logger.MessagePublishException(message.Id, result.Exception);
await SetFailedState(message, result.Exception, out bool stillRetry); await SetFailedState(message, result.Exception, out bool stillRetry);
if (stillRetry) if (stillRetry)
{ {
_logger.SenderRetrying(3); _logger.SenderRetrying(message.Id, message.Retries);
await SendAsync(message); await SendAsync(message);
} }
...@@ -109,21 +107,12 @@ namespace DotNetCore.CAP ...@@ -109,21 +107,12 @@ namespace DotNetCore.CAP
private Task SetFailedState(CapPublishedMessage message, Exception ex, out bool stillRetry) private Task SetFailedState(CapPublishedMessage message, Exception ex, out bool stillRetry)
{ {
IState newState = new FailedState(); IState newState = new FailedState();
if (ex is PublisherSentFailedException)
{
stillRetry = false;
message.Retries = _options.FailedRetryCount; // not retry if PublisherSentFailedException
}
else
{
stillRetry = UpdateMessageForRetryAsync(message); stillRetry = UpdateMessageForRetryAsync(message);
if (stillRetry) if (stillRetry)
{ {
_logger.ConsumerExecutionFailedWillRetry(ex); _logger.ConsumerExecutionFailedWillRetry(ex);
return Task.CompletedTask; return Task.CompletedTask;
} }
}
AddErrorReasonToContent(message, ex); AddErrorReasonToContent(message, ex);
...@@ -166,14 +155,18 @@ namespace DotNetCore.CAP ...@@ -166,14 +155,18 @@ namespace DotNetCore.CAP
_logger.MessageHasBeenSent(du.TotalSeconds); _logger.MessageHasBeenSent(du.TotalSeconds);
} }
private void TracingError(Guid operationId, string topic, string values, Exception ex, DateTimeOffset startTime, TimeSpan du) private void TracingError(Guid operationId, CapPublishedMessage message, OperateResult result, DateTimeOffset startTime, TimeSpan du)
{ {
var ex = new PublisherSentFailedException(result.ToString(), result.Exception);
_logger.MessagePublishException(message.Id, result.ToString(), ex);
var eventData = new BrokerPublishErrorEventData( var eventData = new BrokerPublishErrorEventData(
operationId, operationId,
"", "",
ServersAddress, ServersAddress,
topic, message.Name,
values, message.Content,
ex, ex,
startTime, startTime,
du); du);
......
...@@ -86,7 +86,6 @@ namespace DotNetCore.CAP.Infrastructure ...@@ -86,7 +86,6 @@ namespace DotNetCore.CAP.Infrastructure
return !CanConvertFromString(type); return !CanConvertFromString(type);
} }
public static string AddExceptionProperty(string json, Exception exception) public static string AddExceptionProperty(string json, Exception exception)
{ {
var jObject = ToJObject(exception); var jObject = ToJObject(exception);
......
...@@ -7,6 +7,10 @@ namespace DotNetCore.CAP.Internal ...@@ -7,6 +7,10 @@ namespace DotNetCore.CAP.Internal
{ {
public class PublisherSentFailedException : Exception public class PublisherSentFailedException : Exception
{ {
public PublisherSentFailedException(string message) : base(message)
{
}
public PublisherSentFailedException(string message, Exception ex) : base(message, ex) public PublisherSentFailedException(string message, Exception ex) : base(message, ex)
{ {
} }
......
...@@ -17,10 +17,10 @@ namespace DotNetCore.CAP ...@@ -17,10 +17,10 @@ namespace DotNetCore.CAP
private static readonly Action<ILogger, string, string, string, Exception> _modelBinderFormattingException; private static readonly Action<ILogger, string, string, string, Exception> _modelBinderFormattingException;
private static readonly Action<ILogger, Exception> _consumerFailedWillRetry; private static readonly Action<ILogger, Exception> _consumerFailedWillRetry;
private static readonly Action<ILogger, double, Exception> _consumerExecuted; private static readonly Action<ILogger, double, Exception> _consumerExecuted;
private static readonly Action<ILogger, int, Exception> _senderRetrying; private static readonly Action<ILogger, int, int, Exception> _senderRetrying;
private static readonly Action<ILogger, string, Exception> _exceptionOccuredWhileExecuting; private static readonly Action<ILogger, string, Exception> _exceptionOccuredWhileExecuting;
private static readonly Action<ILogger, double, Exception> _messageHasBeenSent; private static readonly Action<ILogger, double, Exception> _messageHasBeenSent;
private static readonly Action<ILogger, int, Exception> _messagePublishException; private static readonly Action<ILogger, int, string, Exception> _messagePublishException;
static LoggerExtensions() static LoggerExtensions()
{ {
...@@ -60,10 +60,10 @@ namespace DotNetCore.CAP ...@@ -60,10 +60,10 @@ namespace DotNetCore.CAP
"When call subscribe method, a parameter format conversion exception occurs. MethodName:'{MethodName}' ParameterName:'{ParameterName}' Content:'{Content}'." "When call subscribe method, a parameter format conversion exception occurs. MethodName:'{MethodName}' ParameterName:'{ParameterName}' Content:'{Content}'."
); );
_senderRetrying = LoggerMessage.Define<int>( _senderRetrying = LoggerMessage.Define<int, int>(
LogLevel.Debug, LogLevel.Debug,
3, 3,
"Retrying send a message: {Retries}..."); "The {Retries}th retrying send a message failed. message id: {MessageId} ");
_consumerExecuted = LoggerMessage.Define<double>( _consumerExecuted = LoggerMessage.Define<double>(
LogLevel.Debug, LogLevel.Debug,
...@@ -78,17 +78,17 @@ namespace DotNetCore.CAP ...@@ -78,17 +78,17 @@ namespace DotNetCore.CAP
_exceptionOccuredWhileExecuting = LoggerMessage.Define<string>( _exceptionOccuredWhileExecuting = LoggerMessage.Define<string>(
LogLevel.Error, LogLevel.Error,
6, 6,
"An exception occured while trying to store a message: '{MessageId}'. "); "An exception occured while trying to store a message. message id: {MessageId}");
_messageHasBeenSent = LoggerMessage.Define<double>( _messageHasBeenSent = LoggerMessage.Define<double>(
LogLevel.Debug, LogLevel.Debug,
4, 4,
"Message published. Took: {Seconds} secs."); "Message published. Took: {Seconds} secs.");
_messagePublishException = LoggerMessage.Define<int>( _messagePublishException = LoggerMessage.Define<int, string>(
LogLevel.Error, LogLevel.Error,
6, 6,
"An exception occured while publishing a message: '{MessageId}'. "); "An exception occured while publishing a message, reason:{Reason}. message id:{MessageId}");
} }
public static void ConsumerExecutionFailedWillRetry(this ILogger logger, Exception ex) public static void ConsumerExecutionFailedWillRetry(this ILogger logger, Exception ex)
...@@ -96,9 +96,9 @@ namespace DotNetCore.CAP ...@@ -96,9 +96,9 @@ namespace DotNetCore.CAP
_consumerFailedWillRetry(logger, ex); _consumerFailedWillRetry(logger, ex);
} }
public static void SenderRetrying(this ILogger logger, int retries) public static void SenderRetrying(this ILogger logger, int messageId, int retries)
{ {
_senderRetrying(logger, retries, null); _senderRetrying(logger, messageId, retries, null);
} }
public static void MessageHasBeenSent(this ILogger logger, double seconds) public static void MessageHasBeenSent(this ILogger logger, double seconds)
...@@ -106,9 +106,9 @@ namespace DotNetCore.CAP ...@@ -106,9 +106,9 @@ namespace DotNetCore.CAP
_messageHasBeenSent(logger, seconds, null); _messageHasBeenSent(logger, seconds, null);
} }
public static void MessagePublishException(this ILogger logger, int messageId, Exception ex) public static void MessagePublishException(this ILogger logger, int messageId, string reason, Exception ex)
{ {
_messagePublishException(logger, messageId, ex); _messagePublishException(logger, messageId, reason, ex);
} }
public static void ConsumerExecuted(this ILogger logger, double seconds) public static void ConsumerExecuted(this ILogger logger, double seconds)
......
...@@ -65,11 +65,36 @@ namespace DotNetCore.CAP.Processor ...@@ -65,11 +65,36 @@ namespace DotNetCore.CAP.Processor
continue; continue;
} }
using (var transaction = connection.CreateTransaction())
{
var result = await _publishExecutor.PublishAsync(message.Name, message.Content);
if (result.Succeeded)
{
_stateChanger.ChangeState(message, new SucceededState(), transaction);
_logger.LogInformation("The message was sent successfully during the retry. MessageId:" + message.Id);
}
else
{
message.Content = Helper.AddExceptionProperty(message.Content, result.Exception);
message.Retries++;
if (message.StatusName == StatusName.Scheduled)
{
message.ExpiresAt = GetDueTime(message.Added, message.Retries);
message.StatusName = StatusName.Failed;
}
transaction.UpdateMessage(message);
if (message.Retries >= _options.FailedRetryCount)
{
_logger.LogError($"The message still sent failed after {_options.FailedRetryCount} retries. We will stop retrying the message. " +
"MessageId:" + message.Id);
if (message.Retries == _options.FailedRetryCount)
{
if (!hasException) if (!hasException)
{ {
try try
{ {
_options.FailedCallback?.Invoke(MessageType.Publish, message.Name, message.Content); _options.FailedThresholdCallback?.Invoke(MessageType.Publish, message.Name, message.Content);
} }
catch (Exception ex) catch (Exception ex)
{ {
...@@ -77,21 +102,9 @@ namespace DotNetCore.CAP.Processor ...@@ -77,21 +102,9 @@ namespace DotNetCore.CAP.Processor
_logger.LogWarning("Failed call-back method raised an exception:" + ex.Message); _logger.LogWarning("Failed call-back method raised an exception:" + ex.Message);
} }
} }
using (var transaction = connection.CreateTransaction())
{
try
{
await _publishExecutor.PublishAsync(message.Name, message.Content);
_stateChanger.ChangeState(message, new SucceededState(), transaction);
} }
catch (Exception e)
{
message.Content = Helper.AddExceptionProperty(message.Content, e);
transaction.UpdateMessage(message);
} }
}
await transaction.CommitAsync(); await transaction.CommitAsync();
} }
...@@ -113,11 +126,37 @@ namespace DotNetCore.CAP.Processor ...@@ -113,11 +126,37 @@ namespace DotNetCore.CAP.Processor
continue; continue;
} }
using (var transaction = connection.CreateTransaction())
{
var result = await _subscriberExecutor.ExecuteAsync(message);
if (result.Succeeded)
{
_stateChanger.ChangeState(message, new SucceededState(), transaction);
_logger.LogInformation("The message was execute successfully during the retry. MessageId:" + message.Id);
}
else
{
message.Content = Helper.AddExceptionProperty(message.Content, result.Exception);
message.Retries++;
if (message.StatusName == StatusName.Scheduled)
{
message.ExpiresAt = GetDueTime(message.Added, message.Retries);
message.StatusName = StatusName.Failed;
}
transaction.UpdateMessage(message);
if (message.Retries >= _options.FailedRetryCount)
{
_logger.LogError($"[Subscriber]The message still executed failed after {_options.FailedRetryCount} retries. " +
"We will stop retrying to execute the message. message id:" + message.Id);
if (message.Retries == _options.FailedRetryCount)
{
if (!hasException) if (!hasException)
{ {
try try
{ {
_options.FailedCallback?.Invoke(MessageType.Subscribe, message.Name, message.Content); _options.FailedThresholdCallback?.Invoke(MessageType.Subscribe, message.Name, message.Content);
} }
catch (Exception ex) catch (Exception ex)
{ {
...@@ -125,13 +164,22 @@ namespace DotNetCore.CAP.Processor ...@@ -125,13 +164,22 @@ namespace DotNetCore.CAP.Processor
_logger.LogWarning("Failed call-back method raised an exception:" + ex.Message); _logger.LogWarning("Failed call-back method raised an exception:" + ex.Message);
} }
} }
}
await _subscriberExecutor.ExecuteAsync(message); }
}
await transaction.CommitAsync();
}
context.ThrowIfStopping(); context.ThrowIfStopping();
await context.WaitAsync(_delay); await context.WaitAsync(_delay);
} }
} }
public DateTime GetDueTime(DateTime addedTime, int retries)
{
var retryBehavior = RetryBehavior.DefaultRetry;
return addedTime.AddSeconds(retryBehavior.RetryIn(retries));
}
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment