From 22fd0f8c67fba0eb416325612eca4f40094c5c94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=86=9B?= <510423039@qq.com> Date: Fri, 3 Sep 2021 15:53:32 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20=E6=B7=BB=E5=8A=A0=E5=AE=A1?= =?UTF-8?q?=E8=AE=A1=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Customs/Dtos/PagingBase.cs | 9 +- ...DictionaryManagementDataSeedContributor.cs | 1 + .../AuditLogs/GetAuditLogPageListOutput.cs | 150 +- .../AuditLogs/AuditLogAppService.cs | 8 +- .../Logs/logs.txt | 32693 ++++++++++++++++ .../ProjectNameHttpApiHostModule.cs | 2 +- .../Controllers/Systems/AuditLogController.cs | 4 +- vben271/src/router/routes/modules/admin.ts | 10 + vben271/src/settings/componentSetting.ts | 4 +- vben271/src/views/admin/auditLog/AuditLog.ts | 75 + vben271/src/views/admin/auditLog/AuditLog.vue | 47 + 11 files changed, 32874 insertions(+), 129 deletions(-) create mode 100644 vben271/src/views/admin/auditLog/AuditLog.ts create mode 100644 vben271/src/views/admin/auditLog/AuditLog.vue diff --git a/aspnet-core/frameworks/Extensions/src/CompanyName.ProjectName.Extensions/Customs/Dtos/PagingBase.cs b/aspnet-core/frameworks/Extensions/src/CompanyName.ProjectName.Extensions/Customs/Dtos/PagingBase.cs index 89ce457b..bc4b1ed3 100644 --- a/aspnet-core/frameworks/Extensions/src/CompanyName.ProjectName.Extensions/Customs/Dtos/PagingBase.cs +++ b/aspnet-core/frameworks/Extensions/src/CompanyName.ProjectName.Extensions/Customs/Dtos/PagingBase.cs @@ -27,15 +27,10 @@ namespace CompanyName.ProjectName.Extensions.Customs /// public int SkipCount => (PageIndex - 1) * PageSize; - public PagingBase() + protected PagingBase() { } - - /// - /// 实例化 对象 - /// - /// 当前页面 - /// 每页多少条 + public PagingBase(int pageIndex = 1, int pageSize = 10) { PageIndex = pageIndex; diff --git a/aspnet-core/modules/DataDictionaryManagement/test/CompanyName.ProjectName.DataDictionaryManagement.TestBase/DataDictionaryManagementDataSeedContributor.cs b/aspnet-core/modules/DataDictionaryManagement/test/CompanyName.ProjectName.DataDictionaryManagement.TestBase/DataDictionaryManagementDataSeedContributor.cs index 5a4642c9..410fde09 100644 --- a/aspnet-core/modules/DataDictionaryManagement/test/CompanyName.ProjectName.DataDictionaryManagement.TestBase/DataDictionaryManagementDataSeedContributor.cs +++ b/aspnet-core/modules/DataDictionaryManagement/test/CompanyName.ProjectName.DataDictionaryManagement.TestBase/DataDictionaryManagementDataSeedContributor.cs @@ -27,6 +27,7 @@ namespace CompanyName.ProjectName.DataDictionaryManagement /* Instead of returning the Task.CompletedTask, you can insert your test data * at this point! */ + await Task.CompletedTask; } } } \ No newline at end of file diff --git a/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/AuditLogs/GetAuditLogPageListOutput.cs b/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/AuditLogs/GetAuditLogPageListOutput.cs index 3832d610..74ffa040 100644 --- a/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/AuditLogs/GetAuditLogPageListOutput.cs +++ b/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/AuditLogs/GetAuditLogPageListOutput.cs @@ -4,118 +4,42 @@ namespace CompanyName.ProjectName.AuditLogs { public class GetAuditLogPageListOutput { - public string ApplicationName - { - get; - set; - } - - public Guid? UserId - { - get; - set; - } - - public string UserName - { - get; - set; - } - - public Guid? TenantId - { - get; - set; - } - - public string TenantName - { - get; - set; - } - - public Guid? ImpersonatorUserId - { - get; - set; - } - - public Guid? ImpersonatorTenantId - { - get; - set; - } - - public virtual DateTime ExecutionTime - { - get; - set; - } - - public int ExecutionDuration - { - get; - set; - } - - public string ClientIpAddress - { - get; - set; - } - - public string ClientName - { - get; - set; - } - - public string ClientId - { - get; - set; - } - - public string CorrelationId - { - get; - set; - } - - public string BrowserInfo - { - get; - set; - } - - public string HttpMethod - { - get; - set; - } - - public string Url - { - get; - set; - } - - public string Exceptions - { - get; - set; - } - - public string Comments - { - get; - set; - } - - public int? HttpStatusCode - { - get; - set; - } + public string ApplicationName { get; set; } + + public Guid? UserId { get; set; } + + public string UserName { get; set; } + + public Guid? TenantId { get; set; } + + public string TenantName { get; set; } + + public Guid? ImpersonatorUserId { get; set; } + + public Guid? ImpersonatorTenantId { get; set; } + + public DateTime ExecutionTime { get; set; } + + public int ExecutionDuration { get; set; } + + public string ClientIpAddress { get; set; } + + public string ClientName { get; set; } + + public string ClientId { get; set; } + + public string CorrelationId { get; set; } + + public string BrowserInfo { get; set; } + + public string HttpMethod { get; set; } + + public string Url { get; set; } + + public string Exceptions { get; set; } + + public string Comments { get; set; } + + public int? HttpStatusCode { get; set; } } } \ No newline at end of file diff --git a/aspnet-core/services/src/CompanyName.ProjectName.Application/AuditLogs/AuditLogAppService.cs b/aspnet-core/services/src/CompanyName.ProjectName.Application/AuditLogs/AuditLogAppService.cs index 04431c2a..60e86d4e 100644 --- a/aspnet-core/services/src/CompanyName.ProjectName.Application/AuditLogs/AuditLogAppService.cs +++ b/aspnet-core/services/src/CompanyName.ProjectName.Application/AuditLogs/AuditLogAppService.cs @@ -25,8 +25,8 @@ namespace CompanyName.ProjectName.AuditLogs input.Sorting, input.PageSize, input.SkipCount, - input.StartTime, - input.EndTime, + input.StartTime?.Date, + input.EndTime?.Date, input.HttpMethod, input.Url, null, @@ -38,8 +38,8 @@ namespace CompanyName.ProjectName.AuditLogs input.HasException, input.HttpStatusCode); var totalCount = await _auditLogRepository.GetCountAsync( - input.StartTime, - input.EndTime, + input.StartTime?.Date, + input.EndTime?.Date, input.HttpMethod, input.Url, null, diff --git a/aspnet-core/services/src/CompanyName.ProjectName.HttpApi.Host/Logs/logs.txt b/aspnet-core/services/src/CompanyName.ProjectName.HttpApi.Host/Logs/logs.txt index 4879756f..e60b0e8d 100644 --- a/aspnet-core/services/src/CompanyName.ProjectName.HttpApi.Host/Logs/logs.txt +++ b/aspnet-core/services/src/CompanyName.ProjectName.HttpApi.Host/Logs/logs.txt @@ -81270,3 +81270,32696 @@ MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before t at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) 2021-09-03 11:07:06.202 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 11:07:29.190 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:07:29.190 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 11:07:30.024 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:07:48.561 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:00:25 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:07:48.561 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:00:25... +2021-09-03 11:07:54.205 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:07:54.206 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 11:08:00.046 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:08:21.190 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:08:21.190 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 11:08:30.080 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:08:43.896 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:00:36 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:08:43.896 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:00:36... +2021-09-03 11:08:50.170 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:08:50.170 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 11:08:59.816 +08:00 [INF] 2 servers were removed due to timeout +2021-09-03 11:08:59.858 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 11:09:00.097 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:09:21.172 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:09:21.172 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 11:09:30.109 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:09:50.233 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:00:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:09:50.233 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:00:49... +2021-09-03 11:09:54.173 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:09:54.173 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 11:10:00.128 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:10:05.641 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:10:05.641 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 11:10:05.645 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:10:05.645 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 11:10:05.649 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:10:05.649 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 11:10:30.143 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:10:36.730 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:10:36.730 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 11:10:39.456 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:10:39.456 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 11:10:44.442 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:10:44.443 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 11:10:51.433 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:10:51.433 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 11:11:00.164 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:11:00.426 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:11:00.426 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 11:11:09.757 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:01:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:11:09.758 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:01:04... +2021-09-03 11:11:18.764 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:11:18.764 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 11:11:24.417 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:11:24.417 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 11:11:30.203 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:11:46.439 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:11:46.439 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 11:11:56.464 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:11:56.464 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 11:12:00.230 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:12:15.454 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:12:15.455 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 11:12:30.262 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:12:36.467 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:12:36.467 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 11:12:44.079 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:01:21 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:12:44.080 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:01:21... +2021-09-03 11:12:59.453 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:12:59.453 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 11:13:00.281 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:13:24.454 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:13:24.454 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 11:13:30.299 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:13:51.526 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:13:51.526 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 11:13:59.879 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 11:14:00.331 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:14:20.438 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:14:20.438 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 11:14:30.364 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:14:35.408 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:01:40 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:14:35.408 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:01:40... +2021-09-03 11:14:51.406 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:14:51.406 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 11:15:00.375 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:15:24.428 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:15:24.428 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 11:15:30.391 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:15:36.373 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:15:36.373 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 11:15:36.378 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:15:36.378 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 11:15:36.382 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:15:36.382 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 11:16:00.401 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:16:07.046 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:16:07.046 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 11:16:09.693 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:16:09.693 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 11:16:14.679 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:16:14.680 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 11:16:21.680 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:16:21.680 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 11:16:30.488 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:16:30.660 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:16:30.660 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 11:16:45.717 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:02:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:16:45.717 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:02:01... +2021-09-03 11:16:49.016 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:16:49.016 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 11:16:54.650 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:16:54.650 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 11:17:00.502 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:17:16.691 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:17:16.691 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 11:17:26.705 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:17:26.705 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 11:17:30.517 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:17:45.723 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:17:45.723 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 11:18:00.549 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:18:06.674 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:18:06.674 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 11:18:29.694 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:18:29.694 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 11:18:30.555 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:18:54.667 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:18:54.667 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 11:18:59.857 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 11:19:00.566 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:19:17.036 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:02:24 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:19:17.036 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:02:24... +2021-09-03 11:19:21.782 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:19:21.782 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 11:19:30.603 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:19:50.678 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:19:50.678 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 11:20:00.619 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:20:21.640 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:20:21.640 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 11:20:30.652 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:20:54.669 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:20:54.669 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 11:21:00.669 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:21:07.135 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:21:07.135 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 11:21:07.138 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:21:07.138 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 11:21:07.140 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:21:07.140 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 11:21:30.696 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:21:37.320 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:21:37.320 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 11:21:39.937 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:21:39.937 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 11:21:44.941 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:21:44.941 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 11:21:51.924 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:21:51.924 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 11:22:00.775 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:22:00.890 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:22:00.890 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 11:22:11.368 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:02:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:22:11.368 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:02:49... +2021-09-03 11:22:19.266 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:22:19.266 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 11:22:24.893 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:22:24.893 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 11:22:30.794 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:22:46.938 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:22:46.939 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 11:22:56.967 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:22:56.967 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 11:23:00.816 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:23:15.991 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:23:15.992 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 11:23:30.840 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:23:36.958 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:23:36.958 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 11:23:59.855 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 11:23:59.935 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:23:59.935 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 11:24:00.849 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:24:24.948 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:24:24.948 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 11:24:30.873 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:24:52.053 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:24:52.053 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 11:25:00.909 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:25:20.946 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:25:20.947 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 11:25:30.722 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:03:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:25:30.722 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:03:16... +2021-09-03 11:25:30.925 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:25:51.896 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:25:51.897 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 11:26:00.958 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:26:24.929 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:26:24.929 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 11:26:30.975 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:26:37.861 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:26:37.861 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 11:26:37.864 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:26:37.864 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 11:26:37.866 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:26:37.867 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 11:27:00.998 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:27:07.580 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:27:07.580 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 11:27:10.194 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:27:10.194 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 11:27:15.217 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:27:15.217 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 11:27:22.197 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:27:22.198 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 11:27:31.061 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:27:31.138 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:27:31.138 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 11:27:49.522 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:27:49.523 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 11:27:55.157 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:27:55.157 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 11:28:01.080 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:28:17.202 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:28:17.202 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 11:28:27.236 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:28:27.236 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 11:28:31.105 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:28:46.272 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:28:46.272 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 11:28:59.947 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 11:29:01.149 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:29:07.220 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:29:07.220 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 11:29:17.041 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:03:45 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:29:17.041 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:03:45... +2021-09-03 11:29:30.202 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:29:30.202 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 11:29:31.182 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:29:55.199 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:29:55.199 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 11:30:01.202 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:30:22.323 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:30:22.323 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 11:30:31.232 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:30:51.207 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:30:51.207 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 11:31:01.255 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:31:22.153 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:31:22.153 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 11:31:31.279 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:31:55.168 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:31:55.168 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 11:32:01.296 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:32:08.560 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:32:08.561 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 11:32:08.567 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:32:08.568 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 11:32:08.568 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:32:08.568 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 11:32:31.313 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:32:37.808 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:32:37.808 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 11:32:40.436 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:32:40.436 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 11:32:45.462 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:32:45.462 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 11:32:52.449 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:32:52.450 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 11:33:01.366 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:33:01.370 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:33:01.370 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 11:33:19.799 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:33:19.799 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 11:33:25.403 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:33:25.403 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 11:33:31.375 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:33:32.350 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:04:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:33:32.350 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:04:16... +2021-09-03 11:33:47.454 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:33:47.454 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 11:33:57.457 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:33:57.457 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 11:33:59.935 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 11:34:01.394 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:34:16.504 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:34:16.504 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 11:34:31.422 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:34:37.463 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:34:37.463 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 11:35:00.460 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:35:00.460 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 11:35:01.437 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:35:25.414 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:35:25.414 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 11:35:31.445 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:35:52.570 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:35:52.570 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 11:36:01.464 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:36:22.457 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:36:22.457 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 11:36:31.511 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:36:52.551 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:36:52.551 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 11:37:01.551 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:37:25.412 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:37:25.413 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 11:37:31.572 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:37:39.272 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:37:39.273 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 11:37:39.295 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:37:39.295 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 11:37:39.297 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:37:39.297 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 11:38:01.593 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:38:08.036 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:38:08.036 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 11:38:10.675 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:38:10.675 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 11:38:15.688 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:38:15.688 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 11:38:18.666 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:04:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:38:18.666 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:04:49... +2021-09-03 11:38:22.684 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:38:22.684 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 11:38:31.609 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:38:31.609 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 11:38:31.610 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:38:50.033 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:38:50.033 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 11:38:55.634 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:38:55.634 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 11:38:59.922 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 11:39:01.622 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:39:17.714 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:39:17.714 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 11:39:27.688 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:39:27.688 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 11:39:31.652 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:39:46.741 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:39:46.741 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 11:40:01.682 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:40:07.723 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:40:07.723 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 11:40:30.725 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:40:30.725 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 11:40:31.689 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:40:55.674 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:40:55.674 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 11:41:01.707 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:41:22.839 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:41:22.840 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 11:41:31.743 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:41:52.732 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:41:52.732 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 11:42:01.777 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:42:22.832 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:42:22.832 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 11:42:31.808 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:42:55.670 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:42:55.670 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 11:43:01.823 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:43:09.536 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:43:09.536 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 11:43:10.041 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:43:10.041 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 11:43:10.046 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:43:10.046 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 11:43:31.841 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:43:38.004 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:43:38.005 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 11:43:38.320 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:43:38.320 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 11:43:40.931 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:43:40.931 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 11:43:45.937 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:43:45.937 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 11:43:52.933 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:43:52.933 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 11:43:59.936 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 11:44:01.869 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:44:01.869 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 11:44:01.881 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:44:20.296 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:44:20.296 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 11:44:25.876 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:44:25.876 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 11:44:31.908 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:44:48.012 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:44:48.012 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 11:44:57.988 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:44:57.988 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 11:45:01.930 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:45:17.015 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:45:17.015 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 11:45:31.963 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:45:38.038 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:45:38.038 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 11:46:00.983 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:46:00.984 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 11:46:01.978 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:46:25.963 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:46:25.963 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 11:46:31.996 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:46:53.102 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:46:53.102 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 11:47:02.013 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:47:23.022 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:47:23.022 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 11:47:32.029 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:47:53.103 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:47:53.103 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 11:48:02.047 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:48:25.920 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:48:25.920 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 11:48:32.069 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:48:39.823 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:48:39.823 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 11:48:40.536 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:48:40.536 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 11:48:40.540 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:48:40.540 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 11:48:59.955 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 11:49:02.092 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:49:08.340 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:49:08.340 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 11:49:08.609 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:49:08.609 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 11:49:11.197 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:49:11.198 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 11:49:16.223 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:49:16.223 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 11:49:23.185 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:49:23.185 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 11:49:32.141 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:49:32.145 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:49:32.145 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 11:49:50.561 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:49:50.561 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 11:49:56.193 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:49:56.193 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 11:50:02.165 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:50:18.299 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:50:18.299 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 11:50:28.282 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:50:28.282 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 11:50:32.175 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:50:47.286 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:50:47.286 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 11:51:02.195 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:51:08.305 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:51:08.305 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 11:51:31.239 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:51:31.239 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 11:51:32.213 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:51:56.219 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:51:56.219 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 11:52:02.252 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:52:23.352 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:52:23.352 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 11:52:32.284 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:52:53.295 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:52:53.295 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 11:53:02.311 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:53:23.359 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:53:23.359 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 11:53:32.335 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:53:56.174 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:53:56.174 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 11:53:59.961 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 11:54:02.373 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:54:10.091 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:54:10.091 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 11:54:11.032 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:54:11.032 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 11:54:11.034 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:54:11.034 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 11:54:32.401 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:54:38.803 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:54:38.804 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 11:54:38.920 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:54:38.920 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 11:54:41.434 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:54:41.435 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 11:54:46.460 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:54:46.460 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 11:54:53.431 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:54:53.431 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 11:55:02.396 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:55:02.396 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 11:55:02.426 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:55:20.818 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:55:20.818 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 11:55:26.436 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:55:26.437 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 11:55:32.447 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:55:48.587 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:55:48.587 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 11:55:58.525 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:55:58.525 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 11:56:02.479 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:56:17.563 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:56:17.563 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 11:56:32.509 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:56:38.563 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:56:38.563 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 11:57:01.505 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:57:01.505 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 11:57:02.532 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:57:26.474 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:57:26.474 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 11:57:32.569 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:57:53.595 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:57:53.595 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 11:58:02.605 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:58:23.569 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:58:23.569 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 11:58:32.624 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:58:53.614 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:58:53.614 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 11:58:59.979 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 11:59:02.657 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:59:26.433 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:59:26.433 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 11:59:32.681 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 11:59:40.377 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:59:40.377 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 11:59:41.548 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:59:41.548 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 11:59:41.550 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 11:59:41.550 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 12:00:02.704 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:00:09.230 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:00:09.230 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 12:00:09.385 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:00:09.385 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 12:00:11.727 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:00:11.727 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 12:00:16.719 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:00:16.720 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 12:00:23.698 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:00:23.699 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 12:00:32.639 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:00:32.639 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 12:00:32.723 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:00:51.087 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:00:51.087 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 12:00:56.678 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:00:56.678 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 12:01:02.755 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:01:18.852 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:01:18.852 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 12:01:28.773 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:01:28.774 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 12:01:32.785 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:01:47.817 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:01:47.817 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 12:02:02.818 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:02:08.816 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:02:08.816 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 12:02:31.787 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:02:31.788 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 12:02:32.833 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:02:56.743 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:02:56.743 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 12:03:02.852 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:03:23.862 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:03:23.862 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 12:03:32.875 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:03:53.850 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:03:53.850 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 12:03:59.998 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 12:04:02.912 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:04:23.909 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:04:23.909 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 12:04:32.931 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:04:56.679 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:04:56.679 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 12:05:02.956 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:05:10.718 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:05:10.718 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 12:05:12.034 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:05:12.034 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 12:05:12.216 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:05:12.216 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 12:05:32.969 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:05:35.363 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-09-03 12:05:35.364 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-03 12:05:35.374 +08:00 [DBG] removed records count=1 +2021-09-03 12:05:36.380 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-03 12:05:36.399 +08:00 [DBG] removed records count=0 +2021-09-03 12:05:36.400 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-09-03 12:05:36.406 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-09-03 12:05:39.666 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:05:39.666 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 12:05:39.822 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:05:39.822 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 12:05:42.023 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:05:42.023 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 12:05:46.975 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:05:46.976 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 12:05:53.969 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:05:53.969 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 12:06:02.894 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:06:02.895 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 12:06:02.980 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:06:06.682 +08:00 [ERR] MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.ExpirationManager.<>c__DisplayClass9_1.b__0(MySqlConnection connection) +2021-09-03 12:06:06.683 +08:00 [DBG] Removing outdated records from table 'List'... +2021-09-03 12:06:06.684 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-09-03 12:06:06.690 +08:00 [DBG] removed records count=0 +2021-09-03 12:06:06.691 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-09-03 12:06:06.692 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-09-03 12:06:21.349 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:06:21.349 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 12:06:26.932 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:06:26.932 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 12:06:33.011 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:06:36.958 +08:00 [ERR] MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.ExpirationManager.<>c__DisplayClass9_1.b__0(MySqlConnection connection) +2021-09-03 12:06:36.959 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-09-03 12:06:36.960 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-09-03 12:06:49.113 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:06:49.113 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 12:06:59.040 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:06:59.040 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 12:07:03.029 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:07:07.221 +08:00 [ERR] MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.ExpirationManager.<>c__DisplayClass9_1.b__0(MySqlConnection connection) +2021-09-03 12:07:18.103 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:07:18.103 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 12:07:33.046 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:07:39.056 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:07:39.056 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 12:08:02.044 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:08:02.044 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 12:08:03.065 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:08:26.984 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:08:26.984 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 12:08:33.087 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:08:54.100 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:08:54.100 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 12:08:59.989 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 12:09:03.124 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:09:24.127 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:09:24.128 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 12:09:33.151 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:09:54.194 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:09:54.194 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 12:10:03.163 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:10:26.922 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:10:26.923 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 12:10:33.196 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:10:40.997 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:10:40.997 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 12:10:42.267 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:10:42.267 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 12:10:42.537 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:10:42.537 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 12:11:03.224 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:11:09.955 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:11:09.955 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 12:11:10.201 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:11:10.201 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 12:11:12.269 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:11:12.269 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 12:11:17.230 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:11:17.230 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 12:11:24.238 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:11:24.238 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 12:11:33.167 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:11:33.167 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 12:11:33.238 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:11:51.590 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:11:51.590 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 12:11:57.166 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:11:57.166 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 12:12:03.262 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:12:19.360 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:12:19.360 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 12:12:29.293 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:12:29.293 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 12:12:33.289 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:12:48.361 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:12:48.361 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 12:13:03.316 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:13:09.300 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:13:09.300 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 12:13:32.306 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:13:32.307 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 12:13:33.334 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:13:57.248 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:13:57.248 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 12:13:59.997 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 12:14:03.358 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:14:24.378 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:14:24.378 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 12:14:33.373 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:14:54.399 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:14:54.399 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 12:15:03.384 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:15:24.449 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:15:24.449 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 12:15:33.415 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:15:57.180 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:15:57.180 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 12:16:03.452 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:16:11.270 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:16:11.270 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 12:16:12.507 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:16:12.507 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 12:16:12.808 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:16:12.808 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 12:16:33.484 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:16:40.416 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:16:40.416 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 12:16:40.537 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:16:40.537 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 12:16:42.534 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:16:42.534 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 12:16:47.506 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:16:47.506 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 12:16:54.514 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:16:54.514 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 12:17:03.432 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:17:03.432 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 12:17:03.506 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:17:21.845 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:17:21.845 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 12:17:27.400 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:17:27.400 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 12:17:33.526 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:17:49.616 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:17:49.616 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 12:17:59.552 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:17:59.552 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 12:18:03.554 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:18:18.624 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:18:18.625 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 12:18:33.592 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:18:39.568 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:18:39.568 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 12:19:00.004 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 12:19:02.562 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:19:02.562 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 12:19:03.623 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:19:27.524 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:19:27.524 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 12:19:33.652 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:19:54.722 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:19:54.722 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 12:20:03.687 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:20:24.661 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:20:24.661 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 12:20:33.711 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:20:54.731 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:20:54.731 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 12:21:03.737 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:21:27.424 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:21:27.424 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 12:21:33.756 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:21:41.532 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:21:41.532 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 12:21:42.762 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:21:42.763 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 12:21:43.084 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:21:43.084 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 12:22:03.789 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:22:10.724 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:22:10.724 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 12:22:10.975 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:22:10.975 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 12:22:12.857 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:22:12.857 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 12:22:17.754 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:22:17.754 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 12:22:24.770 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:22:24.770 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 12:22:33.710 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:22:33.710 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 12:22:33.798 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:22:52.100 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:22:52.100 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 12:22:57.664 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:22:57.664 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 12:23:03.808 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:23:19.840 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:23:19.840 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 12:23:29.795 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:23:29.795 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 12:23:33.828 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:23:48.863 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:23:48.863 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 12:24:00.006 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 12:24:03.845 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:24:09.813 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:24:09.813 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 12:24:32.826 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:24:32.826 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 12:24:33.861 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:24:57.770 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:24:57.770 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 12:25:03.873 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:25:24.976 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:25:24.976 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 12:25:33.892 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:25:54.926 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:25:54.926 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 12:26:03.908 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:26:24.983 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:26:24.984 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 12:26:33.924 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:26:57.667 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:26:57.667 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 12:27:03.953 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:27:11.784 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:27:11.784 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 12:27:13.014 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:27:13.014 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 12:27:13.361 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:27:13.361 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 12:27:33.970 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:27:41.191 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:27:41.191 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 12:27:41.310 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:27:41.310 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 12:27:43.128 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:27:43.129 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 12:27:47.998 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:27:47.999 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 12:27:55.020 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:27:55.020 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 12:28:03.934 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:28:03.934 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 12:28:03.985 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:28:22.337 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:28:22.337 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 12:28:27.903 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:28:27.903 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 12:28:33.999 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:28:50.097 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:28:50.097 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 12:28:59.995 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 12:29:00.038 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:29:00.038 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 12:29:04.019 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:29:19.131 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:29:19.131 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 12:29:34.042 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:29:40.067 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:29:40.067 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 12:30:03.084 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:30:03.084 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 12:30:04.064 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:30:28.034 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:30:28.034 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 12:30:34.083 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:30:55.227 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:30:55.227 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 12:31:04.095 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:31:25.208 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:31:25.208 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 12:31:34.110 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:31:55.284 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:31:55.284 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 12:32:04.129 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:32:27.927 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:32:27.927 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 12:32:34.164 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:32:42.042 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:32:42.042 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 12:32:43.281 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:32:43.281 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 12:32:43.642 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:32:43.642 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 12:33:04.186 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:33:11.527 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:33:11.528 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 12:33:11.785 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:33:11.785 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 12:33:13.427 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:33:13.427 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 12:33:18.270 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:33:18.270 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 12:33:25.284 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:33:25.284 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 12:33:34.210 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:33:34.210 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 12:33:34.222 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:33:52.605 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:33:52.605 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 12:33:58.170 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:33:58.170 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 12:34:00.030 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 12:34:04.255 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:34:20.357 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:34:20.357 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 12:34:30.291 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:34:30.291 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 12:34:34.285 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:34:49.389 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:34:49.389 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 12:35:04.327 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:35:10.360 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:35:10.360 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 12:35:33.347 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:35:33.347 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 12:35:34.348 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:35:58.319 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:35:58.319 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 12:36:04.377 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:36:25.506 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:36:25.506 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 12:36:34.406 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:36:55.476 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:36:55.476 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 12:37:04.432 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:37:25.565 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:37:25.565 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 12:37:34.459 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:37:58.189 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:37:58.189 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 12:38:04.479 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:38:12.320 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:38:12.320 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 12:38:13.554 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:38:13.555 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 12:38:13.911 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:38:13.912 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 12:38:34.514 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:38:42.022 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:38:42.022 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 12:38:42.082 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:38:42.082 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 12:38:43.720 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:38:43.720 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 12:38:48.529 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:38:48.529 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 12:38:55.570 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:38:55.570 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 12:39:00.040 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 12:39:04.491 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:39:04.491 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 12:39:04.529 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:39:22.866 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:39:22.866 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 12:39:28.438 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:39:28.438 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 12:39:34.551 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:39:50.625 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:39:50.625 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 12:40:00.570 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:40:00.570 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 12:40:04.564 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:40:19.660 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:40:19.660 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 12:40:34.590 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:40:40.628 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:40:40.628 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 12:41:03.619 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:41:03.620 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 12:41:04.596 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:41:28.582 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:41:28.582 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 12:41:34.613 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:41:55.780 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:41:55.780 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 12:42:04.632 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:42:25.718 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:42:25.718 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 12:42:34.659 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:42:55.812 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:42:55.812 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 12:43:04.673 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:43:28.414 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:43:28.415 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 12:43:34.691 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:43:42.554 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:43:42.554 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 12:43:43.789 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:43:43.789 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 12:43:44.162 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:43:44.162 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 12:44:00.014 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 12:44:04.706 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:44:12.567 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:44:12.567 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:44:12.567 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 12:44:12.568 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 12:44:13.966 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:44:13.967 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 12:44:18.743 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:44:18.743 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 12:44:25.810 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:44:25.810 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 12:44:34.724 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:44:34.724 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 12:44:34.726 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:44:53.100 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:44:53.100 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 12:44:58.651 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:44:58.651 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 12:45:04.761 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:45:20.851 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:45:20.851 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 12:45:30.816 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:45:30.817 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 12:45:34.783 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:45:49.901 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:45:49.901 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 12:46:04.816 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:46:10.870 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:46:10.870 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 12:46:33.886 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:46:33.886 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 12:46:34.840 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:46:58.834 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:46:58.834 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 12:47:04.872 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:47:26.029 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:47:26.029 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 12:47:34.903 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:47:55.969 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:47:55.969 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 12:48:04.929 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:48:26.070 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:48:26.070 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 12:48:34.945 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:48:58.669 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:48:58.669 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 12:49:00.005 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 12:49:04.960 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:49:12.822 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:49:12.822 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 12:49:14.046 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:49:14.046 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 12:49:14.437 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:49:14.437 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 12:49:34.983 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:49:42.820 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:49:42.820 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 12:49:43.124 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:49:43.125 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 12:49:44.242 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:49:44.243 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 12:49:49.019 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:49:49.019 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 12:49:56.065 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:49:56.065 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 12:50:04.984 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:50:04.985 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 12:50:04.998 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:50:23.339 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:50:23.339 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 12:50:28.903 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:50:28.903 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 12:50:35.016 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:50:51.142 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:50:51.142 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 12:51:01.061 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:51:01.062 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 12:51:05.024 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:51:20.189 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:51:20.189 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 12:51:35.066 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:51:41.125 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:51:41.126 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 12:52:04.134 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:52:04.134 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 12:52:05.089 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:52:29.103 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:52:29.103 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 12:52:35.124 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:52:56.301 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:52:56.301 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 12:53:05.154 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:53:26.243 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:53:26.243 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 12:53:35.177 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:53:56.336 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:53:56.336 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 12:54:00.012 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 12:54:05.215 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:54:28.955 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:54:28.955 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 12:54:35.249 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:54:43.085 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:54:43.086 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 12:54:44.298 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:54:44.298 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 12:54:44.709 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:54:44.709 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 12:55:05.272 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:55:13.088 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:55:13.088 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 12:55:13.449 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:55:13.449 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 12:55:14.536 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:55:14.536 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 12:55:19.306 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:55:19.306 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 12:55:26.325 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:55:26.325 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 12:55:35.243 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:55:35.243 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 12:55:35.299 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:55:53.600 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:55:53.600 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 12:55:59.158 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:55:59.158 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 12:56:05.334 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:56:21.414 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:56:21.414 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 12:56:31.321 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:56:31.321 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 12:56:35.358 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:56:50.459 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:56:50.459 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 12:57:05.394 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:57:11.389 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:57:11.389 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 12:57:34.397 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:57:34.398 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 12:57:35.422 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:57:59.370 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:57:59.370 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 12:58:05.452 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:58:26.556 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:58:26.556 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 12:58:35.474 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:58:56.507 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:58:56.507 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 12:59:00.010 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 12:59:05.509 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:59:26.597 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:59:26.597 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 12:59:35.541 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 12:59:59.195 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 12:59:59.195 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 13:00:05.555 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:00:13.337 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:00:13.337 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 13:00:14.553 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:00:14.554 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 13:00:14.985 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:00:14.985 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 13:00:35.567 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:00:43.338 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:00:43.338 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 13:00:43.766 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:00:43.767 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 13:00:44.794 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:00:44.794 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 13:00:49.548 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:00:49.548 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 13:00:56.579 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:00:56.579 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 13:01:05.490 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:01:05.490 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 13:01:05.577 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:01:23.826 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:01:23.826 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 13:01:29.404 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:01:29.404 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 13:01:35.596 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:01:51.646 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:01:51.646 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 13:02:01.563 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:02:01.563 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 13:02:05.617 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:02:20.688 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:02:20.689 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 13:02:35.637 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:02:41.641 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:02:41.641 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 13:03:04.638 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:03:04.638 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 13:03:05.660 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:03:29.624 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:03:29.625 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 13:03:35.678 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:03:56.832 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:03:56.832 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 13:04:00.015 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 13:04:05.702 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:04:26.777 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:04:26.777 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 13:04:35.734 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:04:56.885 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:04:56.886 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 13:05:05.773 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:05:29.446 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:05:29.446 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 13:05:35.794 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:05:43.605 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:05:43.605 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 13:05:44.828 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:05:44.829 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 13:05:45.291 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:05:45.291 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 13:06:05.820 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:06:13.610 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:06:13.610 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 13:06:14.082 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:06:14.082 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 13:06:15.078 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:06:15.078 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 13:06:19.806 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:06:19.806 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 13:06:26.841 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:06:26.841 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 13:06:35.780 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:06:35.780 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 13:06:35.847 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:06:54.075 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:06:54.075 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 13:06:59.659 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:06:59.659 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 13:07:05.881 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:07:07.068 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-09-03 13:07:07.069 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-03 13:07:07.090 +08:00 [DBG] removed records count=1 +2021-09-03 13:07:08.095 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-03 13:07:08.112 +08:00 [DBG] removed records count=0 +2021-09-03 13:07:08.113 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-09-03 13:07:08.114 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-09-03 13:07:21.895 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:07:21.895 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 13:07:31.813 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:07:31.813 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 13:07:35.897 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:07:38.382 +08:00 [ERR] MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.ExpirationManager.<>c__DisplayClass9_1.b__0(MySqlConnection connection) +2021-09-03 13:07:38.383 +08:00 [DBG] Removing outdated records from table 'List'... +2021-09-03 13:07:38.384 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-09-03 13:07:38.391 +08:00 [DBG] removed records count=0 +2021-09-03 13:07:38.392 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-09-03 13:07:38.393 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-09-03 13:07:50.970 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:07:50.970 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 13:08:05.925 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:08:08.655 +08:00 [ERR] MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.ExpirationManager.<>c__DisplayClass9_1.b__0(MySqlConnection connection) +2021-09-03 13:08:08.656 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-09-03 13:08:08.657 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-09-03 13:08:11.906 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:08:11.906 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 13:08:34.908 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:08:34.908 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 13:08:35.945 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:08:38.922 +08:00 [ERR] MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.ExpirationManager.<>c__DisplayClass9_1.b__0(MySqlConnection connection) +2021-09-03 13:08:59.890 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:08:59.890 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 13:09:00.023 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 13:09:05.984 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:09:27.106 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:09:27.107 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 13:09:36.017 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:09:57.044 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:09:57.044 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 13:10:06.053 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:10:27.177 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:10:27.177 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 13:10:36.071 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:10:59.695 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:10:59.696 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 13:11:06.102 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:11:13.875 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:11:13.875 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 13:11:15.125 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:11:15.125 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 13:11:15.559 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:11:15.559 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 13:11:36.134 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:11:43.881 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:11:43.881 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 13:11:44.403 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:11:44.403 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 13:11:45.389 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:11:45.389 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 13:11:50.077 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:11:50.077 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 13:11:57.101 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:11:57.101 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 13:12:06.064 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:12:06.064 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 13:12:06.166 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:12:24.354 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:12:24.354 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 13:12:29.920 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:12:29.920 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 13:12:36.196 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:12:52.167 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:12:52.167 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 13:13:02.085 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:13:02.085 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 13:13:06.220 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:13:21.228 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:13:21.228 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 13:13:36.256 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:13:42.191 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:13:42.192 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 13:14:00.034 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 13:14:05.177 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:14:05.177 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 13:14:06.269 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:14:30.163 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:14:30.163 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 13:14:36.292 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:14:57.341 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:14:57.341 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 13:15:06.326 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:15:27.318 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:15:27.318 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 13:15:36.342 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:15:57.470 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:15:57.470 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 13:16:06.359 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:16:29.942 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:16:29.942 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 13:16:36.373 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:16:44.141 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:16:44.142 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 13:16:45.396 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:16:45.397 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 13:16:45.847 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:16:45.847 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 13:17:06.400 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:17:14.149 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:17:14.149 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 13:17:14.690 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:17:14.690 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 13:17:15.659 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:17:15.660 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 13:17:20.316 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:17:20.316 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 13:17:27.341 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:17:27.341 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 13:17:36.311 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:17:36.311 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 13:17:36.405 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:17:54.582 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:17:54.582 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 13:18:00.160 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:18:00.160 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 13:18:06.426 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:18:22.406 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:18:22.406 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 13:18:32.314 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:18:32.314 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 13:18:36.453 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:18:51.471 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:18:51.471 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 13:19:00.021 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 13:19:06.476 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:19:12.440 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:19:12.440 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 13:19:35.419 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:19:35.419 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 13:19:36.483 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:20:00.424 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:20:00.424 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 13:20:06.497 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:20:27.567 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:20:27.567 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 13:20:36.514 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:20:57.574 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:20:57.574 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 13:21:06.539 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:21:27.726 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:21:27.726 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 13:21:36.558 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:22:00.193 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:22:00.193 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 13:22:06.581 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:22:14.399 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:22:14.399 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 13:22:15.664 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:22:15.664 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 13:22:16.118 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:22:16.119 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 13:22:36.618 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:22:44.392 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:22:44.392 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 13:22:44.978 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:22:44.978 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 13:22:45.920 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:22:45.921 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 13:22:50.575 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:22:50.575 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 13:22:57.602 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:22:57.603 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 13:23:06.580 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:23:06.581 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 13:23:06.630 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:23:24.832 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:23:24.832 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 13:23:30.405 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:23:30.405 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 13:23:36.653 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:23:52.655 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:23:52.655 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 13:24:00.033 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 13:24:02.569 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:24:02.570 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 13:24:06.675 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:24:21.723 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:24:21.723 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 13:24:36.702 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:24:42.686 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:24:42.686 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 13:25:05.695 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:25:05.695 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 13:25:06.714 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:25:30.712 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:25:30.713 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 13:25:36.730 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:25:57.815 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:25:57.815 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 13:26:06.759 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:26:27.872 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:26:27.872 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 13:26:36.793 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:26:58.013 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:26:58.014 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 13:27:06.806 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:27:30.452 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:27:30.452 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 13:27:36.828 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:27:44.656 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:27:44.656 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 13:27:45.920 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:27:45.921 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 13:27:46.396 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:27:46.396 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 13:28:06.845 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:28:14.687 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:28:14.687 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 13:28:15.292 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:28:15.292 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 13:28:16.182 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:28:16.182 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 13:28:20.819 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:28:20.819 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 13:28:27.850 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:28:27.850 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 13:28:36.845 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:28:36.846 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 13:28:36.864 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:28:55.076 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:28:55.076 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 13:29:00.052 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 13:29:00.665 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:29:00.665 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 13:29:06.885 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:29:22.928 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:29:22.928 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 13:29:32.825 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:29:32.825 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 13:29:36.915 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:29:51.982 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:29:51.983 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 13:30:06.945 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:30:12.976 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:30:12.976 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 13:30:35.974 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:30:35.974 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 13:30:36.955 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:31:00.988 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:31:00.988 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 13:31:06.972 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:31:28.077 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:31:28.077 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 13:31:36.997 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:31:58.171 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:31:58.171 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 13:32:07.022 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:32:28.275 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:32:28.275 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 13:32:37.038 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:33:00.715 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:33:00.715 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 13:33:07.056 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:33:14.902 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:33:14.902 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 13:33:16.182 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:33:16.183 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 13:33:16.673 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:33:16.673 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 13:33:37.085 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:33:44.966 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:33:44.966 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 13:33:45.609 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:33:45.609 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 13:33:46.427 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:33:46.427 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 13:33:51.065 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:33:51.066 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 13:33:58.099 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:33:58.099 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 13:34:00.044 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 13:34:07.119 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:34:07.119 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 13:34:07.130 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:34:25.311 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:34:25.311 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 13:34:30.914 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:34:30.914 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 13:34:37.163 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:34:53.163 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:34:53.163 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 13:35:03.078 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:35:03.078 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 13:35:07.188 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:35:22.232 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:35:22.232 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 13:35:37.224 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:35:43.230 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:35:43.230 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 13:36:06.231 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:36:06.231 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 13:36:07.255 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:36:31.223 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:36:31.223 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 13:36:37.284 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:36:58.310 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:36:58.310 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 13:37:07.313 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:37:28.404 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:37:28.404 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 13:37:37.344 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:37:58.530 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:37:58.530 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 13:38:07.365 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:38:30.960 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:38:30.960 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 13:38:37.402 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:38:45.146 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:38:45.147 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 13:38:46.421 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:38:46.421 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 13:38:46.925 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:38:46.926 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 13:39:00.049 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 13:39:07.422 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:39:15.240 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:39:15.241 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 13:39:15.920 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:39:15.920 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 13:39:16.683 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:39:16.683 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 13:39:21.319 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:39:21.319 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 13:39:28.368 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:39:28.369 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 13:39:37.370 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:39:37.370 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 13:39:37.432 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:39:55.564 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:39:55.564 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 13:40:01.161 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:40:01.161 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 13:40:07.454 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:40:23.410 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:40:23.410 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 13:40:33.335 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:40:33.335 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 13:40:37.479 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:40:52.493 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:40:52.493 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 13:41:07.497 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:41:13.502 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:41:13.502 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 13:41:36.485 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:41:36.485 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 13:41:37.517 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:42:01.484 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:42:01.484 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 13:42:07.536 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:42:28.579 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:42:28.579 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 13:42:37.557 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:42:58.668 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:42:58.668 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 13:43:07.581 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:43:28.803 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:43:28.803 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 13:43:37.599 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:44:00.063 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 13:44:01.207 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:44:01.207 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 13:44:07.619 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:44:15.399 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:44:15.400 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 13:44:16.680 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:44:16.681 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 13:44:17.214 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:44:17.214 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 13:44:37.651 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:44:45.487 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:44:45.487 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 13:44:46.239 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:44:46.239 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 13:44:46.924 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:44:46.924 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 13:44:51.572 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:44:51.572 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 13:44:58.616 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:44:58.616 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 13:45:07.650 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:45:07.650 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 13:45:07.671 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:45:25.828 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:45:25.828 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 13:45:31.405 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:45:31.405 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 13:45:37.699 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:45:53.674 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:45:53.674 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 13:46:03.588 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:46:03.588 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 13:46:07.721 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:46:22.751 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:46:22.751 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 13:46:37.750 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:46:43.766 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:46:43.766 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 13:47:06.750 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:47:06.751 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 13:47:07.774 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:47:31.731 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:47:31.731 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 13:47:37.813 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:47:58.824 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:47:58.824 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 13:48:07.825 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:48:28.924 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:48:28.925 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 13:48:37.854 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:48:59.236 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:48:59.236 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 13:49:00.083 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 13:49:07.900 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:49:31.491 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:49:31.491 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 13:49:37.908 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:49:45.719 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:49:45.719 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 13:49:46.959 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:49:46.959 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 13:49:47.529 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:49:47.529 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 13:50:07.927 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:50:15.776 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:50:15.776 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 13:50:16.555 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:50:16.555 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 13:50:17.229 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:50:17.229 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 13:50:21.814 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:50:21.814 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 13:50:28.847 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:50:28.847 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 13:50:37.903 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:50:37.903 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 13:50:37.944 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:50:56.078 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:50:56.078 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 13:51:01.638 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:51:01.639 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 13:51:07.973 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:51:23.911 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:51:23.911 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 13:51:33.837 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:51:33.837 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 13:51:37.993 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:51:52.988 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:51:52.988 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 13:52:08.025 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:52:14.034 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:52:14.034 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 13:52:36.981 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:52:36.982 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 13:52:38.044 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:53:01.968 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:53:01.968 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 13:53:08.058 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:53:29.089 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:53:29.090 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 13:53:38.074 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:53:59.185 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:53:59.185 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 13:54:00.079 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 13:54:08.098 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:54:29.691 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:54:29.691 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 13:54:38.113 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:55:01.725 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:55:01.725 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 13:55:08.128 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:55:15.982 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:55:15.982 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 13:55:17.218 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:55:17.218 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 13:55:17.801 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:55:17.801 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 13:55:38.142 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:55:46.061 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:55:46.061 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 13:55:46.875 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:55:46.875 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 13:55:47.487 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:55:47.487 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 13:55:52.093 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:55:52.093 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 13:55:59.114 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:55:59.114 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 13:56:08.171 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:56:08.174 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:56:08.174 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 13:56:26.335 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:56:26.335 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 13:56:31.895 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:56:31.895 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 13:56:38.205 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:56:54.171 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:56:54.171 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 13:57:04.131 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:57:04.131 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 13:57:08.234 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:57:23.225 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:57:23.225 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 13:57:38.267 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:57:44.324 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:57:44.324 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 13:58:07.268 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:58:07.268 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 13:58:08.288 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:58:32.250 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:58:32.250 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 13:58:38.313 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:58:59.352 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:58:59.352 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 13:59:00.089 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 13:59:08.347 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:59:29.444 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:59:29.444 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 13:59:38.380 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 13:59:59.953 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 13:59:59.953 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 14:00:08.409 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:00:31.994 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:00:31.994 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 14:00:38.424 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:00:46.281 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:00:46.281 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 14:00:47.508 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:00:47.508 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 14:00:48.104 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:00:48.104 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 14:01:08.459 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:01:16.357 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:01:16.357 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 14:01:17.218 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:01:17.218 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 14:01:17.768 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:01:17.769 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 14:01:22.367 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:01:22.367 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 14:01:29.402 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:01:29.403 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 14:01:38.470 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:01:38.471 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 14:01:38.472 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:01:56.599 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:01:56.599 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 14:02:02.152 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:02:02.152 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 14:02:08.490 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:02:24.455 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:02:24.455 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 14:02:34.404 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:02:34.404 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 14:02:38.510 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:02:53.479 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:02:53.479 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 14:03:08.536 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:03:14.616 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:03:14.617 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 14:03:37.564 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:03:37.564 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 14:03:38.553 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:04:00.117 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 14:04:02.534 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:04:02.534 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 14:04:08.571 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:04:29.653 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:04:29.653 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 14:04:38.596 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:04:59.734 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:04:59.734 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 14:05:08.620 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:05:30.221 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:05:30.221 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 14:05:38.652 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:06:02.251 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:06:02.252 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 14:06:08.686 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:06:16.550 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:06:16.550 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 14:06:17.773 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:06:17.773 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 14:06:18.372 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:06:18.372 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 14:06:38.707 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:06:46.623 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:06:46.623 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 14:06:47.553 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:06:47.553 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 14:06:48.036 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:06:48.036 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 14:06:52.621 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:06:52.622 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 14:06:59.675 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:06:59.675 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 14:07:08.728 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:07:08.728 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 14:07:08.738 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:07:26.855 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:07:26.855 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 14:07:32.402 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:07:32.402 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 14:07:38.755 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:07:54.712 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:07:54.712 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 14:08:04.657 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:08:04.657 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 14:08:08.769 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:08:23.742 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:08:23.742 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 14:08:38.749 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-09-03 14:08:38.750 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-03 14:08:38.772 +08:00 [DBG] removed records count=1 +2021-09-03 14:08:38.777 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:08:39.786 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-03 14:08:39.795 +08:00 [DBG] removed records count=0 +2021-09-03 14:08:39.796 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-09-03 14:08:39.797 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-09-03 14:08:44.861 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:08:44.861 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 14:09:00.112 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 14:09:07.817 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:09:07.817 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 14:09:08.803 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:09:10.063 +08:00 [ERR] MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.ExpirationManager.<>c__DisplayClass9_1.b__0(MySqlConnection connection) +2021-09-03 14:09:10.064 +08:00 [DBG] Removing outdated records from table 'List'... +2021-09-03 14:09:10.065 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-09-03 14:09:10.071 +08:00 [DBG] removed records count=0 +2021-09-03 14:09:10.072 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-09-03 14:09:10.073 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-09-03 14:09:32.784 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:09:32.785 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 14:09:38.831 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:09:40.317 +08:00 [ERR] MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.ExpirationManager.<>c__DisplayClass9_1.b__0(MySqlConnection connection) +2021-09-03 14:09:40.318 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-09-03 14:09:40.319 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-09-03 14:09:59.928 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:09:59.928 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 14:10:08.853 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:10:10.573 +08:00 [ERR] MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.ExpirationManager.<>c__DisplayClass9_1.b__0(MySqlConnection connection) +2021-09-03 14:10:30.023 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:10:30.023 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 14:10:38.889 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:11:00.546 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:11:00.546 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 14:11:08.922 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:11:32.513 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:11:32.513 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 14:11:38.948 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:11:46.835 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:11:46.835 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 14:11:48.037 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:11:48.037 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 14:11:48.670 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:11:48.670 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 14:12:08.988 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:12:16.904 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:12:16.904 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 14:12:17.893 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:12:17.893 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 14:12:18.321 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:12:18.321 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 14:12:22.870 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:12:22.870 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 14:12:29.950 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:12:29.950 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 14:12:39.000 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:12:39.000 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 14:12:39.004 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:12:57.118 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:12:57.118 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 14:13:02.650 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:13:02.650 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 14:13:09.028 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:13:24.977 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:13:24.977 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 14:13:34.926 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:13:34.926 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 14:13:39.064 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:13:54.019 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:13:54.019 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 14:14:00.115 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 14:14:09.099 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:14:15.149 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:14:15.149 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 14:14:38.114 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:14:38.115 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 14:14:39.125 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:15:03.070 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:15:03.070 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 14:15:09.160 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:15:30.194 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:15:30.194 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 14:15:39.178 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:16:00.319 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:16:00.319 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 14:16:09.206 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:16:30.845 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:16:30.845 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 14:16:39.231 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:17:02.788 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:17:02.788 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 14:17:09.256 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:17:17.115 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:17:17.116 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 14:17:18.317 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:17:18.317 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 14:17:18.954 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:17:18.954 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 14:17:39.286 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:17:47.188 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:17:47.188 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 14:17:48.218 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:17:48.218 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 14:17:48.575 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:17:48.575 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 14:17:53.141 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:17:53.142 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 14:18:00.235 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:18:00.235 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 14:18:09.269 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:18:09.269 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 14:18:09.317 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:18:27.436 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:18:27.436 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 14:18:32.942 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:18:32.942 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 14:18:39.340 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:18:55.238 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:18:55.238 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 14:19:00.126 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 14:19:05.190 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:19:05.190 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 14:19:09.354 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:19:24.289 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:19:24.289 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 14:19:39.385 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:19:45.431 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:19:45.432 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 14:20:08.395 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:20:08.395 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 14:20:09.394 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:20:33.339 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:20:33.339 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 14:20:39.411 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:21:00.478 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:21:00.479 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 14:21:09.436 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:21:30.613 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:21:30.613 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 14:21:39.452 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:22:01.131 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:22:01.131 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 14:22:09.473 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:22:33.054 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:22:33.054 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 14:22:39.508 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:22:47.361 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:22:47.361 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 14:22:48.585 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:22:48.586 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 14:22:49.218 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:22:49.218 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 14:23:09.553 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:23:17.456 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:23:17.456 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 14:23:18.544 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:23:18.544 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 14:23:18.841 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:23:18.841 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 14:23:23.388 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:23:23.388 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 14:23:30.502 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:23:30.502 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 14:23:39.541 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:23:39.542 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 14:23:39.567 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:23:57.706 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:23:57.707 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 14:24:00.119 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 14:24:03.204 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:24:03.204 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 14:24:09.590 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:24:25.497 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:24:25.498 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 14:24:35.456 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:24:35.457 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 14:24:39.620 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:24:54.551 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:24:54.551 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 14:25:09.635 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:25:15.701 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:25:15.701 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 14:25:38.648 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:25:38.648 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 14:25:39.660 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:26:03.621 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:26:03.621 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 14:26:09.690 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:26:30.745 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:26:30.745 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 14:26:39.708 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:27:00.877 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:27:00.877 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 14:27:09.728 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:27:31.393 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:27:31.393 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 14:27:39.759 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:28:03.298 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:28:03.298 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 14:28:09.795 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:28:17.627 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:28:17.627 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 14:28:18.871 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:28:18.871 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 14:28:19.509 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:28:19.509 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 14:28:39.815 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:28:47.758 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:28:47.758 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 14:28:48.953 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:28:48.953 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 14:28:49.140 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:28:49.140 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 14:28:53.648 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:28:53.648 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 14:29:00.115 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 14:29:00.750 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:29:00.750 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 14:29:09.793 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:29:09.793 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 14:29:09.843 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:29:27.959 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:29:27.960 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 14:29:33.463 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:29:33.463 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 14:29:39.879 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:29:55.780 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:29:55.780 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 14:30:05.732 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:30:05.732 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 14:30:09.902 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:30:24.821 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:30:24.821 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 14:30:39.946 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:30:45.962 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:30:45.962 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 14:31:08.905 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:31:08.905 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 14:31:09.971 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:31:33.894 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:31:33.894 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 14:31:39.994 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:32:01.025 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:32:01.025 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 14:32:10.029 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:32:31.155 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:32:31.155 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 14:32:40.061 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:33:01.659 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:33:01.660 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 14:33:10.102 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:33:33.562 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:33:33.562 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 14:33:40.140 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:33:47.910 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:33:47.910 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 14:33:49.187 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:33:49.187 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 14:33:49.803 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:33:49.803 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 14:34:00.133 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 14:34:10.172 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:34:18.051 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:34:18.051 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 14:34:19.715 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:34:19.715 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 14:34:19.728 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:34:19.728 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 14:34:23.935 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:34:23.935 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 14:34:31.026 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:34:31.026 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 14:34:40.066 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:34:40.066 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 14:34:40.184 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:34:58.216 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:34:58.216 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 14:35:03.741 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:35:03.741 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 14:35:10.196 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:35:26.072 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:35:26.072 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 14:35:35.991 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:35:35.991 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 14:35:40.230 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:35:55.097 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:35:55.097 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 14:36:10.270 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:36:16.236 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:36:16.236 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 14:36:39.207 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:36:39.207 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 14:36:40.300 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:37:04.196 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:37:04.196 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 14:37:10.321 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:37:31.276 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:37:31.276 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 14:37:40.338 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:38:01.422 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:38:01.422 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 14:38:10.356 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:38:31.936 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:38:31.936 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 14:38:40.385 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:39:00.141 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 14:39:03.823 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:39:03.823 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 14:39:10.403 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:39:18.184 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:39:18.184 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 14:39:19.456 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:39:19.456 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 14:39:20.079 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:39:20.079 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 14:39:40.414 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:39:48.313 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:39:48.313 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 14:39:49.983 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:39:49.983 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 14:39:50.278 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:39:50.278 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 14:39:54.199 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:39:54.199 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 14:40:01.317 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:40:01.317 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 14:40:10.314 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:40:10.314 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 14:40:10.429 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:40:28.461 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:40:28.461 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 14:40:33.993 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:40:33.993 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 14:40:40.447 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:40:56.317 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:40:56.317 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 14:41:06.238 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:41:06.238 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 14:41:10.481 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:41:25.347 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:41:25.347 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 14:41:40.497 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:41:46.483 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:41:46.484 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 14:42:09.455 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:42:09.455 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 14:42:10.509 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:42:34.457 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:42:34.457 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 14:42:40.545 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:43:01.519 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:43:01.520 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 14:43:10.565 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:43:31.667 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:43:31.667 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 14:43:40.580 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:44:00.121 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 14:44:02.174 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:44:02.174 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 14:44:10.598 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:44:34.053 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:44:34.053 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 14:44:40.615 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:44:48.429 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:44:48.429 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 14:44:49.705 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:44:49.705 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 14:44:50.351 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:44:50.352 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 14:45:10.659 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:45:18.563 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:45:18.563 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 14:45:20.214 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:45:20.214 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 14:45:20.658 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:45:20.658 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 14:45:24.451 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:45:24.451 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 14:45:31.574 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:45:31.574 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 14:45:40.571 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:45:40.571 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 14:45:40.676 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:45:58.705 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:45:58.706 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 14:46:04.223 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:46:04.223 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 14:46:10.712 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:46:26.577 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:46:26.577 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 14:46:36.471 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:46:36.471 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 14:46:40.723 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:46:55.589 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:46:55.589 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 14:47:10.760 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:47:16.730 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:47:16.731 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 14:47:39.726 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:47:39.726 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 14:47:40.789 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:48:04.711 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:48:04.711 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 14:48:10.812 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:48:31.787 +08:00 [DBG] Execution loop Worker:86108ba0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:48:31.788 +08:00 [DBG] Execution loop Worker:86108ba0 will be retried in 00:05:00... +2021-09-03 14:48:40.840 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:49:00.124 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 14:49:01.941 +08:00 [DBG] Execution loop Worker:6127975c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:49:01.941 +08:00 [DBG] Execution loop Worker:6127975c will be retried in 00:05:00... +2021-09-03 14:49:10.870 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:49:32.445 +08:00 [DBG] Execution loop Worker:b01fc793 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:49:32.445 +08:00 [DBG] Execution loop Worker:b01fc793 will be retried in 00:05:00... +2021-09-03 14:49:40.890 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:50:04.307 +08:00 [DBG] Execution loop Worker:03d490df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:50:04.307 +08:00 [DBG] Execution loop Worker:03d490df will be retried in 00:05:00... +2021-09-03 14:50:10.926 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:50:18.672 +08:00 [DBG] Execution loop Worker:53dc5bc4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:50:18.672 +08:00 [DBG] Execution loop Worker:53dc5bc4 will be retried in 00:05:00... +2021-09-03 14:50:19.950 +08:00 [DBG] Execution loop Worker:7ed233f0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:50:19.951 +08:00 [DBG] Execution loop Worker:7ed233f0 will be retried in 00:05:00... +2021-09-03 14:50:20.620 +08:00 [DBG] Execution loop Worker:685c0195 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:50:20.620 +08:00 [DBG] Execution loop Worker:685c0195 will be retried in 00:05:00... +2021-09-03 14:50:40.963 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:50:48.836 +08:00 [DBG] Execution loop Worker:f78ae57b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:50:48.836 +08:00 [DBG] Execution loop Worker:f78ae57b will be retried in 00:05:00... +2021-09-03 14:50:50.477 +08:00 [DBG] Execution loop Worker:8597e256 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:50:50.477 +08:00 [DBG] Execution loop Worker:8597e256 will be retried in 00:05:00... +2021-09-03 14:50:50.964 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:50:50.964 +08:00 [DBG] Execution loop RecurringJobScheduler:dfda87c0 will be retried in 00:05:00... +2021-09-03 14:50:54.722 +08:00 [DBG] Execution loop Worker:69787478 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:50:54.722 +08:00 [DBG] Execution loop Worker:69787478 will be retried in 00:05:00... +2021-09-03 14:51:01.858 +08:00 [DBG] Execution loop Worker:45cc03f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:51:01.858 +08:00 [DBG] Execution loop Worker:45cc03f1 will be retried in 00:05:00... +2021-09-03 14:51:10.826 +08:00 [DBG] Execution loop Worker:441c2bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:51:10.826 +08:00 [DBG] Execution loop Worker:441c2bc6 will be retried in 00:05:00... +2021-09-03 14:51:10.974 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:51:28.953 +08:00 [DBG] Execution loop Worker:17e45dc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:51:28.953 +08:00 [DBG] Execution loop Worker:17e45dc6 will be retried in 00:05:00... +2021-09-03 14:51:34.477 +08:00 [DBG] Execution loop Worker:10c2d81d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:51:34.477 +08:00 [DBG] Execution loop Worker:10c2d81d will be retried in 00:05:00... +2021-09-03 14:51:40.985 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:51:56.837 +08:00 [DBG] Execution loop Worker:2834e0b6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:51:56.837 +08:00 [DBG] Execution loop Worker:2834e0b6 will be retried in 00:05:00... +2021-09-03 14:52:06.735 +08:00 [DBG] Execution loop Worker:b1fc414e caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:52:06.735 +08:00 [DBG] Execution loop Worker:b1fc414e will be retried in 00:05:00... +2021-09-03 14:52:10.996 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:52:25.882 +08:00 [DBG] Execution loop Worker:436c4fad caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:52:25.882 +08:00 [DBG] Execution loop Worker:436c4fad will be retried in 00:05:00... +2021-09-03 14:52:41.033 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:52:46.988 +08:00 [DBG] Execution loop Worker:f88d20e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:52:46.988 +08:00 [DBG] Execution loop Worker:f88d20e0 will be retried in 00:05:00... +2021-09-03 14:53:10.018 +08:00 [DBG] Execution loop Worker:69d37934 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:53:10.018 +08:00 [DBG] Execution loop Worker:69d37934 will be retried in 00:05:00... +2021-09-03 14:53:11.048 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:53:35.010 +08:00 [DBG] Execution loop Worker:4c059326 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:53:35.010 +08:00 [DBG] Execution loop Worker:4c059326 will be retried in 00:05:00... +2021-09-03 14:53:41.070 +08:00 [DBG] Server szqh003802a:23760:86738057 heartbeat successfully sent +2021-09-03 14:54:00.020 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-09-03 14:54:04.887 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-09-03 14:54:05.007 +08:00 [INF] Loaded ABP modules: +2021-09-03 14:54:05.007 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-09-03 14:54:05.007 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-09-03 14:54:05.007 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-09-03 14:54:05.007 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-09-03 14:54:05.007 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-09-03 14:54:05.007 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-09-03 14:54:05.007 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-09-03 14:54:05.008 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-09-03 14:54:05.008 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-09-03 14:54:05.008 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule +2021-09-03 14:54:05.008 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-09-03 14:54:05.008 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-09-03 14:54:05.008 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-09-03 14:54:05.008 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-09-03 14:54:05.008 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-09-03 14:54:05.008 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-09-03 14:54:05.008 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-09-03 14:54:05.008 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-09-03 14:54:05.008 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-09-03 14:54:05.109 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-09-03 14:54:05.112 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-09-03 14:54:05.255 +08:00 [INF] DB tables already exist. Exit install +2021-09-03 14:54:05.280 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-09-03 14:54:05.280 +08:00 [INF] Using the following options for SQL Server job storage: +2021-09-03 14:54:05.280 +08:00 [INF] Queue poll interval: 00:00:15. +2021-09-03 14:54:05.281 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-09-03 14:54:05.303 +08:00 [DBG] Execution loop BackgroundServerProcess:546a9f8a has started in 6.7795 ms +2021-09-03 14:54:05.420 +08:00 [INF] Server szqh003802a:31936:530a8160 successfully announced in 105.3301 ms +2021-09-03 14:54:05.423 +08:00 [INF] Server szqh003802a:31936:530a8160 is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-09-03 14:54:05.424 +08:00 [DBG] Execution loop ServerHeartbeatProcess:0c7a21a9 has started in 3.1249 ms +2021-09-03 14:54:05.460 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:be5d22b7 has started in 36.2177 ms +2021-09-03 14:54:05.460 +08:00 [DBG] Execution loop ServerWatchdog:672f9e71 has started in 37.0726 ms +2021-09-03 14:54:05.464 +08:00 [DBG] Execution loop ExpirationManager:02318450 has started in 3.5578 ms +2021-09-03 14:54:05.465 +08:00 [DBG] Execution loop CountersAggregator:db2ef401 has started in 3.7713 ms +2021-09-03 14:54:05.466 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 14:54:05.466 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-09-03 14:54:05.470 +08:00 [DBG] Execution loop Worker:b74e643b has started in 7.8082 ms +2021-09-03 14:54:05.470 +08:00 [DBG] Execution loop Worker:e2dda7bc has started in 7.795 ms +2021-09-03 14:54:05.473 +08:00 [DBG] Execution loop Worker:0894c3b0 has started in 10.2756 ms +2021-09-03 14:54:05.475 +08:00 [DBG] Execution loop Worker:f36c15e7 has started in 13.3477 ms +2021-09-03 14:54:05.477 +08:00 [DBG] Execution loop Worker:0bd1f26f has started in 15.6633 ms +2021-09-03 14:54:05.478 +08:00 [DBG] Execution loop Worker:65c4342a has started in 15.7093 ms +2021-09-03 14:54:05.479 +08:00 [DBG] Execution loop Worker:7b174fe7 has started in 17.722 ms +2021-09-03 14:54:05.482 +08:00 [DBG] Execution loop Worker:f60ed965 has started in 20.5759 ms +2021-09-03 14:54:05.485 +08:00 [DBG] Execution loop Worker:3302056f has started in 23.347 ms +2021-09-03 14:54:05.486 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-03 14:54:05.488 +08:00 [DBG] Execution loop Worker:764c24f1 has started in 25.9265 ms +2021-09-03 14:54:05.492 +08:00 [DBG] Execution loop Worker:df59e9d9 has started in 30.489 ms +2021-09-03 14:54:05.498 +08:00 [DBG] Execution loop Worker:7b438f68 has started in 36.6185 ms +2021-09-03 14:54:05.502 +08:00 [DBG] Execution loop Worker:a931b7ac has started in 40.6292 ms +2021-09-03 14:54:05.510 +08:00 [DBG] Execution loop Worker:6c69308b has started in 48.1756 ms +2021-09-03 14:54:05.518 +08:00 [DBG] Execution loop Worker:9d396331 has started in 56.1728 ms +2021-09-03 14:54:05.522 +08:00 [DBG] Execution loop Worker:2fa318b2 has started in 60.5931 ms +2021-09-03 14:54:05.531 +08:00 [DBG] Execution loop Worker:48b4b449 has started in 69.0649 ms +2021-09-03 14:54:05.535 +08:00 [DBG] Execution loop Worker:1330f8a7 has started in 73.3892 ms +2021-09-03 14:54:05.536 +08:00 [DBG] removed records count=0 +2021-09-03 14:54:05.540 +08:00 [DBG] Execution loop Worker:a5e8bde5 has started in 77.7016 ms +2021-09-03 14:54:05.543 +08:00 [DBG] Execution loop Worker:ac735e9b has started in 81.2492 ms +2021-09-03 14:54:05.543 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-09-03 14:54:05.548 +08:00 [INF] Server szqh003802a:31936:530a8160 all the dispatchers started +2021-09-03 14:54:05.548 +08:00 [DBG] Execution loop DelayedJobScheduler:cf979317 has started in 8.4798 ms +2021-09-03 14:54:05.555 +08:00 [DBG] Execution loop RecurringJobScheduler:88a57205 has started in 10.0114 ms +2021-09-03 14:54:05.562 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-09-03 14:54:20.677 +08:00 [INF] Initialized all ABP modules. +2021-09-03 14:54:20.743 +08:00 [INF] Now listening on: http://localhost:44315 +2021-09-03 14:54:20.744 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-09-03 14:54:20.744 +08:00 [INF] Hosting environment: Development +2021-09-03 14:54:20.744 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-09-03 14:54:21.193 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-09-03 14:54:22.377 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-03 14:54:22.438 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-09-03 14:54:22.473 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-09-03 14:54:22.480 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 38.1984ms +2021-09-03 14:54:22.480 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-03 14:54:22.500 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 1307.0523ms +2021-09-03 14:54:22.515 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-09-03 14:54:22.567 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 51.9905ms +2021-09-03 14:54:22.723 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-09-03 14:54:23.094 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 370.6159ms +2021-09-03 14:54:35.497 +08:00 [DBG] Server szqh003802a:31936:530a8160 heartbeat successfully sent +2021-09-03 14:54:40.895 +08:00 [DBG] Execution Worker is in the Faulted state now due to an exception, execution will be retried no more than in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:54:40.896 +08:00 [DBG] Execution loop Worker:a5e8bde5 caught an exception and will be retried in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:54:40.896 +08:00 [DBG] Execution loop Worker:b74e643b caught an exception and will be retried in 00:00:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:54:40.896 +08:00 [DBG] Execution loop Worker:e2dda7bc caught an exception and will be retried in 00:00:09 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:54:40.896 +08:00 [DBG] Execution loop Worker:0894c3b0 caught an exception and will be retried in 00:00:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:54:40.896 +08:00 [DBG] Execution loop Worker:f36c15e7 caught an exception and will be retried in 00:00:25 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:54:40.896 +08:00 [DBG] Execution loop Worker:0bd1f26f caught an exception and will be retried in 00:00:36 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:54:40.896 +08:00 [DBG] Execution loop Worker:7b174fe7 caught an exception and will be retried in 00:00:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:54:40.896 +08:00 [DBG] Execution loop Worker:f60ed965 caught an exception and will be retried in 00:01:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:54:40.896 +08:00 [DBG] Execution loop Worker:764c24f1 caught an exception and will be retried in 00:01:21 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:54:40.896 +08:00 [DBG] Execution loop Worker:df59e9d9 caught an exception and will be retried in 00:01:40 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:54:40.896 +08:00 [DBG] Execution loop Worker:7b438f68 caught an exception and will be retried in 00:02:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:54:40.896 +08:00 [DBG] Execution loop Worker:a931b7ac caught an exception and will be retried in 00:02:24 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:54:40.896 +08:00 [DBG] Execution loop Worker:6c69308b caught an exception and will be retried in 00:02:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:54:40.896 +08:00 [DBG] Execution loop Worker:2fa318b2 caught an exception and will be retried in 00:03:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:54:40.896 +08:00 [DBG] Execution loop Worker:6c69308b will be retried in 00:02:49... +2021-09-03 14:54:40.896 +08:00 [DBG] Execution loop Worker:9d396331 caught an exception and will be retried in 00:03:45 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:54:40.896 +08:00 [DBG] Execution loop Worker:2fa318b2 will be retried in 00:03:16... +2021-09-03 14:54:40.896 +08:00 [DBG] Execution loop Worker:a5e8bde5 will be retried in 00:00:01... +2021-09-03 14:54:40.896 +08:00 [DBG] Execution loop Worker:f60ed965 will be retried in 00:01:04... +2021-09-03 14:54:40.896 +08:00 [DBG] Execution loop Worker:7b174fe7 will be retried in 00:00:49... +2021-09-03 14:54:40.896 +08:00 [DBG] Execution loop Worker:48b4b449 caught an exception and will be retried in 00:04:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:54:40.896 +08:00 [DBG] Execution loop Worker:9d396331 will be retried in 00:03:45... +2021-09-03 14:54:40.896 +08:00 [DBG] Execution loop Worker:ac735e9b caught an exception and will be retried in 00:04:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:54:40.896 +08:00 [DBG] Execution loop Worker:48b4b449 will be retried in 00:04:16... +2021-09-03 14:54:40.896 +08:00 [DBG] Execution loop Worker:ac735e9b will be retried in 00:04:49... +2021-09-03 14:54:40.896 +08:00 [DBG] Execution loop Worker:764c24f1 will be retried in 00:01:21... +2021-09-03 14:54:40.896 +08:00 [DBG] Execution loop Worker:df59e9d9 will be retried in 00:01:40... +2021-09-03 14:54:40.896 +08:00 [DBG] Execution loop Worker:7b438f68 will be retried in 00:02:01... +2021-09-03 14:54:40.896 +08:00 [DBG] Execution loop Worker:a931b7ac will be retried in 00:02:24... +2021-09-03 14:54:40.901 +08:00 [DBG] Execution loop Worker:b74e643b will be retried in 00:00:04... +2021-09-03 14:54:40.901 +08:00 [DBG] Execution loop Worker:e2dda7bc will be retried in 00:00:09... +2021-09-03 14:54:40.901 +08:00 [DBG] Execution loop Worker:f36c15e7 will be retried in 00:00:25... +2021-09-03 14:54:40.901 +08:00 [DBG] Execution loop Worker:0894c3b0 will be retried in 00:00:16... +2021-09-03 14:54:40.901 +08:00 [DBG] Execution loop Worker:0bd1f26f will be retried in 00:00:36... +2021-09-03 14:54:40.902 +08:00 [DBG] Execution loop Worker:3302056f caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:54:40.902 +08:00 [DBG] Execution loop Worker:3302056f will be retried in 00:05:00... +2021-09-03 14:54:40.905 +08:00 [DBG] Execution loop Worker:1330f8a7 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:54:40.905 +08:00 [DBG] Execution loop Worker:1330f8a7 will be retried in 00:05:00... +2021-09-03 14:54:40.906 +08:00 [DBG] Execution loop Worker:65c4342a caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:54:40.906 +08:00 [DBG] Execution loop Worker:65c4342a will be retried in 00:05:00... +2021-09-03 14:54:40.917 +08:00 [DBG] Execution RecurringJobScheduler is in the Faulted state now due to an exception, execution will be retried no more than in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:54:40.917 +08:00 [DBG] Execution loop RecurringJobScheduler:88a57205 caught an exception and will be retried in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:54:40.918 +08:00 [DBG] Execution loop RecurringJobScheduler:88a57205 will be retried in 00:00:01... +2021-09-03 14:54:40.987 +08:00 [ERR] MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.ExpirationManager.<>c__DisplayClass9_1.b__0(MySqlConnection connection) +2021-09-03 14:54:40.988 +08:00 [DBG] Removing outdated records from table 'List'... +2021-09-03 14:54:40.989 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-09-03 14:54:40.996 +08:00 [DBG] removed records count=0 +2021-09-03 14:54:40.997 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-09-03 14:54:40.998 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-09-03 14:55:05.515 +08:00 [DBG] Server szqh003802a:31936:530a8160 heartbeat successfully sent +2021-09-03 14:55:11.240 +08:00 [ERR] MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.ExpirationManager.<>c__DisplayClass9_1.b__0(MySqlConnection connection) +2021-09-03 14:55:11.241 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-09-03 14:55:11.242 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-09-03 14:55:12.153 +08:00 [ERR] Execution Worker is in the Failed state now due to an exception, execution will be retried no more than in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:55:12.153 +08:00 [DBG] Execution loop Worker:a5e8bde5 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:55:12.153 +08:00 [DBG] Execution loop Worker:a5e8bde5 will be retried in 00:05:00... +2021-09-03 14:55:12.463 +08:00 [ERR] Execution RecurringJobScheduler is in the Failed state now due to an exception, execution will be retried no more than in 00:00:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:55:12.463 +08:00 [DBG] Execution loop RecurringJobScheduler:88a57205 caught an exception and will be retried in 00:00:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:55:12.463 +08:00 [DBG] Execution loop RecurringJobScheduler:88a57205 will be retried in 00:00:04... +2021-09-03 14:55:15.163 +08:00 [DBG] Execution loop Worker:b74e643b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:55:15.164 +08:00 [DBG] Execution loop Worker:b74e643b will be retried in 00:05:00... +2021-09-03 14:55:20.192 +08:00 [DBG] Execution loop Worker:e2dda7bc caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:55:20.193 +08:00 [DBG] Execution loop Worker:e2dda7bc will be retried in 00:05:00... +2021-09-03 14:55:27.180 +08:00 [DBG] Execution loop Worker:0894c3b0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:55:27.181 +08:00 [DBG] Execution loop Worker:0894c3b0 will be retried in 00:05:00... +2021-09-03 14:55:35.531 +08:00 [DBG] Server szqh003802a:31936:530a8160 heartbeat successfully sent +2021-09-03 14:55:36.200 +08:00 [DBG] Execution loop Worker:f36c15e7 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:55:36.200 +08:00 [DBG] Execution loop Worker:f36c15e7 will be retried in 00:05:00... +2021-09-03 14:55:41.509 +08:00 [ERR] MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.ExpirationManager.<>c__DisplayClass9_1.b__0(MySqlConnection connection) +2021-09-03 14:55:46.798 +08:00 [DBG] Execution loop RecurringJobScheduler:88a57205 caught an exception and will be retried in 00:00:09 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:55:46.798 +08:00 [DBG] Execution loop RecurringJobScheduler:88a57205 will be retried in 00:00:09... +2021-09-03 14:55:47.187 +08:00 [DBG] Execution loop Worker:0bd1f26f caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:55:47.187 +08:00 [DBG] Execution loop Worker:0bd1f26f will be retried in 00:05:00... +2021-09-03 14:56:00.152 +08:00 [DBG] Execution loop Worker:7b174fe7 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:56:00.152 +08:00 [DBG] Execution loop Worker:7b174fe7 will be retried in 00:05:00... +2021-09-03 14:56:05.560 +08:00 [DBG] Server szqh003802a:31936:530a8160 heartbeat successfully sent +2021-09-03 14:56:15.180 +08:00 [DBG] Execution loop Worker:f60ed965 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:56:15.180 +08:00 [DBG] Execution loop Worker:f60ed965 will be retried in 00:05:00... +2021-09-03 14:56:26.104 +08:00 [DBG] Execution loop RecurringJobScheduler:88a57205 caught an exception and will be retried in 00:00:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:56:26.104 +08:00 [DBG] Execution loop RecurringJobScheduler:88a57205 will be retried in 00:00:16... +2021-09-03 14:56:32.157 +08:00 [DBG] Execution loop Worker:764c24f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:56:32.157 +08:00 [DBG] Execution loop Worker:764c24f1 will be retried in 00:05:00... +2021-09-03 14:56:35.579 +08:00 [DBG] Server szqh003802a:31936:530a8160 heartbeat successfully sent +2021-09-03 14:56:51.153 +08:00 [DBG] Execution loop Worker:df59e9d9 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:56:51.153 +08:00 [DBG] Execution loop Worker:df59e9d9 will be retried in 00:05:00... +2021-09-03 14:57:05.615 +08:00 [DBG] Server szqh003802a:31936:530a8160 heartbeat successfully sent +2021-09-03 14:57:12.171 +08:00 [DBG] Execution loop Worker:7b438f68 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:57:12.172 +08:00 [DBG] Execution loop Worker:7b438f68 will be retried in 00:05:00... +2021-09-03 14:57:12.479 +08:00 [DBG] Execution loop RecurringJobScheduler:88a57205 caught an exception and will be retried in 00:00:25 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:57:12.479 +08:00 [DBG] Execution loop RecurringJobScheduler:88a57205 will be retried in 00:00:25... +2021-09-03 14:57:35.182 +08:00 [DBG] Execution loop Worker:a931b7ac caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:57:35.183 +08:00 [DBG] Execution loop Worker:a931b7ac will be retried in 00:05:00... +2021-09-03 14:57:35.643 +08:00 [DBG] Server szqh003802a:31936:530a8160 heartbeat successfully sent +2021-09-03 14:58:00.178 +08:00 [DBG] Execution loop Worker:6c69308b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:58:00.178 +08:00 [DBG] Execution loop Worker:6c69308b will be retried in 00:05:00... +2021-09-03 14:58:05.658 +08:00 [DBG] Server szqh003802a:31936:530a8160 heartbeat successfully sent +2021-09-03 14:58:07.796 +08:00 [DBG] Execution loop RecurringJobScheduler:88a57205 caught an exception and will be retried in 00:00:36 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:58:07.796 +08:00 [DBG] Execution loop RecurringJobScheduler:88a57205 will be retried in 00:00:36... +2021-09-03 14:58:27.192 +08:00 [DBG] Execution loop Worker:2fa318b2 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:58:27.192 +08:00 [DBG] Execution loop Worker:2fa318b2 will be retried in 00:05:00... +2021-09-03 14:58:35.678 +08:00 [DBG] Server szqh003802a:31936:530a8160 heartbeat successfully sent +2021-09-03 14:58:56.147 +08:00 [DBG] Execution loop Worker:9d396331 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:58:56.147 +08:00 [DBG] Execution loop Worker:9d396331 will be retried in 00:05:00... +2021-09-03 14:59:05.489 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 14:59:05.491 +08:00 [INF] 1 servers were removed due to timeout +2021-09-03 14:59:05.697 +08:00 [DBG] Server szqh003802a:31936:530a8160 heartbeat successfully sent +2021-09-03 14:59:14.132 +08:00 [DBG] Execution loop RecurringJobScheduler:88a57205 caught an exception and will be retried in 00:00:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:59:14.132 +08:00 [DBG] Execution loop RecurringJobScheduler:88a57205 will be retried in 00:00:49... +2021-09-03 14:59:27.126 +08:00 [DBG] Execution loop Worker:48b4b449 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 14:59:27.126 +08:00 [DBG] Execution loop Worker:48b4b449 will be retried in 00:05:00... +2021-09-03 14:59:35.716 +08:00 [DBG] Server szqh003802a:31936:530a8160 heartbeat successfully sent +2021-09-03 15:00:00.157 +08:00 [DBG] Execution loop Worker:ac735e9b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:00:00.157 +08:00 [DBG] Execution loop Worker:ac735e9b will be retried in 00:05:00... +2021-09-03 15:00:05.735 +08:00 [DBG] Server szqh003802a:31936:530a8160 heartbeat successfully sent +2021-09-03 15:00:11.642 +08:00 [DBG] Execution loop Worker:3302056f caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:00:11.642 +08:00 [DBG] Execution loop Worker:3302056f will be retried in 00:05:00... +2021-09-03 15:00:11.645 +08:00 [DBG] Execution loop Worker:65c4342a caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:00:11.645 +08:00 [DBG] Execution loop Worker:65c4342a will be retried in 00:05:00... +2021-09-03 15:00:11.646 +08:00 [DBG] Execution loop Worker:1330f8a7 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:00:11.646 +08:00 [DBG] Execution loop Worker:1330f8a7 will be retried in 00:05:00... +2021-09-03 15:00:33.455 +08:00 [DBG] Execution loop RecurringJobScheduler:88a57205 caught an exception and will be retried in 00:01:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:00:33.455 +08:00 [DBG] Execution loop RecurringJobScheduler:88a57205 will be retried in 00:01:04... +2021-09-03 15:00:35.745 +08:00 [DBG] Server szqh003802a:31936:530a8160 heartbeat successfully sent +2021-09-03 15:00:42.390 +08:00 [DBG] Execution loop Worker:a5e8bde5 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:00:42.390 +08:00 [DBG] Execution loop Worker:a5e8bde5 will be retried in 00:05:00... +2021-09-03 15:00:45.402 +08:00 [DBG] Execution loop Worker:b74e643b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:00:45.402 +08:00 [DBG] Execution loop Worker:b74e643b will be retried in 00:05:00... +2021-09-03 15:00:50.421 +08:00 [DBG] Execution loop Worker:e2dda7bc caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:00:50.421 +08:00 [DBG] Execution loop Worker:e2dda7bc will be retried in 00:05:00... +2021-09-03 15:00:57.436 +08:00 [DBG] Execution loop Worker:0894c3b0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:00:57.437 +08:00 [DBG] Execution loop Worker:0894c3b0 will be retried in 00:05:00... +2021-09-03 15:01:05.772 +08:00 [DBG] Server szqh003802a:31936:530a8160 heartbeat successfully sent +2021-09-03 15:01:06.425 +08:00 [DBG] Execution loop Worker:f36c15e7 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:01:06.425 +08:00 [DBG] Execution loop Worker:f36c15e7 will be retried in 00:05:00... +2021-09-03 15:01:17.423 +08:00 [DBG] Execution loop Worker:0bd1f26f caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:01:17.423 +08:00 [DBG] Execution loop Worker:0bd1f26f will be retried in 00:05:00... +2021-09-03 15:01:30.390 +08:00 [DBG] Execution loop Worker:7b174fe7 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:01:30.390 +08:00 [DBG] Execution loop Worker:7b174fe7 will be retried in 00:05:00... +2021-09-03 15:01:35.792 +08:00 [DBG] Server szqh003802a:31936:530a8160 heartbeat successfully sent +2021-09-03 15:01:45.440 +08:00 [DBG] Execution loop Worker:f60ed965 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:01:45.440 +08:00 [DBG] Execution loop Worker:f60ed965 will be retried in 00:05:00... +2021-09-03 15:02:02.390 +08:00 [DBG] Execution loop Worker:764c24f1 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:02:02.390 +08:00 [DBG] Execution loop Worker:764c24f1 will be retried in 00:05:00... +2021-09-03 15:02:05.819 +08:00 [DBG] Server szqh003802a:31936:530a8160 heartbeat successfully sent +2021-09-03 15:02:07.788 +08:00 [DBG] Execution loop RecurringJobScheduler:88a57205 caught an exception and will be retried in 00:01:21 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:02:07.788 +08:00 [DBG] Execution loop RecurringJobScheduler:88a57205 will be retried in 00:01:21... +2021-09-03 15:02:21.376 +08:00 [DBG] Execution loop Worker:df59e9d9 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:02:21.376 +08:00 [DBG] Execution loop Worker:df59e9d9 will be retried in 00:05:00... +2021-09-03 15:02:35.863 +08:00 [DBG] Server szqh003802a:31936:530a8160 heartbeat successfully sent +2021-09-03 15:02:42.427 +08:00 [DBG] Execution loop Worker:7b438f68 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:02:42.427 +08:00 [DBG] Execution loop Worker:7b438f68 will be retried in 00:05:00... +2021-09-03 15:02:59.356 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:02:59.363 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:02:59.369 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 12.7199ms +2021-09-03 15:02:59.371 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-03 15:02:59.372 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:02:59.424 +08:00 [INF] Failed to validate the token. +Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo: 'System.DateTime', Current time: 'System.DateTime'. + at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) + at System.IdentityModel.Tokens.Jwt.JwtSecurityTokenHandler.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, JwtSecurityToken jwtToken, TokenValidationParameters validationParameters) + at System.IdentityModel.Tokens.Jwt.JwtSecurityTokenHandler.ValidateTokenPayload(JwtSecurityToken jwtToken, TokenValidationParameters validationParameters) + at System.IdentityModel.Tokens.Jwt.JwtSecurityTokenHandler.ValidateToken(String token, TokenValidationParameters validationParameters, SecurityToken& validatedToken) + at Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerHandler.HandleAuthenticateAsync() +2021-09-03 15:02:59.427 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo: 'System.DateTime', Current time: 'System.DateTime'. +2021-09-03 15:02:59.429 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:02:59.446 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:03:00.721 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:03:00.740 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 1294.424ms +2021-09-03 15:03:00.740 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:03:00.765 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:03:00.989 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:03:00.989 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:03:00.992 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 1621.1502ms +2021-09-03 15:03:02.408 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:03:02.409 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:03:02.409 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 1.3394ms +2021-09-03 15:03:02.411 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:03:02.411 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:03:02.414 +08:00 [INF] Failed to validate the token. +Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo: 'System.DateTime', Current time: 'System.DateTime'. + at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) + at System.IdentityModel.Tokens.Jwt.JwtSecurityTokenHandler.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, JwtSecurityToken jwtToken, TokenValidationParameters validationParameters) + at System.IdentityModel.Tokens.Jwt.JwtSecurityTokenHandler.ValidateTokenPayload(JwtSecurityToken jwtToken, TokenValidationParameters validationParameters) + at System.IdentityModel.Tokens.Jwt.JwtSecurityTokenHandler.ValidateToken(String token, TokenValidationParameters validationParameters, SecurityToken& validatedToken) + at Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerHandler.HandleAuthenticateAsync() +2021-09-03 15:03:02.414 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo: 'System.DateTime', Current time: 'System.DateTime'. +2021-09-03 15:03:02.426 +08:00 [ERR] An unhandled exception has occurred while executing the request. +System.InvalidOperationException: The AuthorizationPolicy named: 'AbpIdentity.AuditLogsAuditLog' was not found. + at Microsoft.AspNetCore.Authorization.AuthorizationPolicy.CombineAsync(IAuthorizationPolicyProvider policyProvider, IEnumerable`1 authorizeData) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at Volo.Abp.AspNetCore.MultiTenancy.MultiTenancyMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Volo.Abp.AspNetCore.Tracing.AbpCorrelationIdMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.RequestLocalization.AbpRequestLocalizationMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2021-09-03 15:03:02.433 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 500 - text/plain 22.1883ms +2021-09-03 15:03:05.432 +08:00 [DBG] Execution loop Worker:a931b7ac caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:03:05.432 +08:00 [DBG] Execution loop Worker:a931b7ac will be retried in 00:05:00... +2021-09-03 15:03:05.886 +08:00 [DBG] Server szqh003802a:31936:530a8160 heartbeat successfully sent +2021-09-03 15:03:30.425 +08:00 [DBG] Execution loop Worker:6c69308b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:03:30.425 +08:00 [DBG] Execution loop Worker:6c69308b will be retried in 00:05:00... +2021-09-03 15:03:34.454 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:03:34.454 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:03:34.454 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4429ms +2021-09-03 15:03:34.456 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:03:34.456 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:03:34.459 +08:00 [INF] Failed to validate the token. +Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo: 'System.DateTime', Current time: 'System.DateTime'. + at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) + at System.IdentityModel.Tokens.Jwt.JwtSecurityTokenHandler.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, JwtSecurityToken jwtToken, TokenValidationParameters validationParameters) + at System.IdentityModel.Tokens.Jwt.JwtSecurityTokenHandler.ValidateTokenPayload(JwtSecurityToken jwtToken, TokenValidationParameters validationParameters) + at System.IdentityModel.Tokens.Jwt.JwtSecurityTokenHandler.ValidateToken(String token, TokenValidationParameters validationParameters, SecurityToken& validatedToken) + at Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerHandler.HandleAuthenticateAsync() +2021-09-03 15:03:34.459 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo: 'System.DateTime', Current time: 'System.DateTime'. +2021-09-03 15:03:34.462 +08:00 [ERR] An unhandled exception has occurred while executing the request. +System.InvalidOperationException: The AuthorizationPolicy named: 'AbpIdentity.AuditLogsAuditLog' was not found. + at Microsoft.AspNetCore.Authorization.AuthorizationPolicy.CombineAsync(IAuthorizationPolicyProvider policyProvider, IEnumerable`1 authorizeData) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at Volo.Abp.AspNetCore.MultiTenancy.MultiTenancyMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Volo.Abp.AspNetCore.Tracing.AbpCorrelationIdMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.RequestLocalization.AbpRequestLocalizationMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2021-09-03 15:03:34.463 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 500 - text/plain 7.1199ms +2021-09-03 15:03:35.912 +08:00 [DBG] Server szqh003802a:31936:530a8160 heartbeat successfully sent +2021-09-03 15:03:57.477 +08:00 [DBG] Execution loop Worker:2fa318b2 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:03:57.477 +08:00 [DBG] Execution loop Worker:2fa318b2 will be retried in 00:05:00... +2021-09-03 15:03:59.146 +08:00 [DBG] Execution loop RecurringJobScheduler:88a57205 caught an exception and will be retried in 00:01:40 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:03:59.146 +08:00 [DBG] Execution loop RecurringJobScheduler:88a57205 will be retried in 00:01:40... +2021-09-03 15:04:14.480 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-09-03 15:04:19.702 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-09-03 15:04:19.820 +08:00 [INF] Loaded ABP modules: +2021-09-03 15:04:19.820 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-09-03 15:04:19.820 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-09-03 15:04:19.820 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-09-03 15:04:19.820 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-09-03 15:04:19.820 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-09-03 15:04:19.820 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-09-03 15:04:19.820 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-09-03 15:04:19.820 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-09-03 15:04:19.820 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-09-03 15:04:19.820 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-09-03 15:04:19.820 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-09-03 15:04:19.820 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-09-03 15:04:19.820 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-09-03 15:04:19.820 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-09-03 15:04:19.820 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-09-03 15:04:19.820 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-09-03 15:04:19.820 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-09-03 15:04:19.820 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-09-03 15:04:19.820 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-09-03 15:04:19.820 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-09-03 15:04:19.820 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-09-03 15:04:19.820 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-09-03 15:04:19.820 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-09-03 15:04:19.820 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-09-03 15:04:19.820 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-09-03 15:04:19.820 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-09-03 15:04:19.820 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-09-03 15:04:19.820 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-09-03 15:04:19.820 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-09-03 15:04:19.820 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-09-03 15:04:19.820 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-09-03 15:04:19.820 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-09-03 15:04:19.820 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-09-03 15:04:19.821 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-09-03 15:04:19.821 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-09-03 15:04:19.821 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-09-03 15:04:19.821 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-09-03 15:04:19.821 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule +2021-09-03 15:04:19.821 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-09-03 15:04:19.821 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-09-03 15:04:19.821 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-09-03 15:04:19.821 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-09-03 15:04:19.821 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-09-03 15:04:19.821 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-09-03 15:04:19.821 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-09-03 15:04:19.821 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-09-03 15:04:19.821 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-09-03 15:04:19.932 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-09-03 15:04:19.936 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-09-03 15:04:20.091 +08:00 [INF] DB tables already exist. Exit install +2021-09-03 15:04:20.117 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-09-03 15:04:20.117 +08:00 [INF] Using the following options for SQL Server job storage: +2021-09-03 15:04:20.117 +08:00 [INF] Queue poll interval: 00:00:15. +2021-09-03 15:04:20.117 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-09-03 15:04:20.148 +08:00 [DBG] Execution loop BackgroundServerProcess:5cf90027 has started in 13.1147 ms +2021-09-03 15:04:20.288 +08:00 [INF] Server szqh003802a:34412:160ef191 successfully announced in 123.3824 ms +2021-09-03 15:04:20.292 +08:00 [INF] Server szqh003802a:34412:160ef191 is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-09-03 15:04:20.316 +08:00 [DBG] Execution loop ServerHeartbeatProcess:629e9d9a has started in 27.4188 ms +2021-09-03 15:04:20.319 +08:00 [DBG] Execution loop ServerWatchdog:c5d07d17 has started in 27.165 ms +2021-09-03 15:04:20.322 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:670a84d7 has started in 4.9209 ms +2021-09-03 15:04:20.324 +08:00 [DBG] Execution loop ExpirationManager:9a7002f8 has started in 3.8414 ms +2021-09-03 15:04:20.326 +08:00 [DBG] Execution loop CountersAggregator:3fa2c977 has started in 4.1971 ms +2021-09-03 15:04:20.329 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 15:04:20.329 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-09-03 15:04:20.330 +08:00 [DBG] Execution loop Worker:89655786 has started in 4.9243 ms +2021-09-03 15:04:20.334 +08:00 [DBG] Execution loop Worker:f16c4b0e has started in 9.3216 ms +2021-09-03 15:04:20.334 +08:00 [DBG] Execution loop Worker:76db0ae5 has started in 9.3327 ms +2021-09-03 15:04:20.335 +08:00 [DBG] Execution loop Worker:a2783a87 has started in 10.8441 ms +2021-09-03 15:04:20.339 +08:00 [DBG] Execution loop Worker:98191c03 has started in 14.0078 ms +2021-09-03 15:04:20.340 +08:00 [DBG] Execution loop Worker:06d7d079 has started in 16.1563 ms +2021-09-03 15:04:20.342 +08:00 [DBG] Execution loop Worker:3384419d has started in 17.4936 ms +2021-09-03 15:04:20.343 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-03 15:04:20.347 +08:00 [DBG] Execution loop Worker:2be72551 has started in 22.1658 ms +2021-09-03 15:04:20.349 +08:00 [DBG] Execution loop Worker:fa1da7a2 has started in 24.1361 ms +2021-09-03 15:04:20.354 +08:00 [DBG] Execution loop Worker:e18c1e48 has started in 29.18 ms +2021-09-03 15:04:20.356 +08:00 [DBG] Execution loop Worker:d164d19b has started in 31.7229 ms +2021-09-03 15:04:20.361 +08:00 [DBG] Execution loop Worker:2122f58c has started in 36.2045 ms +2021-09-03 15:04:20.368 +08:00 [DBG] Execution loop Worker:4a2584be has started in 43.7753 ms +2021-09-03 15:04:20.380 +08:00 [DBG] Execution loop Worker:6763885a has started in 56.1565 ms +2021-09-03 15:04:20.389 +08:00 [DBG] Execution loop Worker:f1d701a1 has started in 64.8273 ms +2021-09-03 15:04:20.392 +08:00 [DBG] Execution loop Worker:33927333 has started in 67.2429 ms +2021-09-03 15:04:20.399 +08:00 [DBG] Execution loop Worker:a1e9e99a has started in 74.1667 ms +2021-09-03 15:04:20.403 +08:00 [DBG] removed records count=1 +2021-09-03 15:04:20.403 +08:00 [DBG] Execution loop Worker:7d9177dd has started in 78.6504 ms +2021-09-03 15:04:20.408 +08:00 [DBG] Execution loop Worker:38fc85ca has started in 83.1849 ms +2021-09-03 15:04:20.414 +08:00 [DBG] Execution loop Worker:cb52e39b has started in 89.0111 ms +2021-09-03 15:04:20.417 +08:00 [DBG] Execution loop DelayedJobScheduler:ec170fd6 has started in 9.5031 ms +2021-09-03 15:04:20.418 +08:00 [INF] Server szqh003802a:34412:160ef191 all the dispatchers started +2021-09-03 15:04:20.425 +08:00 [DBG] Execution loop RecurringJobScheduler:374ab1ab has started in 10.636 ms +2021-09-03 15:04:21.424 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-03 15:04:21.439 +08:00 [DBG] removed records count=0 +2021-09-03 15:04:21.440 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-09-03 15:04:21.450 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-09-03 15:04:35.574 +08:00 [INF] Initialized all ABP modules. +2021-09-03 15:04:35.639 +08:00 [INF] Now listening on: http://localhost:44315 +2021-09-03 15:04:35.639 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-09-03 15:04:35.639 +08:00 [INF] Hosting environment: Development +2021-09-03 15:04:35.639 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-09-03 15:04:35.892 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-09-03 15:04:35.892 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:04:36.458 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:04:36.569 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 667.2567ms +2021-09-03 15:04:36.603 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:04:36.612 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:04:36.837 +08:00 [INF] Failed to validate the token. +Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo: 'System.DateTime', Current time: 'System.DateTime'. + at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) + at System.IdentityModel.Tokens.Jwt.JwtSecurityTokenHandler.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, JwtSecurityToken jwtToken, TokenValidationParameters validationParameters) + at System.IdentityModel.Tokens.Jwt.JwtSecurityTokenHandler.ValidateTokenPayload(JwtSecurityToken jwtToken, TokenValidationParameters validationParameters) + at System.IdentityModel.Tokens.Jwt.JwtSecurityTokenHandler.ValidateToken(String token, TokenValidationParameters validationParameters, SecurityToken& validatedToken) + at Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerHandler.HandleAuthenticateAsync() +2021-09-03 15:04:36.850 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo: 'System.DateTime', Current time: 'System.DateTime'. +2021-09-03 15:04:36.952 +08:00 [ERR] An unhandled exception has occurred while executing the request. +System.InvalidOperationException: The AuthorizationPolicy named: 'AbpIdentity.AuditLogsAuditLog' was not found. + at Microsoft.AspNetCore.Authorization.AuthorizationPolicy.CombineAsync(IAuthorizationPolicyProvider policyProvider, IEnumerable`1 authorizeData) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at Volo.Abp.AspNetCore.MultiTenancy.MultiTenancyMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Volo.Abp.AspNetCore.Tracing.AbpCorrelationIdMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.RequestLocalization.AbpRequestLocalizationMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2021-09-03 15:04:36.964 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 500 - text/plain 360.9328ms +2021-09-03 15:04:37.029 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-03 15:04:37.091 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-09-03 15:04:37.126 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-09-03 15:04:37.132 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 36.9703ms +2021-09-03 15:04:37.132 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-03 15:04:37.135 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 1246.8393ms +2021-09-03 15:04:37.140 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-09-03 15:04:37.192 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 51.9961ms +2021-09-03 15:04:37.345 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-09-03 15:04:37.700 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 355.0851ms +2021-09-03 15:04:40.633 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:04:40.633 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:04:40.636 +08:00 [INF] Failed to validate the token. +Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo: 'System.DateTime', Current time: 'System.DateTime'. + at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) + at System.IdentityModel.Tokens.Jwt.JwtSecurityTokenHandler.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, JwtSecurityToken jwtToken, TokenValidationParameters validationParameters) + at System.IdentityModel.Tokens.Jwt.JwtSecurityTokenHandler.ValidateTokenPayload(JwtSecurityToken jwtToken, TokenValidationParameters validationParameters) + at System.IdentityModel.Tokens.Jwt.JwtSecurityTokenHandler.ValidateToken(String token, TokenValidationParameters validationParameters, SecurityToken& validatedToken) + at Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerHandler.HandleAuthenticateAsync() +2021-09-03 15:04:40.636 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo: 'System.DateTime', Current time: 'System.DateTime'. +2021-09-03 15:04:40.638 +08:00 [ERR] An unhandled exception has occurred while executing the request. +System.InvalidOperationException: The AuthorizationPolicy named: 'AbpIdentity.AuditLogsAuditLog' was not found. + at Microsoft.AspNetCore.Authorization.AuthorizationPolicy.CombineAsync(IAuthorizationPolicyProvider policyProvider, IEnumerable`1 authorizeData) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at Volo.Abp.AspNetCore.MultiTenancy.MultiTenancyMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Volo.Abp.AspNetCore.Tracing.AbpCorrelationIdMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.RequestLocalization.AbpRequestLocalizationMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2021-09-03 15:04:40.639 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 500 - text/plain 6.3735ms +2021-09-03 15:04:41.595 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:04:41.595 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:04:41.595 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.5042ms +2021-09-03 15:04:41.597 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:04:41.598 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:04:41.600 +08:00 [INF] Failed to validate the token. +Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo: 'System.DateTime', Current time: 'System.DateTime'. + at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) + at System.IdentityModel.Tokens.Jwt.JwtSecurityTokenHandler.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, JwtSecurityToken jwtToken, TokenValidationParameters validationParameters) + at System.IdentityModel.Tokens.Jwt.JwtSecurityTokenHandler.ValidateTokenPayload(JwtSecurityToken jwtToken, TokenValidationParameters validationParameters) + at System.IdentityModel.Tokens.Jwt.JwtSecurityTokenHandler.ValidateToken(String token, TokenValidationParameters validationParameters, SecurityToken& validatedToken) + at Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerHandler.HandleAuthenticateAsync() +2021-09-03 15:04:41.600 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo: 'System.DateTime', Current time: 'System.DateTime'. +2021-09-03 15:04:41.603 +08:00 [ERR] An unhandled exception has occurred while executing the request. +System.InvalidOperationException: The AuthorizationPolicy named: 'AbpIdentity.AuditLogsAuditLog' was not found. + at Microsoft.AspNetCore.Authorization.AuthorizationPolicy.CombineAsync(IAuthorizationPolicyProvider policyProvider, IEnumerable`1 authorizeData) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at Volo.Abp.AspNetCore.MultiTenancy.MultiTenancyMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Volo.Abp.AspNetCore.Tracing.AbpCorrelationIdMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.RequestLocalization.AbpRequestLocalizationMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2021-09-03 15:04:41.603 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 500 - text/plain 6.1467ms +2021-09-03 15:04:50.366 +08:00 [DBG] Server szqh003802a:34412:160ef191 heartbeat successfully sent +2021-09-03 15:04:55.894 +08:00 [DBG] Execution Worker is in the Faulted state now due to an exception, execution will be retried no more than in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:04:55.894 +08:00 [DBG] Execution loop Worker:e18c1e48 caught an exception and will be retried in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:04:55.894 +08:00 [DBG] Execution loop Worker:89655786 caught an exception and will be retried in 00:00:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:04:55.895 +08:00 [DBG] Execution loop Worker:f16c4b0e caught an exception and will be retried in 00:00:09 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:04:55.895 +08:00 [DBG] Execution loop Worker:76db0ae5 caught an exception and will be retried in 00:00:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:04:55.895 +08:00 [DBG] Execution loop Worker:a2783a87 caught an exception and will be retried in 00:00:25 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:04:55.895 +08:00 [DBG] Execution loop Worker:98191c03 caught an exception and will be retried in 00:00:36 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:04:55.895 +08:00 [DBG] Execution loop Worker:06d7d079 caught an exception and will be retried in 00:00:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:04:55.895 +08:00 [DBG] Execution loop Worker:3384419d caught an exception and will be retried in 00:01:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:04:55.895 +08:00 [DBG] Execution loop Worker:2be72551 caught an exception and will be retried in 00:01:21 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:04:55.895 +08:00 [DBG] Execution loop Worker:fa1da7a2 caught an exception and will be retried in 00:01:40 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:04:55.895 +08:00 [DBG] Execution loop Worker:2122f58c caught an exception and will be retried in 00:02:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:04:55.895 +08:00 [DBG] Execution loop Worker:f1d701a1 caught an exception and will be retried in 00:02:24 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:04:55.895 +08:00 [DBG] Execution loop Worker:33927333 caught an exception and will be retried in 00:02:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:04:55.895 +08:00 [DBG] Execution loop Worker:7d9177dd caught an exception and will be retried in 00:03:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:04:55.895 +08:00 [DBG] Execution loop Worker:cb52e39b caught an exception and will be retried in 00:04:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:04:55.895 +08:00 [DBG] Execution loop Worker:38fc85ca caught an exception and will be retried in 00:03:45 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:04:55.895 +08:00 [DBG] Execution loop Worker:e18c1e48 will be retried in 00:00:01... +2021-09-03 15:04:55.895 +08:00 [DBG] Execution loop Worker:2be72551 will be retried in 00:01:21... +2021-09-03 15:04:55.896 +08:00 [DBG] Execution loop Worker:89655786 will be retried in 00:00:04... +2021-09-03 15:04:55.896 +08:00 [DBG] Execution loop Worker:f16c4b0e will be retried in 00:00:09... +2021-09-03 15:04:55.896 +08:00 [DBG] Execution loop Worker:76db0ae5 will be retried in 00:00:16... +2021-09-03 15:04:55.896 +08:00 [DBG] Execution loop Worker:a2783a87 will be retried in 00:00:25... +2021-09-03 15:04:55.896 +08:00 [DBG] Execution loop Worker:98191c03 will be retried in 00:00:36... +2021-09-03 15:04:55.896 +08:00 [DBG] Execution loop Worker:2122f58c will be retried in 00:02:01... +2021-09-03 15:04:55.896 +08:00 [DBG] Execution loop Worker:f1d701a1 will be retried in 00:02:24... +2021-09-03 15:04:55.896 +08:00 [DBG] Execution loop Worker:fa1da7a2 will be retried in 00:01:40... +2021-09-03 15:04:55.896 +08:00 [DBG] Execution loop Worker:33927333 will be retried in 00:02:49... +2021-09-03 15:04:55.896 +08:00 [DBG] Execution loop Worker:06d7d079 will be retried in 00:00:49... +2021-09-03 15:04:55.896 +08:00 [DBG] Execution loop Worker:3384419d will be retried in 00:01:04... +2021-09-03 15:04:55.896 +08:00 [DBG] Execution loop Worker:7d9177dd will be retried in 00:03:16... +2021-09-03 15:04:55.896 +08:00 [DBG] Execution loop Worker:cb52e39b will be retried in 00:04:16... +2021-09-03 15:04:55.896 +08:00 [DBG] Execution loop Worker:38fc85ca will be retried in 00:03:45... +2021-09-03 15:04:55.896 +08:00 [DBG] Execution loop Worker:d164d19b caught an exception and will be retried in 00:04:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:04:55.896 +08:00 [DBG] Execution loop Worker:d164d19b will be retried in 00:04:49... +2021-09-03 15:04:55.899 +08:00 [DBG] Execution loop Worker:4a2584be caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:04:55.900 +08:00 [DBG] Execution loop Worker:4a2584be will be retried in 00:05:00... +2021-09-03 15:04:55.901 +08:00 [DBG] Execution loop Worker:a1e9e99a caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:04:55.901 +08:00 [DBG] Execution loop Worker:a1e9e99a will be retried in 00:05:00... +2021-09-03 15:04:55.903 +08:00 [DBG] Execution loop Worker:6763885a caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:04:55.903 +08:00 [DBG] Execution loop Worker:6763885a will be retried in 00:05:00... +2021-09-03 15:04:55.919 +08:00 [DBG] Execution RecurringJobScheduler is in the Faulted state now due to an exception, execution will be retried no more than in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:04:55.919 +08:00 [DBG] Execution loop RecurringJobScheduler:374ab1ab caught an exception and will be retried in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:04:55.919 +08:00 [DBG] Execution loop RecurringJobScheduler:374ab1ab will be retried in 00:00:01... +2021-09-03 15:04:55.948 +08:00 [ERR] MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.ExpirationManager.<>c__DisplayClass9_1.b__0(MySqlConnection connection) +2021-09-03 15:04:55.949 +08:00 [DBG] Removing outdated records from table 'List'... +2021-09-03 15:04:55.950 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-09-03 15:04:55.959 +08:00 [DBG] removed records count=0 +2021-09-03 15:04:55.960 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-09-03 15:04:55.961 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-09-03 15:05:25.907 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-09-03 15:05:30.621 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-09-03 15:05:30.735 +08:00 [INF] Loaded ABP modules: +2021-09-03 15:05:30.735 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-09-03 15:05:30.735 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-09-03 15:05:30.735 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-09-03 15:05:30.735 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-09-03 15:05:30.735 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-09-03 15:05:30.735 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-09-03 15:05:30.735 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-09-03 15:05:30.735 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-09-03 15:05:30.736 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-09-03 15:05:30.736 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule +2021-09-03 15:05:30.736 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-09-03 15:05:30.736 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-09-03 15:05:30.736 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-09-03 15:05:30.736 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-09-03 15:05:30.736 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-09-03 15:05:30.736 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-09-03 15:05:30.736 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-09-03 15:05:30.736 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-09-03 15:05:30.736 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-09-03 15:05:30.821 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-09-03 15:05:30.823 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-09-03 15:05:30.959 +08:00 [INF] DB tables already exist. Exit install +2021-09-03 15:05:30.982 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-09-03 15:05:30.982 +08:00 [INF] Using the following options for SQL Server job storage: +2021-09-03 15:05:30.982 +08:00 [INF] Queue poll interval: 00:00:15. +2021-09-03 15:05:30.982 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-09-03 15:05:31.003 +08:00 [DBG] Execution loop BackgroundServerProcess:abc2b67b has started in 5.7947 ms +2021-09-03 15:05:31.131 +08:00 [INF] Server szqh003802a:9808:f9755d0f successfully announced in 110.4061 ms +2021-09-03 15:05:31.134 +08:00 [INF] Server szqh003802a:9808:f9755d0f is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-09-03 15:05:31.135 +08:00 [DBG] Execution loop ServerHeartbeatProcess:631cf957 has started in 3.746 ms +2021-09-03 15:05:31.174 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:0ea6bd6c has started in 30.1165 ms +2021-09-03 15:05:31.174 +08:00 [DBG] Execution loop ServerWatchdog:1957353e has started in 39.9469 ms +2021-09-03 15:05:31.177 +08:00 [DBG] Execution loop ExpirationManager:0182a810 has started in 2.5629 ms +2021-09-03 15:05:31.179 +08:00 [DBG] Execution loop CountersAggregator:14ee95b9 has started in 3.9708 ms +2021-09-03 15:05:31.181 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 15:05:31.181 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-09-03 15:05:31.182 +08:00 [DBG] Execution loop Worker:4fb9dff4 has started in 5.6214 ms +2021-09-03 15:05:31.183 +08:00 [DBG] Execution loop Worker:da8fa822 has started in 6.757 ms +2021-09-03 15:05:31.186 +08:00 [DBG] Execution loop Worker:6a5f0b07 has started in 9.0403 ms +2021-09-03 15:05:31.190 +08:00 [DBG] Execution loop Worker:bcf441fc has started in 12.8432 ms +2021-09-03 15:05:31.191 +08:00 [DBG] Execution loop Worker:cac19e31 has started in 13.9791 ms +2021-09-03 15:05:31.193 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-03 15:05:31.194 +08:00 [DBG] Execution loop Worker:cfbcd0b2 has started in 16.5951 ms +2021-09-03 15:05:31.196 +08:00 [DBG] Execution loop Worker:f00a5c85 has started in 18.5887 ms +2021-09-03 15:05:31.198 +08:00 [DBG] Execution loop Worker:7fd71b69 has started in 20.8582 ms +2021-09-03 15:05:31.200 +08:00 [DBG] Execution loop Worker:c3ee67ed has started in 23.3617 ms +2021-09-03 15:05:31.204 +08:00 [DBG] Execution loop Worker:8bc2411b has started in 26.3605 ms +2021-09-03 15:05:31.207 +08:00 [DBG] Execution loop Worker:c3acbdb7 has started in 30.1412 ms +2021-09-03 15:05:31.212 +08:00 [DBG] Execution loop Worker:188b2b38 has started in 35.3577 ms +2021-09-03 15:05:31.225 +08:00 [DBG] Execution loop Worker:c202da8b has started in 48.1481 ms +2021-09-03 15:05:31.235 +08:00 [DBG] Execution loop Worker:645865dc has started in 57.9826 ms +2021-09-03 15:05:31.235 +08:00 [DBG] Execution loop Worker:71a7b6bb has started in 58.1635 ms +2021-09-03 15:05:31.244 +08:00 [DBG] Execution loop Worker:fbb05fae has started in 67.0161 ms +2021-09-03 15:05:31.252 +08:00 [DBG] Execution loop Worker:db488a79 has started in 74.5446 ms +2021-09-03 15:05:31.252 +08:00 [DBG] removed records count=0 +2021-09-03 15:05:31.255 +08:00 [DBG] Execution loop Worker:e453199a has started in 77.7455 ms +2021-09-03 15:05:31.258 +08:00 [DBG] Execution loop Worker:93a19431 has started in 80.7445 ms +2021-09-03 15:05:31.258 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-09-03 15:05:31.263 +08:00 [DBG] Execution loop Worker:2c300d80 has started in 85.599 ms +2021-09-03 15:05:31.264 +08:00 [DBG] Execution loop DelayedJobScheduler:088a7257 has started in 6.9693 ms +2021-09-03 15:05:31.265 +08:00 [INF] Server szqh003802a:9808:f9755d0f all the dispatchers started +2021-09-03 15:05:31.269 +08:00 [DBG] Execution loop RecurringJobScheduler:8a78c666 has started in 7.5854 ms +2021-09-03 15:05:31.276 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-09-03 15:05:31.708 +08:00 [INF] Initialized all ABP modules. +2021-09-03 15:05:31.777 +08:00 [INF] Now listening on: http://localhost:44315 +2021-09-03 15:05:31.777 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-09-03 15:05:31.777 +08:00 [INF] Hosting environment: Development +2021-09-03 15:05:31.777 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-09-03 15:05:32.378 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-09-03 15:05:34.010 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-03 15:05:34.080 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-09-03 15:05:34.116 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-09-03 15:05:34.122 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 38.4002ms +2021-09-03 15:05:34.123 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-03 15:05:34.142 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 1765.4692ms +2021-09-03 15:05:34.158 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-09-03 15:05:34.215 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 56.9365ms +2021-09-03 15:05:34.382 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-09-03 15:05:34.736 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 354.3793ms +2021-09-03 15:05:36.550 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:05:36.556 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:05:36.561 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 11.0937ms +2021-09-03 15:05:36.564 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:05:36.564 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:05:36.609 +08:00 [INF] Failed to validate the token. +Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo: 'System.DateTime', Current time: 'System.DateTime'. + at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) + at System.IdentityModel.Tokens.Jwt.JwtSecurityTokenHandler.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, JwtSecurityToken jwtToken, TokenValidationParameters validationParameters) + at System.IdentityModel.Tokens.Jwt.JwtSecurityTokenHandler.ValidateTokenPayload(JwtSecurityToken jwtToken, TokenValidationParameters validationParameters) + at System.IdentityModel.Tokens.Jwt.JwtSecurityTokenHandler.ValidateToken(String token, TokenValidationParameters validationParameters, SecurityToken& validatedToken) + at Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerHandler.HandleAuthenticateAsync() +2021-09-03 15:05:36.611 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo: 'System.DateTime', Current time: 'System.DateTime'. +2021-09-03 15:05:36.618 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:05:36.652 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:05:36.705 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:05:36.705 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 52.8015ms +2021-09-03 15:05:36.705 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:05:37.142 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:05:37.142 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:05:37.146 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 582.2742ms +2021-09-03 15:06:01.221 +08:00 [DBG] Server szqh003802a:9808:f9755d0f heartbeat successfully sent +2021-09-03 15:06:04.027 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/api/app/account/login - - +2021-09-03 15:06:04.443 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:06:04.486 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/api/app/account/login - - - 204 - - 457.3788ms +2021-09-03 15:06:04.627 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/api/app/account/login application/json 37 +2021-09-03 15:06:04.786 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:06:06.126 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AccountController.LoginAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:06:06.538 +08:00 [INF] Route matched with {action = "Login", controller = "Account", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[CompanyName.ProjectName.Users.Dtos.LoginOutput] LoginAsync(CompanyName.ProjectName.Users.Dtos.LoginInput) on controller CompanyName.ProjectName.Controllers.Systems.AccountController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:06:06.542 +08:00 [DBG] Execution Worker is in the Faulted state now due to an exception, execution will be retried no more than in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:06:06.542 +08:00 [DBG] Execution loop Worker:2c300d80 caught an exception and will be retried in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:06:06.542 +08:00 [DBG] Execution loop Worker:4fb9dff4 caught an exception and will be retried in 00:00:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:06:06.542 +08:00 [DBG] Execution loop Worker:da8fa822 caught an exception and will be retried in 00:00:09 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:06:06.542 +08:00 [DBG] Execution loop Worker:6a5f0b07 caught an exception and will be retried in 00:00:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:06:06.542 +08:00 [DBG] Execution loop Worker:bcf441fc caught an exception and will be retried in 00:00:25 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:06:06.542 +08:00 [DBG] Execution loop Worker:cac19e31 caught an exception and will be retried in 00:00:36 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:06:06.542 +08:00 [DBG] Execution loop Worker:cfbcd0b2 caught an exception and will be retried in 00:00:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:06:06.542 +08:00 [DBG] Execution loop Worker:f00a5c85 caught an exception and will be retried in 00:01:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:06:06.542 +08:00 [DBG] Execution loop Worker:c3ee67ed caught an exception and will be retried in 00:01:21 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:06:06.543 +08:00 [DBG] Execution loop Worker:8bc2411b caught an exception and will be retried in 00:01:40 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:06:06.543 +08:00 [DBG] Execution loop Worker:c3acbdb7 caught an exception and will be retried in 00:02:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:06:06.543 +08:00 [DBG] Execution loop Worker:188b2b38 caught an exception and will be retried in 00:02:24 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:06:06.543 +08:00 [DBG] Execution loop Worker:c202da8b caught an exception and will be retried in 00:02:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:06:06.543 +08:00 [DBG] Execution loop Worker:71a7b6bb caught an exception and will be retried in 00:03:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:06:06.543 +08:00 [DBG] Execution loop Worker:645865dc caught an exception and will be retried in 00:03:45 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:06:06.543 +08:00 [DBG] Execution loop Worker:fbb05fae caught an exception and will be retried in 00:04:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:06:06.543 +08:00 [DBG] Execution loop Worker:e453199a caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:06:06.543 +08:00 [DBG] Execution loop Worker:db488a79 caught an exception and will be retried in 00:04:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:06:06.544 +08:00 [DBG] Execution loop Worker:2c300d80 will be retried in 00:00:01... +2021-09-03 15:06:06.544 +08:00 [DBG] Execution loop Worker:da8fa822 will be retried in 00:00:09... +2021-09-03 15:06:06.544 +08:00 [DBG] Execution loop Worker:db488a79 will be retried in 00:04:49... +2021-09-03 15:06:06.544 +08:00 [DBG] Execution loop Worker:4fb9dff4 will be retried in 00:00:04... +2021-09-03 15:06:06.544 +08:00 [DBG] Execution loop Worker:bcf441fc will be retried in 00:00:25... +2021-09-03 15:06:06.544 +08:00 [DBG] Execution loop Worker:cfbcd0b2 will be retried in 00:00:49... +2021-09-03 15:06:06.544 +08:00 [DBG] Execution loop Worker:cac19e31 will be retried in 00:00:36... +2021-09-03 15:06:06.544 +08:00 [DBG] Execution loop Worker:6a5f0b07 will be retried in 00:00:16... +2021-09-03 15:06:06.544 +08:00 [DBG] Execution loop Worker:f00a5c85 will be retried in 00:01:04... +2021-09-03 15:06:06.544 +08:00 [DBG] Execution loop Worker:c3ee67ed will be retried in 00:01:21... +2021-09-03 15:06:06.544 +08:00 [DBG] Execution loop Worker:8bc2411b will be retried in 00:01:40... +2021-09-03 15:06:06.544 +08:00 [DBG] Execution loop Worker:c3acbdb7 will be retried in 00:02:01... +2021-09-03 15:06:06.544 +08:00 [DBG] Execution loop Worker:71a7b6bb will be retried in 00:03:16... +2021-09-03 15:06:06.544 +08:00 [DBG] Execution loop Worker:188b2b38 will be retried in 00:02:24... +2021-09-03 15:06:06.544 +08:00 [DBG] Execution loop Worker:e453199a will be retried in 00:05:00... +2021-09-03 15:06:06.544 +08:00 [DBG] Execution loop Worker:645865dc will be retried in 00:03:45... +2021-09-03 15:06:06.544 +08:00 [DBG] Execution loop Worker:fbb05fae will be retried in 00:04:16... +2021-09-03 15:06:06.544 +08:00 [DBG] Execution loop Worker:c202da8b will be retried in 00:02:49... +2021-09-03 15:06:06.545 +08:00 [DBG] Execution loop Worker:7fd71b69 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:06:06.545 +08:00 [DBG] Execution loop Worker:7fd71b69 will be retried in 00:05:00... +2021-09-03 15:06:06.545 +08:00 [DBG] Execution loop Worker:93a19431 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:06:06.545 +08:00 [DBG] Execution loop Worker:93a19431 will be retried in 00:05:00... +2021-09-03 15:06:06.684 +08:00 [ERR] MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.ExpirationManager.<>c__DisplayClass9_1.b__0(MySqlConnection connection) +2021-09-03 15:06:06.685 +08:00 [DBG] Removing outdated records from table 'List'... +2021-09-03 15:06:06.686 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-09-03 15:06:06.696 +08:00 [DBG] removed records count=0 +2021-09-03 15:06:06.697 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-09-03 15:06:06.699 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-09-03 15:06:07.995 +08:00 [WRN] The cookie '.AspNetCore.Identity.Application' has set 'SameSite=None' and must also set 'Secure'. +2021-09-03 15:06:07.997 +08:00 [INF] AuthenticationScheme: Identity.Application signed in. +2021-09-03 15:06:08.056 +08:00 [INF] Executing ObjectResult, writing value of type 'CompanyName.ProjectName.Users.Dtos.LoginOutput'. +2021-09-03 15:06:08.070 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AccountController.LoginAsync (CompanyName.ProjectName.HttpApi) in 1531.0679ms +2021-09-03 15:06:08.070 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AccountController.LoginAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:06:08.075 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:06:08.137 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:06:08.137 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:06:08.139 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/api/app/account/login application/json 37 - 200 - application/json;+charset=utf-8 3531.8336ms +2021-09-03 15:06:08.143 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/api/abp/application-configuration - - +2021-09-03 15:06:08.143 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:06:08.143 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/api/abp/application-configuration - - - 204 - - 0.7899ms +2021-09-03 15:06:08.146 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/api/abp/application-configuration - - +2021-09-03 15:06:08.147 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:06:08.157 +08:00 [INF] Successfully validated the token. +2021-09-03 15:06:08.165 +08:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' +2021-09-03 15:06:08.168 +08:00 [INF] Route matched with {area = "abp", action = "Get", controller = "AbpApplicationConfiguration", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto] GetAsync() on controller Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController (Volo.Abp.AspNetCore.Mvc). +2021-09-03 15:06:08.201 +08:00 [WRN] The cookie 'XSRF-TOKEN' has set 'SameSite=None' and must also set 'Secure'. +2021-09-03 15:06:08.206 +08:00 [DBG] Executing AbpApplicationConfigurationAppService.GetAsync()... +2021-09-03 15:06:08.415 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.ManagePermissions,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Query,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.ManagePermissions,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Users.Enable,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Query,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:FeatureManagement.ManageHostFeatures,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:SettingManagement.Emailing,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.ManageFeatures,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.ManageConnectionStrings +2021-09-03 15:06:08.442 +08:00 [DBG] Not found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.ManagePermissions,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Query,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.ManagePermissions,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Users.Enable,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Query,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:FeatureManagement.ManageHostFeatures,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:SettingManagement.Emailing,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.ManageFeatures,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.ManageConnectionStrings +2021-09-03 15:06:08.446 +08:00 [DBG] Getting not cache granted permissions from the repository for this provider name,key: U,39fe52c6-27a0-d54c-0b47-4133f044c8fa +2021-09-03 15:06:08.474 +08:00 [DBG] Setting the cache items. Count: 21 +2021-09-03 15:06:08.497 +08:00 [DBG] Finished setting the cache items. Count: 21 +2021-09-03 15:06:08.507 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles,pn:R,pk:admin,n:AbpIdentity.Roles.Create,pn:R,pk:admin,n:AbpIdentity.Roles.Update,pn:R,pk:admin,n:AbpIdentity.Roles.Delete,pn:R,pk:admin,n:AbpIdentity.Roles.ManagePermissions,pn:R,pk:admin,n:AbpIdentity.Roles.Query,pn:R,pk:admin,n:AbpIdentity.Users,pn:R,pk:admin,n:AbpIdentity.Users.Create,pn:R,pk:admin,n:AbpIdentity.Users.Update,pn:R,pk:admin,n:AbpIdentity.Users.Delete,pn:R,pk:admin,n:AbpIdentity.Users.ManagePermissions,pn:R,pk:admin,n:AbpIdentity.Users.Users.Enable,pn:R,pk:admin,n:AbpIdentity.Users.Query,pn:R,pk:admin,n:FeatureManagement.ManageHostFeatures,pn:R,pk:admin,n:SettingManagement.Emailing,pn:R,pk:admin,n:AbpTenantManagement.Tenants,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Create,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Update,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Delete,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageFeatures,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageConnectionStrings +2021-09-03 15:06:08.509 +08:00 [DBG] Not found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles,pn:R,pk:admin,n:AbpIdentity.Roles.Create,pn:R,pk:admin,n:AbpIdentity.Roles.Update,pn:R,pk:admin,n:AbpIdentity.Roles.Delete,pn:R,pk:admin,n:AbpIdentity.Roles.ManagePermissions,pn:R,pk:admin,n:AbpIdentity.Roles.Query,pn:R,pk:admin,n:AbpIdentity.Users,pn:R,pk:admin,n:AbpIdentity.Users.Create,pn:R,pk:admin,n:AbpIdentity.Users.Update,pn:R,pk:admin,n:AbpIdentity.Users.Delete,pn:R,pk:admin,n:AbpIdentity.Users.ManagePermissions,pn:R,pk:admin,n:AbpIdentity.Users.Users.Enable,pn:R,pk:admin,n:AbpIdentity.Users.Query,pn:R,pk:admin,n:FeatureManagement.ManageHostFeatures,pn:R,pk:admin,n:SettingManagement.Emailing,pn:R,pk:admin,n:AbpTenantManagement.Tenants,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Create,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Update,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Delete,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageFeatures,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageConnectionStrings +2021-09-03 15:06:08.510 +08:00 [DBG] Getting not cache granted permissions from the repository for this provider name,key: R,admin +2021-09-03 15:06:08.526 +08:00 [DBG] Setting the cache items. Count: 21 +2021-09-03 15:06:08.532 +08:00 [DBG] Finished setting the cache items. Count: 21 +2021-09-03 15:06:09.169 +08:00 [DBG] Executed AbpApplicationConfigurationAppService.GetAsync(). +2021-09-03 15:06:09.170 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto'. +2021-09-03 15:06:09.196 +08:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc) in 1028.709ms +2021-09-03 15:06:09.196 +08:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' +2021-09-03 15:06:09.203 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:06:09.204 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:06:09.207 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:06:09.215 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/api/abp/application-configuration - - - 200 - application/json;+charset=utf-8 1069.0648ms +2021-09-03 15:06:13.481 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:06:13.481 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:06:13.481 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.6445ms +2021-09-03 15:06:13.483 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:06:13.483 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:06:13.486 +08:00 [INF] Successfully validated the token. +2021-09-03 15:06:13.487 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:06:13.488 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:06:13.489 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:06:13.489 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 0.7458ms +2021-09-03 15:06:13.489 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:06:13.525 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:06:13.525 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:06:13.526 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 42.5811ms +2021-09-03 15:06:27.430 +08:00 [DBG] Execution RecurringJobScheduler is in the Faulted state now due to an exception, execution will be retried no more than in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:06:27.430 +08:00 [DBG] Execution loop RecurringJobScheduler:8a78c666 caught an exception and will be retried in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:06:27.431 +08:00 [DBG] Execution loop RecurringJobScheduler:8a78c666 will be retried in 00:00:01... +2021-09-03 15:06:31.239 +08:00 [DBG] Server szqh003802a:9808:f9755d0f heartbeat successfully sent +2021-09-03 15:06:36.949 +08:00 [ERR] MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.ExpirationManager.<>c__DisplayClass9_1.b__0(MySqlConnection connection) +2021-09-03 15:06:36.951 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-09-03 15:06:36.951 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-09-03 15:06:37.817 +08:00 [ERR] Execution Worker is in the Failed state now due to an exception, execution will be retried no more than in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:06:37.817 +08:00 [DBG] Execution loop Worker:2c300d80 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:06:37.817 +08:00 [DBG] Execution loop Worker:2c300d80 will be retried in 00:05:00... +2021-09-03 15:06:40.825 +08:00 [DBG] Execution loop Worker:4fb9dff4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:06:40.825 +08:00 [DBG] Execution loop Worker:4fb9dff4 will be retried in 00:05:00... +2021-09-03 15:06:45.826 +08:00 [DBG] Execution loop Worker:da8fa822 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:06:45.826 +08:00 [DBG] Execution loop Worker:da8fa822 will be retried in 00:05:00... +2021-09-03 15:06:51.314 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/abp/Swashbuckle/SetCsrfCookie application/json - +2021-09-03 15:06:51.319 +08:00 [INF] Executing endpoint 'Volo.Abp.Swashbuckle.AbpSwashbuckleController.SetCsrfCookie (Volo.Abp.Swashbuckle)' +2021-09-03 15:06:51.320 +08:00 [INF] Route matched with {area = "Abp", action = "SetCsrfCookie", controller = "AbpSwashbuckle", page = ""}. Executing controller action with signature Void SetCsrfCookie() on controller Volo.Abp.Swashbuckle.AbpSwashbuckleController (Volo.Abp.Swashbuckle). +2021-09-03 15:06:51.323 +08:00 [WRN] The cookie 'XSRF-TOKEN' has set 'SameSite=None' and must also set 'Secure'. +2021-09-03 15:06:51.323 +08:00 [INF] Executed action Volo.Abp.Swashbuckle.AbpSwashbuckleController.SetCsrfCookie (Volo.Abp.Swashbuckle) in 2.9137ms +2021-09-03 15:06:51.323 +08:00 [INF] Executed endpoint 'Volo.Abp.Swashbuckle.AbpSwashbuckleController.SetCsrfCookie (Volo.Abp.Swashbuckle)' +2021-09-03 15:06:51.324 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/abp/Swashbuckle/SetCsrfCookie application/json - - 204 - - 9.0740ms +2021-09-03 15:06:51.455 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 3 +2021-09-03 15:06:51.457 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:06:51.458 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:06:51.463 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:06:51.463 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:06:51.776 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:06:51.786 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 322.7062ms +2021-09-03 15:06:51.786 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:06:51.788 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:06:51.815 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:06:51.815 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:06:51.815 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 3 - 200 - application/json;+charset=utf-8 360.1271ms +2021-09-03 15:06:52.841 +08:00 [DBG] Execution loop Worker:6a5f0b07 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:06:52.842 +08:00 [DBG] Execution loop Worker:6a5f0b07 will be retried in 00:05:00... +2021-09-03 15:06:58.755 +08:00 [ERR] Execution RecurringJobScheduler is in the Failed state now due to an exception, execution will be retried no more than in 00:00:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:06:58.755 +08:00 [DBG] Execution loop RecurringJobScheduler:8a78c666 caught an exception and will be retried in 00:00:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:06:58.755 +08:00 [DBG] Execution loop RecurringJobScheduler:8a78c666 will be retried in 00:00:04... +2021-09-03 15:07:01.257 +08:00 [DBG] Server szqh003802a:9808:f9755d0f heartbeat successfully sent +2021-09-03 15:07:01.803 +08:00 [DBG] Execution loop Worker:bcf441fc caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:07:01.803 +08:00 [DBG] Execution loop Worker:bcf441fc will be retried in 00:05:00... +2021-09-03 15:07:07.255 +08:00 [ERR] MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.ExpirationManager.<>c__DisplayClass9_1.b__0(MySqlConnection connection) +2021-09-03 15:07:12.808 +08:00 [DBG] Execution loop Worker:cac19e31 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:07:12.808 +08:00 [DBG] Execution loop Worker:cac19e31 will be retried in 00:05:00... +2021-09-03 15:07:24.491 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:07:24.491 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:07:24.492 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.5073ms +2021-09-03 15:07:24.494 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:07:24.494 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:07:24.496 +08:00 [INF] Successfully validated the token. +2021-09-03 15:07:24.498 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:07:24.498 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:07:24.499 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:07:24.499 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 0.678ms +2021-09-03 15:07:24.499 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:07:24.545 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:07:24.545 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:07:24.546 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 52.0871ms +2021-09-03 15:07:25.837 +08:00 [DBG] Execution loop Worker:cfbcd0b2 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:07:25.837 +08:00 [DBG] Execution loop Worker:cfbcd0b2 will be retried in 00:05:00... +2021-09-03 15:07:31.270 +08:00 [DBG] Server szqh003802a:9808:f9755d0f heartbeat successfully sent +2021-09-03 15:07:33.092 +08:00 [DBG] Execution loop RecurringJobScheduler:8a78c666 caught an exception and will be retried in 00:00:09 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:07:33.092 +08:00 [DBG] Execution loop RecurringJobScheduler:8a78c666 will be retried in 00:00:09... +2021-09-03 15:07:40.806 +08:00 [DBG] Execution loop Worker:f00a5c85 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:07:40.806 +08:00 [DBG] Execution loop Worker:f00a5c85 will be retried in 00:05:00... +2021-09-03 15:07:43.787 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Roles/page - - +2021-09-03 15:07:43.788 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:07:43.788 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Roles/page - - - 204 - - 0.6489ms +2021-09-03 15:07:43.790 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Roles/page application/json 24 +2021-09-03 15:07:43.790 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:07:43.793 +08:00 [INF] Successfully validated the token. +2021-09-03 15:07:43.806 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-09-03 15:07:43.812 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-09-03 15:07:43.816 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles +2021-09-03 15:07:43.819 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles +2021-09-03 15:07:43.823 +08:00 [INF] Authorization was successful. +2021-09-03 15:07:43.826 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:07:43.829 +08:00 [INF] Route matched with {action = "List", controller = "Role", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityRoleDto]] ListAsync(CompanyName.ProjectName.Roles.Dtos.PagingRoleListInput) on controller CompanyName.ProjectName.Controllers.Systems.RoleController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:07:43.982 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityRoleDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:07:43.987 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi) in 157.6811ms +2021-09-03 15:07:43.987 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:07:43.990 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:07:44.019 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:07:44.019 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:07:44.020 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Roles/page application/json 24 - 200 - application/json;+charset=utf-8 230.2216ms +2021-09-03 15:07:46.067 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:07:46.067 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:07:46.067 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4350ms +2021-09-03 15:07:46.069 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:07:46.069 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:07:46.072 +08:00 [INF] Successfully validated the token. +2021-09-03 15:07:46.073 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:07:46.073 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:07:46.074 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:07:46.074 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 0.6061ms +2021-09-03 15:07:46.074 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:07:46.107 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:07:46.107 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:07:46.107 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 38.5379ms +2021-09-03 15:07:49.615 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-09-03 15:07:49.619 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 4.2055ms +2021-09-03 15:07:49.799 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-09-03 15:07:49.805 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/favicon-32x32.png - - +2021-09-03 15:07:49.823 +08:00 [INF] Sending file. Request path: '/favicon-32x32.png'. Physical path: 'N/A' +2021-09-03 15:07:49.823 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/favicon-32x32.png - - - 200 628 image/png 17.7089ms +2021-09-03 15:07:49.982 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 183.0645ms +2021-09-03 15:07:57.822 +08:00 [DBG] Execution loop Worker:c3ee67ed caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:07:57.823 +08:00 [DBG] Execution loop Worker:c3ee67ed will be retried in 00:05:00... +2021-09-03 15:08:01.291 +08:00 [DBG] Server szqh003802a:9808:f9755d0f heartbeat successfully sent +2021-09-03 15:08:02.192 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/abp/Swashbuckle/SetCsrfCookie application/json - +2021-09-03 15:08:02.196 +08:00 [INF] Executing endpoint 'Volo.Abp.Swashbuckle.AbpSwashbuckleController.SetCsrfCookie (Volo.Abp.Swashbuckle)' +2021-09-03 15:08:02.196 +08:00 [INF] Route matched with {area = "Abp", action = "SetCsrfCookie", controller = "AbpSwashbuckle", page = ""}. Executing controller action with signature Void SetCsrfCookie() on controller Volo.Abp.Swashbuckle.AbpSwashbuckleController (Volo.Abp.Swashbuckle). +2021-09-03 15:08:02.202 +08:00 [WRN] The cookie 'XSRF-TOKEN' has set 'SameSite=None' and must also set 'Secure'. +2021-09-03 15:08:02.202 +08:00 [INF] Executed action Volo.Abp.Swashbuckle.AbpSwashbuckleController.SetCsrfCookie (Volo.Abp.Swashbuckle) in 5.2526ms +2021-09-03 15:08:02.202 +08:00 [INF] Executed endpoint 'Volo.Abp.Swashbuckle.AbpSwashbuckleController.SetCsrfCookie (Volo.Abp.Swashbuckle)' +2021-09-03 15:08:02.202 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/abp/Swashbuckle/SetCsrfCookie application/json - - 204 - - 10.0329ms +2021-09-03 15:08:02.325 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 5 +2021-09-03 15:08:02.326 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:08:02.326 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:08:02.329 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:08:02.330 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:08:02.357 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:08:02.358 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 28.1231ms +2021-09-03 15:08:02.358 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:08:02.360 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:08:02.390 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:08:02.390 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:08:02.390 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 5 - 200 - application/json;+charset=utf-8 64.5485ms +2021-09-03 15:08:12.445 +08:00 [DBG] Execution loop RecurringJobScheduler:8a78c666 caught an exception and will be retried in 00:00:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:08:12.445 +08:00 [DBG] Execution loop RecurringJobScheduler:8a78c666 will be retried in 00:00:16... +2021-09-03 15:08:16.862 +08:00 [DBG] Execution loop Worker:8bc2411b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:08:16.862 +08:00 [DBG] Execution loop Worker:8bc2411b will be retried in 00:05:00... +2021-09-03 15:08:24.384 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:08:24.385 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:08:24.385 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:08:24.385 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 1.6670ms +2021-09-03 15:08:24.386 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:08:24.386 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.3960ms +2021-09-03 15:08:24.388 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-03 15:08:24.389 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:08:24.389 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:08:24.389 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:08:24.392 +08:00 [INF] Successfully validated the token. +2021-09-03 15:08:24.392 +08:00 [INF] Successfully validated the token. +2021-09-03 15:08:24.394 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:08:24.394 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:08:24.395 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:08:24.396 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:08:24.396 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 1.0812ms +2021-09-03 15:08:24.396 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:08:24.398 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:08:24.440 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:08:24.440 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:08:24.441 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 52.0789ms +2021-09-03 15:08:25.011 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:08:25.016 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 617.7394ms +2021-09-03 15:08:25.016 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:08:25.029 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:08:25.057 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:08:25.057 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:08:25.058 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 670.0448ms +2021-09-03 15:08:31.331 +08:00 [DBG] Server szqh003802a:9808:f9755d0f heartbeat successfully sent +2021-09-03 15:08:37.842 +08:00 [DBG] Execution loop Worker:c3acbdb7 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:08:37.842 +08:00 [DBG] Execution loop Worker:c3acbdb7 will be retried in 00:05:00... +2021-09-03 15:08:58.868 +08:00 [DBG] Execution loop RecurringJobScheduler:8a78c666 caught an exception and will be retried in 00:00:25 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:08:58.869 +08:00 [DBG] Execution loop RecurringJobScheduler:8a78c666 will be retried in 00:00:25... +2021-09-03 15:09:00.362 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:09:00.363 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:09:00.363 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.6188ms +2021-09-03 15:09:00.365 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:09:00.365 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:09:00.369 +08:00 [INF] Successfully validated the token. +2021-09-03 15:09:00.371 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:09:00.371 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:09:00.371 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:09:00.372 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 0.7387ms +2021-09-03 15:09:00.372 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:09:00.410 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:09:00.410 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:09:00.410 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 44.7851ms +2021-09-03 15:09:00.883 +08:00 [DBG] Execution loop Worker:188b2b38 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:09:00.884 +08:00 [DBG] Execution loop Worker:188b2b38 will be retried in 00:05:00... +2021-09-03 15:09:01.343 +08:00 [DBG] Server szqh003802a:9808:f9755d0f heartbeat successfully sent +2021-09-03 15:09:25.827 +08:00 [DBG] Execution loop Worker:c202da8b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:09:25.827 +08:00 [DBG] Execution loop Worker:c202da8b will be retried in 00:05:00... +2021-09-03 15:09:31.360 +08:00 [DBG] Server szqh003802a:9808:f9755d0f heartbeat successfully sent +2021-09-03 15:09:52.825 +08:00 [DBG] Execution loop Worker:71a7b6bb caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:09:52.825 +08:00 [DBG] Execution loop Worker:71a7b6bb will be retried in 00:05:00... +2021-09-03 15:09:54.214 +08:00 [DBG] Execution loop RecurringJobScheduler:8a78c666 caught an exception and will be retried in 00:00:36 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:09:54.214 +08:00 [DBG] Execution loop RecurringJobScheduler:8a78c666 will be retried in 00:00:36... +2021-09-03 15:10:01.384 +08:00 [DBG] Server szqh003802a:9808:f9755d0f heartbeat successfully sent +2021-09-03 15:10:21.781 +08:00 [DBG] Execution loop Worker:645865dc caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:10:21.781 +08:00 [DBG] Execution loop Worker:645865dc will be retried in 00:05:00... +2021-09-03 15:10:31.218 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 15:10:31.224 +08:00 [INF] 2 servers were removed due to timeout +2021-09-03 15:10:31.396 +08:00 [DBG] Server szqh003802a:9808:f9755d0f heartbeat successfully sent +2021-09-03 15:10:52.808 +08:00 [DBG] Execution loop Worker:fbb05fae caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:10:52.808 +08:00 [DBG] Execution loop Worker:fbb05fae will be retried in 00:05:00... +2021-09-03 15:11:00.552 +08:00 [DBG] Execution loop RecurringJobScheduler:8a78c666 caught an exception and will be retried in 00:00:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:11:00.552 +08:00 [DBG] Execution loop RecurringJobScheduler:8a78c666 will be retried in 00:00:49... +2021-09-03 15:11:01.409 +08:00 [DBG] Server szqh003802a:9808:f9755d0f heartbeat successfully sent +2021-09-03 15:11:02.738 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Roles/page - - +2021-09-03 15:11:02.739 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:11:02.739 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Roles/page - - - 204 - - 0.5295ms +2021-09-03 15:11:02.741 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Roles/page application/json 24 +2021-09-03 15:11:02.742 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:11:02.744 +08:00 [INF] Successfully validated the token. +2021-09-03 15:11:02.745 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-09-03 15:11:02.749 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-09-03 15:11:02.749 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles +2021-09-03 15:11:02.751 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles +2021-09-03 15:11:02.752 +08:00 [INF] Authorization was successful. +2021-09-03 15:11:02.753 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:11:02.753 +08:00 [INF] Route matched with {action = "List", controller = "Role", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityRoleDto]] ListAsync(CompanyName.ProjectName.Roles.Dtos.PagingRoleListInput) on controller CompanyName.ProjectName.Controllers.Systems.RoleController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:11:02.783 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityRoleDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:11:02.785 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi) in 32.2512ms +2021-09-03 15:11:02.785 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:11:02.789 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:11:02.818 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:11:02.818 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:11:02.818 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Roles/page application/json 24 - 200 - application/json;+charset=utf-8 77.0909ms +2021-09-03 15:11:08.546 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:11:08.546 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:11:08.546 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4495ms +2021-09-03 15:11:08.548 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:11:08.548 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:11:08.551 +08:00 [INF] Successfully validated the token. +2021-09-03 15:11:08.552 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:11:08.552 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:11:08.553 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:11:08.553 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 0.8191ms +2021-09-03 15:11:08.553 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:11:08.585 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:11:08.585 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:11:08.586 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 37.9712ms +2021-09-03 15:11:25.804 +08:00 [DBG] Execution loop Worker:db488a79 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:11:25.804 +08:00 [DBG] Execution loop Worker:db488a79 will be retried in 00:05:00... +2021-09-03 15:11:31.419 +08:00 [DBG] Server szqh003802a:9808:f9755d0f heartbeat successfully sent +2021-09-03 15:11:37.275 +08:00 [DBG] Execution loop Worker:e453199a caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:11:37.275 +08:00 [DBG] Execution loop Worker:e453199a will be retried in 00:05:00... +2021-09-03 15:11:37.275 +08:00 [DBG] Execution loop Worker:93a19431 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:11:37.275 +08:00 [DBG] Execution loop Worker:93a19431 will be retried in 00:05:00... +2021-09-03 15:11:37.279 +08:00 [DBG] Execution loop Worker:7fd71b69 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:11:37.279 +08:00 [DBG] Execution loop Worker:7fd71b69 will be retried in 00:05:00... +2021-09-03 15:11:53.433 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:11:53.433 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:11:53.434 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4558ms +2021-09-03 15:11:53.435 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:11:53.435 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:11:53.438 +08:00 [INF] Successfully validated the token. +2021-09-03 15:11:53.439 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:11:53.439 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:11:53.440 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:11:53.440 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 0.6467ms +2021-09-03 15:11:53.440 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:11:53.472 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:11:53.472 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:11:53.472 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 36.9396ms +2021-09-03 15:11:57.645 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:11:57.646 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:11:57.649 +08:00 [INF] Successfully validated the token. +2021-09-03 15:11:57.651 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:11:57.651 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:11:57.653 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:11:57.653 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 1.3655ms +2021-09-03 15:11:57.653 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:11:57.689 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:11:57.689 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:11:57.689 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 43.9553ms +2021-09-03 15:12:01.443 +08:00 [DBG] Server szqh003802a:9808:f9755d0f heartbeat successfully sent +2021-09-03 15:12:08.081 +08:00 [DBG] Execution loop Worker:2c300d80 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:12:08.081 +08:00 [DBG] Execution loop Worker:2c300d80 will be retried in 00:05:00... +2021-09-03 15:12:11.099 +08:00 [DBG] Execution loop Worker:4fb9dff4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:12:11.099 +08:00 [DBG] Execution loop Worker:4fb9dff4 will be retried in 00:05:00... +2021-09-03 15:12:16.103 +08:00 [DBG] Execution loop Worker:da8fa822 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:12:16.103 +08:00 [DBG] Execution loop Worker:da8fa822 will be retried in 00:05:00... +2021-09-03 15:12:19.909 +08:00 [DBG] Execution loop RecurringJobScheduler:8a78c666 caught an exception and will be retried in 00:01:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:12:19.909 +08:00 [DBG] Execution loop RecurringJobScheduler:8a78c666 will be retried in 00:01:04... +2021-09-03 15:12:23.113 +08:00 [DBG] Execution loop Worker:6a5f0b07 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:12:23.114 +08:00 [DBG] Execution loop Worker:6a5f0b07 will be retried in 00:05:00... +2021-09-03 15:12:31.464 +08:00 [DBG] Server szqh003802a:9808:f9755d0f heartbeat successfully sent +2021-09-03 15:12:31.465 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:12:31.466 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:12:31.466 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.5061ms +2021-09-03 15:12:31.467 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:12:31.468 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:12:31.470 +08:00 [INF] Successfully validated the token. +2021-09-03 15:12:31.471 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:12:31.472 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:12:31.472 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:12:31.472 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 0.7425ms +2021-09-03 15:12:31.473 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:12:31.495 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:12:31.495 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:12:31.495 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 27.7512ms +2021-09-03 15:12:32.088 +08:00 [DBG] Execution loop Worker:bcf441fc caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:12:32.088 +08:00 [DBG] Execution loop Worker:bcf441fc will be retried in 00:05:00... +2021-09-03 15:12:43.065 +08:00 [DBG] Execution loop Worker:cac19e31 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:12:43.065 +08:00 [DBG] Execution loop Worker:cac19e31 will be retried in 00:05:00... +2021-09-03 15:12:49.925 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:12:49.925 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:12:49.926 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4295ms +2021-09-03 15:12:49.927 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:12:49.927 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:12:49.930 +08:00 [INF] Successfully validated the token. +2021-09-03 15:12:49.931 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:12:49.931 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:12:49.932 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:12:49.932 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 0.6332ms +2021-09-03 15:12:49.932 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:12:49.965 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:12:49.965 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:12:49.965 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 37.8460ms +2021-09-03 15:12:51.503 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:12:51.503 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:12:51.506 +08:00 [INF] Successfully validated the token. +2021-09-03 15:12:51.507 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:12:51.508 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:12:51.508 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:12:51.508 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 0.5937ms +2021-09-03 15:12:51.508 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:12:51.531 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:12:51.531 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:12:51.531 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 28.1064ms +2021-09-03 15:12:56.105 +08:00 [DBG] Execution loop Worker:cfbcd0b2 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:12:56.105 +08:00 [DBG] Execution loop Worker:cfbcd0b2 will be retried in 00:05:00... +2021-09-03 15:12:59.083 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:12:59.084 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:12:59.084 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4302ms +2021-09-03 15:12:59.085 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:12:59.086 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:12:59.088 +08:00 [INF] Successfully validated the token. +2021-09-03 15:12:59.090 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:12:59.090 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:12:59.090 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:12:59.090 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 0.6729ms +2021-09-03 15:12:59.091 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:12:59.113 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:12:59.113 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:12:59.113 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 27.7633ms +2021-09-03 15:12:59.757 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:12:59.757 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:12:59.760 +08:00 [INF] Successfully validated the token. +2021-09-03 15:12:59.761 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:12:59.761 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:12:59.762 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:12:59.762 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 0.58ms +2021-09-03 15:12:59.762 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:12:59.794 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:12:59.794 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:12:59.795 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 37.7675ms +2021-09-03 15:12:59.951 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:12:59.951 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:12:59.953 +08:00 [INF] Successfully validated the token. +2021-09-03 15:12:59.955 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:12:59.955 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:12:59.956 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:12:59.956 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 0.5701ms +2021-09-03 15:12:59.956 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:12:59.979 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:12:59.979 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:12:59.980 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 28.5383ms +2021-09-03 15:13:00.144 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:13:00.145 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:13:00.147 +08:00 [INF] Successfully validated the token. +2021-09-03 15:13:00.149 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:13:00.149 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:13:00.149 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:13:00.149 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 0.6019ms +2021-09-03 15:13:00.149 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:13:00.170 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:13:00.170 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:13:00.170 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 25.8945ms +2021-09-03 15:13:01.503 +08:00 [DBG] Server szqh003802a:9808:f9755d0f heartbeat successfully sent +2021-09-03 15:13:11.065 +08:00 [DBG] Execution loop Worker:f00a5c85 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:13:11.065 +08:00 [DBG] Execution loop Worker:f00a5c85 will be retried in 00:05:00... +2021-09-03 15:13:28.074 +08:00 [DBG] Execution loop Worker:c3ee67ed caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:13:28.074 +08:00 [DBG] Execution loop Worker:c3ee67ed will be retried in 00:05:00... +2021-09-03 15:13:31.509 +08:00 [DBG] Server szqh003802a:9808:f9755d0f heartbeat successfully sent +2021-09-03 15:13:47.129 +08:00 [DBG] Execution loop Worker:8bc2411b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:13:47.129 +08:00 [DBG] Execution loop Worker:8bc2411b will be retried in 00:05:00... +2021-09-03 15:13:54.216 +08:00 [DBG] Execution loop RecurringJobScheduler:8a78c666 caught an exception and will be retried in 00:01:21 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:13:54.216 +08:00 [DBG] Execution loop RecurringJobScheduler:8a78c666 will be retried in 00:01:21... +2021-09-03 15:14:01.526 +08:00 [DBG] Server szqh003802a:9808:f9755d0f heartbeat successfully sent +2021-09-03 15:14:08.096 +08:00 [DBG] Execution loop Worker:c3acbdb7 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:14:08.096 +08:00 [DBG] Execution loop Worker:c3acbdb7 will be retried in 00:05:00... +2021-09-03 15:14:31.137 +08:00 [DBG] Execution loop Worker:188b2b38 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:14:31.137 +08:00 [DBG] Execution loop Worker:188b2b38 will be retried in 00:05:00... +2021-09-03 15:14:31.537 +08:00 [DBG] Server szqh003802a:9808:f9755d0f heartbeat successfully sent +2021-09-03 15:14:56.051 +08:00 [DBG] Execution loop Worker:c202da8b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:14:56.051 +08:00 [DBG] Execution loop Worker:c202da8b will be retried in 00:05:00... +2021-09-03 15:15:01.554 +08:00 [DBG] Server szqh003802a:9808:f9755d0f heartbeat successfully sent +2021-09-03 15:15:23.078 +08:00 [DBG] Execution loop Worker:71a7b6bb caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:15:23.078 +08:00 [DBG] Execution loop Worker:71a7b6bb will be retried in 00:05:00... +2021-09-03 15:15:31.206 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 15:15:31.572 +08:00 [DBG] Server szqh003802a:9808:f9755d0f heartbeat successfully sent +2021-09-03 15:15:38.689 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/api/app/account/login - - +2021-09-03 15:15:38.692 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:15:38.692 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/api/app/account/login - - - 204 - - 2.6110ms +2021-09-03 15:15:38.693 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/api/app/account/login application/json 37 +2021-09-03 15:15:38.694 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:15:38.697 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AccountController.LoginAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:15:38.697 +08:00 [INF] Route matched with {action = "Login", controller = "Account", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[CompanyName.ProjectName.Users.Dtos.LoginOutput] LoginAsync(CompanyName.ProjectName.Users.Dtos.LoginInput) on controller CompanyName.ProjectName.Controllers.Systems.AccountController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:15:38.747 +08:00 [WRN] The cookie '.AspNetCore.Identity.Application' has set 'SameSite=None' and must also set 'Secure'. +2021-09-03 15:15:38.747 +08:00 [INF] AuthenticationScheme: Identity.Application signed in. +2021-09-03 15:15:38.761 +08:00 [INF] Executing ObjectResult, writing value of type 'CompanyName.ProjectName.Users.Dtos.LoginOutput'. +2021-09-03 15:15:38.761 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AccountController.LoginAsync (CompanyName.ProjectName.HttpApi) in 63.9407ms +2021-09-03 15:15:38.761 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AccountController.LoginAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:15:38.764 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:15:38.795 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:15:38.795 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:15:38.795 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/api/app/account/login application/json 37 - 200 - application/json;+charset=utf-8 101.9274ms +2021-09-03 15:15:38.799 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/api/abp/application-configuration - - +2021-09-03 15:15:38.799 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:15:38.799 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/api/abp/application-configuration - - - 204 - - 0.3914ms +2021-09-03 15:15:38.800 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/api/abp/application-configuration - - +2021-09-03 15:15:38.801 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:15:38.803 +08:00 [INF] Successfully validated the token. +2021-09-03 15:15:38.804 +08:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' +2021-09-03 15:15:38.804 +08:00 [INF] Route matched with {area = "abp", action = "Get", controller = "AbpApplicationConfiguration", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto] GetAsync() on controller Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController (Volo.Abp.AspNetCore.Mvc). +2021-09-03 15:15:38.806 +08:00 [WRN] The cookie 'XSRF-TOKEN' has set 'SameSite=None' and must also set 'Secure'. +2021-09-03 15:15:38.808 +08:00 [DBG] Executing AbpApplicationConfigurationAppService.GetAsync()... +2021-09-03 15:15:38.808 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.ManagePermissions,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Query,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.ManagePermissions,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Users.Enable,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Query,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:FeatureManagement.ManageHostFeatures,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:SettingManagement.Emailing,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.ManageFeatures,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.ManageConnectionStrings +2021-09-03 15:15:38.822 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.ManagePermissions,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Query,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.ManagePermissions,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Users.Enable,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Query,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:FeatureManagement.ManageHostFeatures,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:SettingManagement.Emailing,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.ManageFeatures,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.ManageConnectionStrings +2021-09-03 15:15:38.823 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles,pn:R,pk:admin,n:AbpIdentity.Roles.Create,pn:R,pk:admin,n:AbpIdentity.Roles.Update,pn:R,pk:admin,n:AbpIdentity.Roles.Delete,pn:R,pk:admin,n:AbpIdentity.Roles.ManagePermissions,pn:R,pk:admin,n:AbpIdentity.Roles.Query,pn:R,pk:admin,n:AbpIdentity.Users,pn:R,pk:admin,n:AbpIdentity.Users.Create,pn:R,pk:admin,n:AbpIdentity.Users.Update,pn:R,pk:admin,n:AbpIdentity.Users.Delete,pn:R,pk:admin,n:AbpIdentity.Users.ManagePermissions,pn:R,pk:admin,n:AbpIdentity.Users.Users.Enable,pn:R,pk:admin,n:AbpIdentity.Users.Query,pn:R,pk:admin,n:FeatureManagement.ManageHostFeatures,pn:R,pk:admin,n:SettingManagement.Emailing,pn:R,pk:admin,n:AbpTenantManagement.Tenants,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Create,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Update,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Delete,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageFeatures,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageConnectionStrings +2021-09-03 15:15:38.829 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles,pn:R,pk:admin,n:AbpIdentity.Roles.Create,pn:R,pk:admin,n:AbpIdentity.Roles.Update,pn:R,pk:admin,n:AbpIdentity.Roles.Delete,pn:R,pk:admin,n:AbpIdentity.Roles.ManagePermissions,pn:R,pk:admin,n:AbpIdentity.Roles.Query,pn:R,pk:admin,n:AbpIdentity.Users,pn:R,pk:admin,n:AbpIdentity.Users.Create,pn:R,pk:admin,n:AbpIdentity.Users.Update,pn:R,pk:admin,n:AbpIdentity.Users.Delete,pn:R,pk:admin,n:AbpIdentity.Users.ManagePermissions,pn:R,pk:admin,n:AbpIdentity.Users.Users.Enable,pn:R,pk:admin,n:AbpIdentity.Users.Query,pn:R,pk:admin,n:FeatureManagement.ManageHostFeatures,pn:R,pk:admin,n:SettingManagement.Emailing,pn:R,pk:admin,n:AbpTenantManagement.Tenants,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Create,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Update,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Delete,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageFeatures,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageConnectionStrings +2021-09-03 15:15:38.867 +08:00 [DBG] Executed AbpApplicationConfigurationAppService.GetAsync(). +2021-09-03 15:15:38.867 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto'. +2021-09-03 15:15:38.870 +08:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc) in 65.5658ms +2021-09-03 15:15:38.870 +08:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' +2021-09-03 15:15:38.870 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/api/abp/application-configuration - - - 200 - application/json;+charset=utf-8 69.6085ms +2021-09-03 15:15:42.801 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Roles/page - - +2021-09-03 15:15:42.801 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:15:42.801 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Roles/page - - - 204 - - 0.4562ms +2021-09-03 15:15:42.803 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Roles/page application/json 24 +2021-09-03 15:15:42.803 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:15:42.805 +08:00 [INF] Successfully validated the token. +2021-09-03 15:15:42.806 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-09-03 15:15:42.810 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-09-03 15:15:42.810 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles +2021-09-03 15:15:42.812 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles +2021-09-03 15:15:42.813 +08:00 [INF] Authorization was successful. +2021-09-03 15:15:42.814 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:15:42.814 +08:00 [INF] Route matched with {action = "List", controller = "Role", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityRoleDto]] ListAsync(CompanyName.ProjectName.Roles.Dtos.PagingRoleListInput) on controller CompanyName.ProjectName.Controllers.Systems.RoleController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:15:42.841 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityRoleDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:15:42.842 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi) in 28.2872ms +2021-09-03 15:15:42.842 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:15:42.845 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:15:42.883 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:15:42.883 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:15:42.884 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Roles/page application/json 24 - 200 - application/json;+charset=utf-8 80.8390ms +2021-09-03 15:15:44.520 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:15:44.520 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:15:44.520 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4261ms +2021-09-03 15:15:44.522 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:15:44.522 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:15:44.525 +08:00 [INF] Successfully validated the token. +2021-09-03 15:15:44.526 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:15:44.526 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:15:44.527 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:15:44.527 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 0.6208ms +2021-09-03 15:15:44.527 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:15:44.549 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:15:44.549 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:15:44.549 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 27.7329ms +2021-09-03 15:15:45.533 +08:00 [DBG] Execution loop RecurringJobScheduler:8a78c666 caught an exception and will be retried in 00:01:40 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:15:45.534 +08:00 [DBG] Execution loop RecurringJobScheduler:8a78c666 will be retried in 00:01:40... +2021-09-03 15:15:52.029 +08:00 [DBG] Execution loop Worker:645865dc caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:15:52.029 +08:00 [DBG] Execution loop Worker:645865dc will be retried in 00:05:00... +2021-09-03 15:16:01.578 +08:00 [DBG] Server szqh003802a:9808:f9755d0f heartbeat successfully sent +2021-09-03 15:16:23.042 +08:00 [DBG] Execution loop Worker:fbb05fae caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:16:23.042 +08:00 [DBG] Execution loop Worker:fbb05fae will be retried in 00:05:00... +2021-09-03 15:16:31.595 +08:00 [DBG] Server szqh003802a:9808:f9755d0f heartbeat successfully sent +2021-09-03 15:16:32.047 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:16:32.048 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:16:32.048 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.6915ms +2021-09-03 15:16:32.081 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:16:32.081 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:16:32.085 +08:00 [INF] Successfully validated the token. +2021-09-03 15:16:32.087 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:16:32.088 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:16:32.089 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:16:32.089 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 1.3052ms +2021-09-03 15:16:32.089 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:16:32.126 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:16:32.127 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:16:32.127 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 46.4332ms +2021-09-03 15:16:33.333 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:16:33.333 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:16:33.334 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.8846ms +2021-09-03 15:16:33.334 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:16:33.335 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:16:33.335 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4692ms +2021-09-03 15:16:33.335 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-03 15:16:33.335 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:16:33.337 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:16:33.337 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:16:33.338 +08:00 [INF] Successfully validated the token. +2021-09-03 15:16:33.340 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:16:33.340 +08:00 [INF] Successfully validated the token. +2021-09-03 15:16:33.340 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:16:33.341 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:16:33.341 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:16:33.342 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:16:33.342 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 0.579ms +2021-09-03 15:16:33.342 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:16:33.375 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:16:33.375 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:16:33.376 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 38.9009ms +2021-09-03 15:16:33.399 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:16:33.399 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 59.6688ms +2021-09-03 15:16:33.400 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:16:33.404 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:16:33.432 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:16:33.432 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:16:33.433 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 97.3210ms +2021-09-03 15:16:37.248 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:16:37.248 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:16:37.248 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4234ms +2021-09-03 15:16:37.250 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:16:37.250 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:16:37.252 +08:00 [INF] Successfully validated the token. +2021-09-03 15:16:37.253 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:16:37.253 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:16:37.254 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:16:37.254 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 0.5833ms +2021-09-03 15:16:37.254 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:16:37.277 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:16:37.277 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:16:37.277 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 27.4189ms +2021-09-03 15:17:55.846 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-09-03 15:18:00.513 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-09-03 15:18:00.630 +08:00 [INF] Loaded ABP modules: +2021-09-03 15:18:00.630 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-09-03 15:18:00.630 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-09-03 15:18:00.630 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-09-03 15:18:00.630 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-09-03 15:18:00.630 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-09-03 15:18:00.630 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-09-03 15:18:00.630 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-09-03 15:18:00.630 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-09-03 15:18:00.630 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule +2021-09-03 15:18:00.630 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-09-03 15:18:00.630 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-09-03 15:18:00.630 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-09-03 15:18:00.630 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-09-03 15:18:00.630 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-09-03 15:18:00.631 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-09-03 15:18:00.631 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-09-03 15:18:00.631 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-09-03 15:18:00.631 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-09-03 15:18:00.631 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-09-03 15:18:00.631 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-09-03 15:18:00.631 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-09-03 15:18:00.631 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-09-03 15:18:00.631 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-09-03 15:18:00.631 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-09-03 15:18:00.631 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-09-03 15:18:00.631 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-09-03 15:18:00.631 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-09-03 15:18:00.631 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-09-03 15:18:00.631 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-09-03 15:18:00.631 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-09-03 15:18:00.631 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-09-03 15:18:00.631 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-09-03 15:18:00.631 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-09-03 15:18:00.631 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-09-03 15:18:00.631 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-09-03 15:18:00.631 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-09-03 15:18:00.727 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-09-03 15:18:00.730 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-09-03 15:18:00.874 +08:00 [INF] DB tables already exist. Exit install +2021-09-03 15:18:00.899 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-09-03 15:18:00.899 +08:00 [INF] Using the following options for SQL Server job storage: +2021-09-03 15:18:00.900 +08:00 [INF] Queue poll interval: 00:00:15. +2021-09-03 15:18:00.900 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-09-03 15:18:00.921 +08:00 [DBG] Execution loop BackgroundServerProcess:9ad3abcd has started in 7.2064 ms +2021-09-03 15:18:01.046 +08:00 [INF] Server szqh003802a:27560:ec03c5f6 successfully announced in 111.9186 ms +2021-09-03 15:18:01.054 +08:00 [INF] Server szqh003802a:27560:ec03c5f6 is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-09-03 15:18:01.055 +08:00 [DBG] Execution loop ServerHeartbeatProcess:73fc4776 has started in 3.5189 ms +2021-09-03 15:18:01.067 +08:00 [DBG] Execution loop ServerWatchdog:19919a21 has started in 12.6793 ms +2021-09-03 15:18:01.068 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:81b9fb50 has started in 3.7797 ms +2021-09-03 15:18:01.071 +08:00 [DBG] Execution loop ExpirationManager:b4c102c9 has started in 3.7708 ms +2021-09-03 15:18:01.073 +08:00 [DBG] Execution loop CountersAggregator:5668efa6 has started in 4.2089 ms +2021-09-03 15:18:01.075 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 15:18:01.075 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-09-03 15:18:01.076 +08:00 [DBG] Execution loop Worker:91511524 has started in 5.7127 ms +2021-09-03 15:18:01.078 +08:00 [DBG] Execution loop Worker:875388ce has started in 7.0665 ms +2021-09-03 15:18:01.081 +08:00 [DBG] Execution loop Worker:57863865 has started in 10.1695 ms +2021-09-03 15:18:01.082 +08:00 [DBG] Execution loop Worker:c921d5bd has started in 11.4265 ms +2021-09-03 15:18:01.086 +08:00 [DBG] Execution loop Worker:fce61d59 has started in 14.8581 ms +2021-09-03 15:18:01.087 +08:00 [DBG] Execution loop Worker:207df109 has started in 16.2863 ms +2021-09-03 15:18:01.089 +08:00 [DBG] Execution loop Worker:cbdcbf89 has started in 18.208 ms +2021-09-03 15:18:01.091 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-03 15:18:01.093 +08:00 [DBG] Execution loop Worker:347e0f92 has started in 21.9438 ms +2021-09-03 15:18:01.095 +08:00 [DBG] Execution loop Worker:bc740f38 has started in 23.7109 ms +2021-09-03 15:18:01.099 +08:00 [DBG] Execution loop Worker:13c92926 has started in 28.01 ms +2021-09-03 15:18:01.115 +08:00 [DBG] Execution loop Worker:c50e5792 has started in 43.6189 ms +2021-09-03 15:18:01.118 +08:00 [DBG] Execution loop Worker:fa569702 has started in 47.2009 ms +2021-09-03 15:18:01.124 +08:00 [DBG] Execution loop Worker:d94b6fce has started in 53.6886 ms +2021-09-03 15:18:01.131 +08:00 [DBG] Execution loop Worker:a18b8f1b has started in 60.01 ms +2021-09-03 15:18:01.135 +08:00 [DBG] removed records count=0 +2021-09-03 15:18:01.136 +08:00 [DBG] Execution loop Worker:a93a0f9d has started in 64.634 ms +2021-09-03 15:18:01.140 +08:00 [DBG] Execution loop Worker:f6086ae9 has started in 68.7525 ms +2021-09-03 15:18:01.142 +08:00 [DBG] Execution loop Worker:9daf285c has started in 70.7974 ms +2021-09-03 15:18:01.148 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-09-03 15:18:01.149 +08:00 [DBG] Execution loop Worker:e43b8cf9 has started in 78.3483 ms +2021-09-03 15:18:01.153 +08:00 [DBG] Execution loop Worker:5b77bf8d has started in 82.6327 ms +2021-09-03 15:18:01.157 +08:00 [DBG] Execution loop Worker:5c542759 has started in 85.6795 ms +2021-09-03 15:18:01.164 +08:00 [INF] Server szqh003802a:27560:ec03c5f6 all the dispatchers started +2021-09-03 15:18:01.164 +08:00 [DBG] Execution loop DelayedJobScheduler:d691a317 has started in 10.4521 ms +2021-09-03 15:18:01.167 +08:00 [DBG] Execution loop RecurringJobScheduler:96e547a3 has started in 9.2179 ms +2021-09-03 15:18:01.173 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-09-03 15:18:16.301 +08:00 [INF] Initialized all ABP modules. +2021-09-03 15:18:16.365 +08:00 [INF] Now listening on: http://localhost:44315 +2021-09-03 15:18:16.365 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-09-03 15:18:16.365 +08:00 [INF] Hosting environment: Development +2021-09-03 15:18:16.365 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-09-03 15:18:16.626 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-09-03 15:18:17.658 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-03 15:18:17.717 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-09-03 15:18:17.752 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-09-03 15:18:17.760 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 38.5732ms +2021-09-03 15:18:17.760 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-03 15:18:17.780 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 1154.9427ms +2021-09-03 15:18:17.795 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-09-03 15:18:17.853 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 57.7048ms +2021-09-03 15:18:18.076 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-09-03 15:18:18.449 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 373.6863ms +2021-09-03 15:18:21.523 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:18:21.528 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:18:21.533 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 10.6120ms +2021-09-03 15:18:21.535 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:18:21.536 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:18:21.592 +08:00 [INF] Successfully validated the token. +2021-09-03 15:18:21.598 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:18:21.611 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:18:21.660 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:18:21.660 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 49.1061ms +2021-09-03 15:18:21.660 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:18:22.105 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:18:22.106 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:18:22.110 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 574.6071ms +2021-09-03 15:18:31.116 +08:00 [DBG] Server szqh003802a:27560:ec03c5f6 heartbeat successfully sent +2021-09-03 15:18:36.555 +08:00 [DBG] Execution Worker is in the Faulted state now due to an exception, execution will be retried no more than in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:18:36.555 +08:00 [DBG] Execution loop Worker:347e0f92 caught an exception and will be retried in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:18:36.555 +08:00 [DBG] Execution loop Worker:e43b8cf9 caught an exception and will be retried in 00:00:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:18:36.555 +08:00 [DBG] Execution loop Worker:347e0f92 will be retried in 00:00:01... +2021-09-03 15:18:36.555 +08:00 [DBG] Execution loop Worker:e43b8cf9 will be retried in 00:00:04... +2021-09-03 15:18:36.565 +08:00 [DBG] Execution loop Worker:875388ce caught an exception and will be retried in 00:00:09 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:18:36.565 +08:00 [DBG] Execution loop Worker:875388ce will be retried in 00:00:09... +2021-09-03 15:18:36.572 +08:00 [DBG] Execution loop Worker:207df109 caught an exception and will be retried in 00:00:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:18:36.572 +08:00 [DBG] Execution loop Worker:207df109 will be retried in 00:00:16... +2021-09-03 15:18:36.575 +08:00 [DBG] Execution loop Worker:5b77bf8d caught an exception and will be retried in 00:00:25 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:18:36.575 +08:00 [DBG] Execution loop Worker:5b77bf8d will be retried in 00:00:25... +2021-09-03 15:18:36.576 +08:00 [DBG] Execution loop Worker:a18b8f1b caught an exception and will be retried in 00:00:36 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:18:36.576 +08:00 [DBG] Execution loop Worker:f6086ae9 caught an exception and will be retried in 00:00:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:18:36.576 +08:00 [DBG] Execution loop Worker:a18b8f1b will be retried in 00:00:36... +2021-09-03 15:18:36.576 +08:00 [DBG] Execution loop Worker:f6086ae9 will be retried in 00:00:49... +2021-09-03 15:18:36.576 +08:00 [DBG] Execution loop Worker:d94b6fce caught an exception and will be retried in 00:01:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:18:36.576 +08:00 [DBG] Execution loop Worker:d94b6fce will be retried in 00:01:04... +2021-09-03 15:18:36.577 +08:00 [DBG] Execution loop Worker:c50e5792 caught an exception and will be retried in 00:01:21 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:18:36.577 +08:00 [DBG] Execution loop Worker:c50e5792 will be retried in 00:01:21... +2021-09-03 15:18:36.578 +08:00 [DBG] Execution loop Worker:a93a0f9d caught an exception and will be retried in 00:01:40 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:18:36.578 +08:00 [DBG] Execution loop Worker:a93a0f9d will be retried in 00:01:40... +2021-09-03 15:18:36.579 +08:00 [DBG] Execution loop Worker:57863865 caught an exception and will be retried in 00:02:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:18:36.579 +08:00 [DBG] Execution loop Worker:57863865 will be retried in 00:02:01... +2021-09-03 15:18:36.586 +08:00 [DBG] Execution loop Worker:5c542759 caught an exception and will be retried in 00:02:24 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:18:36.586 +08:00 [DBG] Execution loop Worker:5c542759 will be retried in 00:02:24... +2021-09-03 15:18:36.598 +08:00 [DBG] Execution loop Worker:9daf285c caught an exception and will be retried in 00:02:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:18:36.598 +08:00 [DBG] Execution loop Worker:fa569702 caught an exception and will be retried in 00:03:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:18:36.598 +08:00 [DBG] Execution loop Worker:9daf285c will be retried in 00:02:49... +2021-09-03 15:18:36.598 +08:00 [DBG] Execution loop Worker:fa569702 will be retried in 00:03:16... +2021-09-03 15:18:36.599 +08:00 [DBG] Execution loop Worker:c921d5bd caught an exception and will be retried in 00:03:45 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:18:36.599 +08:00 [DBG] Execution loop Worker:c921d5bd will be retried in 00:03:45... +2021-09-03 15:18:36.600 +08:00 [DBG] Execution loop Worker:13c92926 caught an exception and will be retried in 00:04:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:18:36.600 +08:00 [DBG] Execution loop Worker:13c92926 will be retried in 00:04:16... +2021-09-03 15:18:36.601 +08:00 [DBG] Execution loop Worker:fce61d59 caught an exception and will be retried in 00:04:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:18:36.601 +08:00 [DBG] Execution loop Worker:fce61d59 will be retried in 00:04:49... +2021-09-03 15:18:36.607 +08:00 [DBG] Execution loop Worker:bc740f38 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:18:36.607 +08:00 [DBG] Execution loop Worker:bc740f38 will be retried in 00:05:00... +2021-09-03 15:18:36.607 +08:00 [DBG] Execution loop Worker:cbdcbf89 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:18:36.607 +08:00 [DBG] Execution loop Worker:cbdcbf89 will be retried in 00:05:00... +2021-09-03 15:18:36.608 +08:00 [DBG] Execution loop Worker:91511524 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:18:36.608 +08:00 [DBG] Execution loop Worker:91511524 will be retried in 00:05:00... +2021-09-03 15:18:36.625 +08:00 [DBG] Execution RecurringJobScheduler is in the Faulted state now due to an exception, execution will be retried no more than in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:18:36.625 +08:00 [DBG] Execution loop RecurringJobScheduler:96e547a3 caught an exception and will be retried in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:18:36.626 +08:00 [DBG] Execution loop RecurringJobScheduler:96e547a3 will be retried in 00:00:01... +2021-09-03 15:18:36.696 +08:00 [ERR] MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.ExpirationManager.<>c__DisplayClass9_1.b__0(MySqlConnection connection) +2021-09-03 15:18:36.698 +08:00 [DBG] Removing outdated records from table 'List'... +2021-09-03 15:18:36.699 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-09-03 15:18:36.709 +08:00 [DBG] removed records count=0 +2021-09-03 15:18:36.710 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-09-03 15:18:36.711 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-09-03 15:18:43.098 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:18:43.099 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:18:43.099 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.5076ms +2021-09-03 15:18:43.101 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:18:43.101 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:18:43.104 +08:00 [INF] Successfully validated the token. +2021-09-03 15:18:43.106 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:18:43.106 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:18:43.108 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:18:43.108 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 1.0177ms +2021-09-03 15:18:43.108 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:18:43.144 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:18:43.144 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:18:43.144 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 43.7864ms +2021-09-03 15:19:01.124 +08:00 [DBG] Server szqh003802a:27560:ec03c5f6 heartbeat successfully sent +2021-09-03 15:19:06.968 +08:00 [ERR] MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.ExpirationManager.<>c__DisplayClass9_1.b__0(MySqlConnection connection) +2021-09-03 15:19:06.969 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-09-03 15:19:06.970 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-09-03 15:19:07.828 +08:00 [ERR] Execution Worker is in the Failed state now due to an exception, execution will be retried no more than in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:19:07.828 +08:00 [DBG] Execution loop Worker:347e0f92 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:19:07.828 +08:00 [DBG] Execution loop Worker:347e0f92 will be retried in 00:05:00... +2021-09-03 15:19:08.128 +08:00 [ERR] Execution RecurringJobScheduler is in the Failed state now due to an exception, execution will be retried no more than in 00:00:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:19:08.128 +08:00 [DBG] Execution loop RecurringJobScheduler:96e547a3 caught an exception and will be retried in 00:00:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:19:08.128 +08:00 [DBG] Execution loop RecurringJobScheduler:96e547a3 will be retried in 00:00:04... +2021-09-03 15:19:10.845 +08:00 [DBG] Execution loop Worker:e43b8cf9 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:19:10.845 +08:00 [DBG] Execution loop Worker:e43b8cf9 will be retried in 00:05:00... +2021-09-03 15:19:15.847 +08:00 [DBG] Execution loop Worker:875388ce caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:19:15.847 +08:00 [DBG] Execution loop Worker:875388ce will be retried in 00:05:00... +2021-09-03 15:19:22.948 +08:00 [DBG] Execution loop Worker:207df109 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:19:22.948 +08:00 [DBG] Execution loop Worker:207df109 will be retried in 00:05:00... +2021-09-03 15:19:31.152 +08:00 [DBG] Server szqh003802a:27560:ec03c5f6 heartbeat successfully sent +2021-09-03 15:19:31.829 +08:00 [DBG] Execution loop Worker:5b77bf8d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:19:31.829 +08:00 [DBG] Execution loop Worker:5b77bf8d will be retried in 00:05:00... +2021-09-03 15:19:37.202 +08:00 [ERR] MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.ExpirationManager.<>c__DisplayClass9_1.b__0(MySqlConnection connection) +2021-09-03 15:19:42.460 +08:00 [DBG] Execution loop RecurringJobScheduler:96e547a3 caught an exception and will be retried in 00:00:09 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:19:42.460 +08:00 [DBG] Execution loop RecurringJobScheduler:96e547a3 will be retried in 00:00:09... +2021-09-03 15:19:42.838 +08:00 [DBG] Execution loop Worker:a18b8f1b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:19:42.838 +08:00 [DBG] Execution loop Worker:a18b8f1b will be retried in 00:05:00... +2021-09-03 15:19:55.844 +08:00 [DBG] Execution loop Worker:f6086ae9 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:19:55.844 +08:00 [DBG] Execution loop Worker:f6086ae9 will be retried in 00:05:00... +2021-09-03 15:20:01.176 +08:00 [DBG] Server szqh003802a:27560:ec03c5f6 heartbeat successfully sent +2021-09-03 15:20:10.830 +08:00 [DBG] Execution loop Worker:d94b6fce caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:20:10.830 +08:00 [DBG] Execution loop Worker:d94b6fce will be retried in 00:05:00... +2021-09-03 15:20:21.800 +08:00 [DBG] Execution loop RecurringJobScheduler:96e547a3 caught an exception and will be retried in 00:00:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:20:21.800 +08:00 [DBG] Execution loop RecurringJobScheduler:96e547a3 will be retried in 00:00:16... +2021-09-03 15:20:27.826 +08:00 [DBG] Execution loop Worker:c50e5792 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:20:27.826 +08:00 [DBG] Execution loop Worker:c50e5792 will be retried in 00:05:00... +2021-09-03 15:20:31.202 +08:00 [DBG] Server szqh003802a:27560:ec03c5f6 heartbeat successfully sent +2021-09-03 15:20:46.837 +08:00 [DBG] Execution loop Worker:a93a0f9d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:20:46.837 +08:00 [DBG] Execution loop Worker:a93a0f9d will be retried in 00:05:00... +2021-09-03 15:21:01.224 +08:00 [DBG] Server szqh003802a:27560:ec03c5f6 heartbeat successfully sent +2021-09-03 15:21:04.918 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext, Volo.Abp.BackgroundJobs.EntityFrameworkCore, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]. +Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext, Volo.Abp.BackgroundJobs.EntityFrameworkCore, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]. + ---> System.ArgumentException: Invalid value 'true,Connect Timeout=60' for 'AllowLoadLocalInfile' connection string option. + ---> System.FormatException: String 'true,Connect Timeout=60' was not recognized as a valid Boolean. + at System.Boolean.Parse(ReadOnlySpan`1 value) + at System.Boolean.Parse(String value) + at System.Convert.ToBoolean(String value, IFormatProvider provider) + at System.String.System.IConvertible.ToBoolean(IFormatProvider provider) + at System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider) + at MySqlConnector.MySqlConnectionStringValueOption`1.ChangeType(Object objectValue) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 837 + --- End of inner exception stack trace --- + at MySqlConnector.MySqlConnectionStringValueOption`1.ChangeType(Object objectValue) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 841 + at MySqlConnector.MySqlConnectionStringValueOption`1.SetObject(MySqlConnectionStringBuilder builder, Object value) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 807 + at MySqlConnector.MySqlConnectionStringBuilder.set_Item(String key, Object value) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 402 + at System.Data.Common.DbConnectionStringBuilder.set_ConnectionString(String value) + at MySqlConnector.MySqlConnectionStringBuilder..ctor(String connectionString) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 19 + at Microsoft.EntityFrameworkCore.ServerVersion.AutoDetect(String connectionString) + at Volo.Abp.EntityFrameworkCore.AbpDbContextConfigurationContextMySQLExtensions.UseMySQL(AbpDbContextConfigurationContext context, Action`1 mySQLOptionsAction) + at Volo.Abp.EntityFrameworkCore.AbpDbContextOptionsMySQLExtensions.<>c__DisplayClass0_0.b__0(AbpDbContextConfigurationContext context) + at Volo.Abp.EntityFrameworkCore.DependencyInjection.DbContextOptionsFactory.Configure[TDbContext](AbpDbContextOptions options, AbpDbContextConfigurationContext`1 context) + at Volo.Abp.EntityFrameworkCore.DependencyInjection.DbContextOptionsFactory.Create[TDbContext](IServiceProvider serviceProvider) + at Autofac.Extensions.DependencyInjection.AutofacRegistration.<>c__DisplayClass3_0.b__0(IComponentContext context, IEnumerable`1 parameters) + at Autofac.Core.Activators.Delegate.DelegateActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters) + at Autofac.Core.Activators.Delegate.DelegateActivator.b__2_0(ResolveRequestContext ctxt, Action`1 next) + at Autofac.Core.Resolving.Middleware.DelegateMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + --- End of inner exception stack trace --- + at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Pipeline.ResolvePipeline.Invoke(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.RegistrationPipelineInvokeMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.ScopeSelectionMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Pipeline.ResolvePipeline.Invoke(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request) + at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request) + at Autofac.Core.Resolving.ResolveOperation.Execute(ResolveRequest request) + at Autofac.Core.Lifetime.LifetimeScope.ResolveComponent(ResolveRequest request) + at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance) + at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters) + at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType, IEnumerable`1 parameters) + at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType) + at Autofac.Extensions.DependencyInjection.AutofacServiceProvider.GetRequiredService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork, String connectionStringName, String connectionString) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.GetDbContextAsync() + at Volo.Abp.Domain.Repositories.EntityFrameworkCore.EfCoreRepository`2.GetDbSetAsync() + at Volo.Abp.BackgroundJobs.EntityFrameworkCore.EfCoreBackgroundJobRepository.GetWaitingListQueryAsync(Int32 maxResultCount) + at Volo.Abp.BackgroundJobs.EntityFrameworkCore.EfCoreBackgroundJobRepository.GetWaitingListAsync(Int32 maxResultCount, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Volo.Abp.BackgroundJobs.BackgroundJobStore.GetWaitingJobsAsync(Int32 maxResultCount) + at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext) + at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync() +2021-09-03 15:21:04.920 +08:00 [ERR] ---------- Exception Data ---------- +ActivatorChain = Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext, Volo.Abp.BackgroundJobs.EntityFrameworkCore, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]] + +2021-09-03 15:21:13.947 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-09-03 15:21:18.101 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-09-03 15:21:18.229 +08:00 [INF] Loaded ABP modules: +2021-09-03 15:21:18.229 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-09-03 15:21:18.229 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-09-03 15:21:18.229 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-09-03 15:21:18.229 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-09-03 15:21:18.229 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-09-03 15:21:18.229 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-09-03 15:21:18.229 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-09-03 15:21:18.229 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-09-03 15:21:18.229 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-09-03 15:21:18.229 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-09-03 15:21:18.230 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-09-03 15:21:18.230 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-09-03 15:21:18.230 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-09-03 15:21:18.230 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-09-03 15:21:18.230 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule +2021-09-03 15:21:18.230 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-09-03 15:21:18.230 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-09-03 15:21:18.230 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-09-03 15:21:18.230 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-09-03 15:21:18.230 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-09-03 15:21:18.230 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-09-03 15:21:18.230 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-09-03 15:21:18.230 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-09-03 15:21:18.230 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-09-03 15:21:18.315 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-09-03 15:21:18.319 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-09-03 15:21:18.625 +08:00 [INF] DB tables already exist. Exit install +2021-09-03 15:21:18.664 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-09-03 15:21:18.664 +08:00 [INF] Using the following options for SQL Server job storage: +2021-09-03 15:21:18.664 +08:00 [INF] Queue poll interval: 00:00:15. +2021-09-03 15:21:18.664 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-09-03 15:21:18.686 +08:00 [DBG] Execution loop BackgroundServerProcess:d9053cf2 has started in 4.7576 ms +2021-09-03 15:21:18.801 +08:00 [INF] Server szqh003802a:21800:e078871c successfully announced in 100.5429 ms +2021-09-03 15:21:18.834 +08:00 [DBG] Execution loop ServerHeartbeatProcess:d9960676 has started in 32.3813 ms +2021-09-03 15:21:18.834 +08:00 [INF] Server szqh003802a:21800:e078871c is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-09-03 15:21:18.837 +08:00 [DBG] Execution loop ServerWatchdog:48d58f21 has started in 2.286 ms +2021-09-03 15:21:18.838 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:853d89e3 has started in 3.2623 ms +2021-09-03 15:21:18.840 +08:00 [DBG] Execution loop ExpirationManager:4676a397 has started in 2.3912 ms +2021-09-03 15:21:18.842 +08:00 [DBG] Execution loop CountersAggregator:edc8e4c9 has started in 3.8215 ms +2021-09-03 15:21:18.843 +08:00 [DBG] Execution loop Worker:fc76e115 has started in 3.0041 ms +2021-09-03 15:21:18.845 +08:00 [DBG] Execution loop Worker:b813ca56 has started in 4.8294 ms +2021-09-03 15:21:18.846 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 15:21:18.846 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-09-03 15:21:18.847 +08:00 [DBG] Execution loop Worker:bfcebf13 has started in 6.8158 ms +2021-09-03 15:21:18.849 +08:00 [DBG] Execution loop Worker:6d41cd5b has started in 8.1944 ms +2021-09-03 15:21:18.851 +08:00 [DBG] Execution loop Worker:426ca79d has started in 10.8993 ms +2021-09-03 15:21:18.880 +08:00 [DBG] Execution loop Worker:108cfea7 has started in 39.8843 ms +2021-09-03 15:21:18.880 +08:00 [DBG] Execution loop Worker:b443f973 has started in 39.8982 ms +2021-09-03 15:21:18.883 +08:00 [DBG] Execution loop Worker:6fa82ffa has started in 42.6828 ms +2021-09-03 15:21:18.885 +08:00 [DBG] Execution loop Worker:d098b382 has started in 44.9763 ms +2021-09-03 15:21:18.887 +08:00 [DBG] Execution loop Worker:6de3173c has started in 46.6856 ms +2021-09-03 15:21:18.890 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-03 15:21:18.890 +08:00 [DBG] Execution loop Worker:41da934f has started in 50.3964 ms +2021-09-03 15:21:18.893 +08:00 [DBG] Execution loop Worker:8e5ae3a5 has started in 52.5476 ms +2021-09-03 15:21:18.896 +08:00 [DBG] Execution loop Worker:8288d166 has started in 55.9387 ms +2021-09-03 15:21:18.896 +08:00 [DBG] Execution loop Worker:23459807 has started in 55.9373 ms +2021-09-03 15:21:18.897 +08:00 [DBG] Execution loop Worker:414437ee has started in 56.9437 ms +2021-09-03 15:21:18.900 +08:00 [DBG] Execution loop Worker:370f604c has started in 58.9143 ms +2021-09-03 15:21:18.902 +08:00 [DBG] Execution loop Worker:2dd9278d has started in 61.645 ms +2021-09-03 15:21:18.906 +08:00 [DBG] Execution loop Worker:683ec808 has started in 66.1395 ms +2021-09-03 15:21:18.913 +08:00 [DBG] Execution loop Worker:ee898985 has started in 73.3793 ms +2021-09-03 15:21:18.924 +08:00 [DBG] Execution loop Worker:5281f72e has started in 84.4258 ms +2021-09-03 15:21:18.931 +08:00 [DBG] Execution loop DelayedJobScheduler:22a2834e has started in 15.9147 ms +2021-09-03 15:21:18.934 +08:00 [INF] Server szqh003802a:21800:e078871c all the dispatchers started +2021-09-03 15:21:18.940 +08:00 [DBG] Execution loop RecurringJobScheduler:4e882f4b has started in 15.0178 ms +2021-09-03 15:21:18.957 +08:00 [DBG] removed records count=0 +2021-09-03 15:21:18.966 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-09-03 15:21:18.985 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-09-03 15:21:19.394 +08:00 [INF] Initialized all ABP modules. +2021-09-03 15:21:19.470 +08:00 [INF] Now listening on: http://localhost:44315 +2021-09-03 15:21:19.471 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-09-03 15:21:19.471 +08:00 [INF] Hosting environment: Development +2021-09-03 15:21:19.471 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-09-03 15:21:19.857 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-09-03 15:21:21.369 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-03 15:21:21.433 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-09-03 15:21:21.465 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-09-03 15:21:21.471 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 34.9422ms +2021-09-03 15:21:21.471 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-03 15:21:21.492 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 1635.9209ms +2021-09-03 15:21:21.506 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-09-03 15:21:21.562 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 56.2622ms +2021-09-03 15:21:21.718 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-09-03 15:21:22.081 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 363.4755ms +2021-09-03 15:21:24.016 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext, Volo.Abp.BackgroundJobs.EntityFrameworkCore, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]. +Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext, Volo.Abp.BackgroundJobs.EntityFrameworkCore, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]. + ---> System.ArgumentException: Invalid value 'true,Connect Timeout=60' for 'AllowLoadLocalInfile' connection string option. + ---> System.FormatException: String 'true,Connect Timeout=60' was not recognized as a valid Boolean. + at System.Boolean.Parse(ReadOnlySpan`1 value) + at System.Boolean.Parse(String value) + at System.Convert.ToBoolean(String value, IFormatProvider provider) + at System.String.System.IConvertible.ToBoolean(IFormatProvider provider) + at System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider) + at MySqlConnector.MySqlConnectionStringValueOption`1.ChangeType(Object objectValue) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 837 + --- End of inner exception stack trace --- + at MySqlConnector.MySqlConnectionStringValueOption`1.ChangeType(Object objectValue) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 841 + at MySqlConnector.MySqlConnectionStringValueOption`1.SetObject(MySqlConnectionStringBuilder builder, Object value) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 807 + at MySqlConnector.MySqlConnectionStringBuilder.set_Item(String key, Object value) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 402 + at System.Data.Common.DbConnectionStringBuilder.set_ConnectionString(String value) + at MySqlConnector.MySqlConnectionStringBuilder..ctor(String connectionString) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 19 + at Microsoft.EntityFrameworkCore.ServerVersion.AutoDetect(String connectionString) + at Volo.Abp.EntityFrameworkCore.AbpDbContextConfigurationContextMySQLExtensions.UseMySQL(AbpDbContextConfigurationContext context, Action`1 mySQLOptionsAction) + at Volo.Abp.EntityFrameworkCore.AbpDbContextOptionsMySQLExtensions.<>c__DisplayClass0_0.b__0(AbpDbContextConfigurationContext context) + at Volo.Abp.EntityFrameworkCore.DependencyInjection.DbContextOptionsFactory.Configure[TDbContext](AbpDbContextOptions options, AbpDbContextConfigurationContext`1 context) + at Volo.Abp.EntityFrameworkCore.DependencyInjection.DbContextOptionsFactory.Create[TDbContext](IServiceProvider serviceProvider) + at Autofac.Extensions.DependencyInjection.AutofacRegistration.<>c__DisplayClass3_0.b__0(IComponentContext context, IEnumerable`1 parameters) + at Autofac.Core.Activators.Delegate.DelegateActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters) + at Autofac.Core.Activators.Delegate.DelegateActivator.b__2_0(ResolveRequestContext ctxt, Action`1 next) + at Autofac.Core.Resolving.Middleware.DelegateMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + --- End of inner exception stack trace --- + at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Pipeline.ResolvePipeline.Invoke(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.RegistrationPipelineInvokeMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.ScopeSelectionMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Pipeline.ResolvePipeline.Invoke(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request) + at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request) + at Autofac.Core.Resolving.ResolveOperation.Execute(ResolveRequest request) + at Autofac.Core.Lifetime.LifetimeScope.ResolveComponent(ResolveRequest request) + at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance) + at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters) + at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType, IEnumerable`1 parameters) + at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType) + at Autofac.Extensions.DependencyInjection.AutofacServiceProvider.GetRequiredService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork, String connectionStringName, String connectionString) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.GetDbContextAsync() + at Volo.Abp.Domain.Repositories.EntityFrameworkCore.EfCoreRepository`2.GetDbSetAsync() + at Volo.Abp.BackgroundJobs.EntityFrameworkCore.EfCoreBackgroundJobRepository.GetWaitingListQueryAsync(Int32 maxResultCount) + at Volo.Abp.BackgroundJobs.EntityFrameworkCore.EfCoreBackgroundJobRepository.GetWaitingListAsync(Int32 maxResultCount, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Volo.Abp.BackgroundJobs.BackgroundJobStore.GetWaitingJobsAsync(Int32 maxResultCount) + at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext) + at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync() +2021-09-03 15:21:24.017 +08:00 [ERR] ---------- Exception Data ---------- +ActivatorChain = Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext, Volo.Abp.BackgroundJobs.EntityFrameworkCore, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]] + +2021-09-03 15:21:25.450 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:21:25.456 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:21:25.461 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 10.9436ms +2021-09-03 15:21:25.464 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:21:25.464 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:21:25.518 +08:00 [INF] Successfully validated the token. +2021-09-03 15:21:25.523 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:21:25.541 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:21:25.588 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:21:25.589 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 48.0794ms +2021-09-03 15:21:25.589 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:21:26.072 +08:00 [WRN] Could not save the audit log object: +AUDIT LOG: [415: POST ] /AuditLogs/page +- UserName - UserId : admin - 39fe52c6-27a0-d54c-0b47-4133f044c8fa +- ClientIpAddress : ::1 +- ExecutionDuration : 67 + +2021-09-03 15:21:26.072 +08:00 [ERR] An exception was thrown while activating Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingDbContext, Volo.Abp.AuditLogging.EntityFrameworkCore, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]. +Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingDbContext, Volo.Abp.AuditLogging.EntityFrameworkCore, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]. + ---> System.ArgumentException: Invalid value 'true,Connect Timeout=60' for 'AllowLoadLocalInfile' connection string option. + ---> System.FormatException: String 'true,Connect Timeout=60' was not recognized as a valid Boolean. + at System.Boolean.Parse(ReadOnlySpan`1 value) + at System.Boolean.Parse(String value) + at System.Convert.ToBoolean(String value, IFormatProvider provider) + at System.String.System.IConvertible.ToBoolean(IFormatProvider provider) + at System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider) + at MySqlConnector.MySqlConnectionStringValueOption`1.ChangeType(Object objectValue) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 837 + --- End of inner exception stack trace --- + at MySqlConnector.MySqlConnectionStringValueOption`1.ChangeType(Object objectValue) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 841 + at MySqlConnector.MySqlConnectionStringValueOption`1.SetObject(MySqlConnectionStringBuilder builder, Object value) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 807 + at MySqlConnector.MySqlConnectionStringBuilder.set_Item(String key, Object value) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 402 + at System.Data.Common.DbConnectionStringBuilder.set_ConnectionString(String value) + at MySqlConnector.MySqlConnectionStringBuilder..ctor(String connectionString) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 19 + at Microsoft.EntityFrameworkCore.ServerVersion.AutoDetect(String connectionString) + at Volo.Abp.EntityFrameworkCore.AbpDbContextConfigurationContextMySQLExtensions.UseMySQL(AbpDbContextConfigurationContext context, Action`1 mySQLOptionsAction) + at Volo.Abp.EntityFrameworkCore.AbpDbContextOptionsMySQLExtensions.<>c__DisplayClass0_0.b__0(AbpDbContextConfigurationContext context) + at Volo.Abp.EntityFrameworkCore.DependencyInjection.DbContextOptionsFactory.Configure[TDbContext](AbpDbContextOptions options, AbpDbContextConfigurationContext`1 context) + at Volo.Abp.EntityFrameworkCore.DependencyInjection.DbContextOptionsFactory.Create[TDbContext](IServiceProvider serviceProvider) + at Autofac.Extensions.DependencyInjection.AutofacRegistration.<>c__DisplayClass3_0.b__0(IComponentContext context, IEnumerable`1 parameters) + at Autofac.Core.Activators.Delegate.DelegateActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters) + at Autofac.Core.Activators.Delegate.DelegateActivator.b__2_0(ResolveRequestContext ctxt, Action`1 next) + at Autofac.Core.Resolving.Middleware.DelegateMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + --- End of inner exception stack trace --- + at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Pipeline.ResolvePipeline.Invoke(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.RegistrationPipelineInvokeMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.ScopeSelectionMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Pipeline.ResolvePipeline.Invoke(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request) + at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request) + at Autofac.Core.Resolving.ResolveOperation.Execute(ResolveRequest request) + at Autofac.Core.Lifetime.LifetimeScope.ResolveComponent(ResolveRequest request) + at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance) + at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters) + at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType, IEnumerable`1 parameters) + at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType) + at Autofac.Extensions.DependencyInjection.AutofacServiceProvider.GetRequiredService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork, String connectionStringName, String connectionString) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.GetDbContextAsync() + at Volo.Abp.Domain.Repositories.EntityFrameworkCore.EfCoreRepository`2.InsertAsync(TEntity entity, Boolean autoSave, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Volo.Abp.AuditLogging.AuditingStore.SaveLogAsync(AuditLogInfo auditInfo) + at Volo.Abp.AuditLogging.AuditingStore.SaveAsync(AuditLogInfo auditInfo) +2021-09-03 15:21:26.072 +08:00 [ERR] ---------- Exception Data ---------- +ActivatorChain = Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingDbContext, Volo.Abp.AuditLogging.EntityFrameworkCore, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]] + +2021-09-03 15:21:26.073 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 609.3503ms +2021-09-03 15:21:29.263 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext, Volo.Abp.BackgroundJobs.EntityFrameworkCore, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]. +Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext, Volo.Abp.BackgroundJobs.EntityFrameworkCore, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]. + ---> System.ArgumentException: Invalid value 'true,Connect Timeout=60' for 'AllowLoadLocalInfile' connection string option. + ---> System.FormatException: String 'true,Connect Timeout=60' was not recognized as a valid Boolean. + at System.Boolean.Parse(ReadOnlySpan`1 value) + at System.Boolean.Parse(String value) + at System.Convert.ToBoolean(String value, IFormatProvider provider) + at System.String.System.IConvertible.ToBoolean(IFormatProvider provider) + at System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider) + at MySqlConnector.MySqlConnectionStringValueOption`1.ChangeType(Object objectValue) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 837 + --- End of inner exception stack trace --- + at MySqlConnector.MySqlConnectionStringValueOption`1.ChangeType(Object objectValue) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 841 + at MySqlConnector.MySqlConnectionStringValueOption`1.SetObject(MySqlConnectionStringBuilder builder, Object value) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 807 + at MySqlConnector.MySqlConnectionStringBuilder.set_Item(String key, Object value) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 402 + at System.Data.Common.DbConnectionStringBuilder.set_ConnectionString(String value) + at MySqlConnector.MySqlConnectionStringBuilder..ctor(String connectionString) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 19 + at Microsoft.EntityFrameworkCore.ServerVersion.AutoDetect(String connectionString) + at Volo.Abp.EntityFrameworkCore.AbpDbContextConfigurationContextMySQLExtensions.UseMySQL(AbpDbContextConfigurationContext context, Action`1 mySQLOptionsAction) + at Volo.Abp.EntityFrameworkCore.AbpDbContextOptionsMySQLExtensions.<>c__DisplayClass0_0.b__0(AbpDbContextConfigurationContext context) + at Volo.Abp.EntityFrameworkCore.DependencyInjection.DbContextOptionsFactory.Configure[TDbContext](AbpDbContextOptions options, AbpDbContextConfigurationContext`1 context) + at Volo.Abp.EntityFrameworkCore.DependencyInjection.DbContextOptionsFactory.Create[TDbContext](IServiceProvider serviceProvider) + at Autofac.Extensions.DependencyInjection.AutofacRegistration.<>c__DisplayClass3_0.b__0(IComponentContext context, IEnumerable`1 parameters) + at Autofac.Core.Activators.Delegate.DelegateActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters) + at Autofac.Core.Activators.Delegate.DelegateActivator.b__2_0(ResolveRequestContext ctxt, Action`1 next) + at Autofac.Core.Resolving.Middleware.DelegateMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + --- End of inner exception stack trace --- + at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Pipeline.ResolvePipeline.Invoke(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.RegistrationPipelineInvokeMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.ScopeSelectionMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Pipeline.ResolvePipeline.Invoke(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request) + at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request) + at Autofac.Core.Resolving.ResolveOperation.Execute(ResolveRequest request) + at Autofac.Core.Lifetime.LifetimeScope.ResolveComponent(ResolveRequest request) + at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance) + at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters) + at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType, IEnumerable`1 parameters) + at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType) + at Autofac.Extensions.DependencyInjection.AutofacServiceProvider.GetRequiredService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork, String connectionStringName, String connectionString) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.GetDbContextAsync() + at Volo.Abp.Domain.Repositories.EntityFrameworkCore.EfCoreRepository`2.GetDbSetAsync() + at Volo.Abp.BackgroundJobs.EntityFrameworkCore.EfCoreBackgroundJobRepository.GetWaitingListQueryAsync(Int32 maxResultCount) + at Volo.Abp.BackgroundJobs.EntityFrameworkCore.EfCoreBackgroundJobRepository.GetWaitingListAsync(Int32 maxResultCount, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Volo.Abp.BackgroundJobs.BackgroundJobStore.GetWaitingJobsAsync(Int32 maxResultCount) + at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext) + at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync() +2021-09-03 15:21:29.263 +08:00 [ERR] ---------- Exception Data ---------- +ActivatorChain = Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext, Volo.Abp.BackgroundJobs.EntityFrameworkCore, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]] + +2021-09-03 15:21:34.495 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext, Volo.Abp.BackgroundJobs.EntityFrameworkCore, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]. +Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext, Volo.Abp.BackgroundJobs.EntityFrameworkCore, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]. + ---> System.ArgumentException: Invalid value 'true,Connect Timeout=60' for 'AllowLoadLocalInfile' connection string option. + ---> System.FormatException: String 'true,Connect Timeout=60' was not recognized as a valid Boolean. + at System.Boolean.Parse(ReadOnlySpan`1 value) + at System.Boolean.Parse(String value) + at System.Convert.ToBoolean(String value, IFormatProvider provider) + at System.String.System.IConvertible.ToBoolean(IFormatProvider provider) + at System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider) + at MySqlConnector.MySqlConnectionStringValueOption`1.ChangeType(Object objectValue) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 837 + --- End of inner exception stack trace --- + at MySqlConnector.MySqlConnectionStringValueOption`1.ChangeType(Object objectValue) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 841 + at MySqlConnector.MySqlConnectionStringValueOption`1.SetObject(MySqlConnectionStringBuilder builder, Object value) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 807 + at MySqlConnector.MySqlConnectionStringBuilder.set_Item(String key, Object value) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 402 + at System.Data.Common.DbConnectionStringBuilder.set_ConnectionString(String value) + at MySqlConnector.MySqlConnectionStringBuilder..ctor(String connectionString) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 19 + at Microsoft.EntityFrameworkCore.ServerVersion.AutoDetect(String connectionString) + at Volo.Abp.EntityFrameworkCore.AbpDbContextConfigurationContextMySQLExtensions.UseMySQL(AbpDbContextConfigurationContext context, Action`1 mySQLOptionsAction) + at Volo.Abp.EntityFrameworkCore.AbpDbContextOptionsMySQLExtensions.<>c__DisplayClass0_0.b__0(AbpDbContextConfigurationContext context) + at Volo.Abp.EntityFrameworkCore.DependencyInjection.DbContextOptionsFactory.Configure[TDbContext](AbpDbContextOptions options, AbpDbContextConfigurationContext`1 context) + at Volo.Abp.EntityFrameworkCore.DependencyInjection.DbContextOptionsFactory.Create[TDbContext](IServiceProvider serviceProvider) + at Autofac.Extensions.DependencyInjection.AutofacRegistration.<>c__DisplayClass3_0.b__0(IComponentContext context, IEnumerable`1 parameters) + at Autofac.Core.Activators.Delegate.DelegateActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters) + at Autofac.Core.Activators.Delegate.DelegateActivator.b__2_0(ResolveRequestContext ctxt, Action`1 next) + at Autofac.Core.Resolving.Middleware.DelegateMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + --- End of inner exception stack trace --- + at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Pipeline.ResolvePipeline.Invoke(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.RegistrationPipelineInvokeMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.ScopeSelectionMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Pipeline.ResolvePipeline.Invoke(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request) + at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request) + at Autofac.Core.Resolving.ResolveOperation.Execute(ResolveRequest request) + at Autofac.Core.Lifetime.LifetimeScope.ResolveComponent(ResolveRequest request) + at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance) + at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters) + at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType, IEnumerable`1 parameters) + at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType) + at Autofac.Extensions.DependencyInjection.AutofacServiceProvider.GetRequiredService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork, String connectionStringName, String connectionString) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.GetDbContextAsync() + at Volo.Abp.Domain.Repositories.EntityFrameworkCore.EfCoreRepository`2.GetDbSetAsync() + at Volo.Abp.BackgroundJobs.EntityFrameworkCore.EfCoreBackgroundJobRepository.GetWaitingListQueryAsync(Int32 maxResultCount) + at Volo.Abp.BackgroundJobs.EntityFrameworkCore.EfCoreBackgroundJobRepository.GetWaitingListAsync(Int32 maxResultCount, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Volo.Abp.BackgroundJobs.BackgroundJobStore.GetWaitingJobsAsync(Int32 maxResultCount) + at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext) + at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync() +2021-09-03 15:21:34.495 +08:00 [ERR] ---------- Exception Data ---------- +ActivatorChain = Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext, Volo.Abp.BackgroundJobs.EntityFrameworkCore, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]] + +2021-09-03 15:21:39.721 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext, Volo.Abp.BackgroundJobs.EntityFrameworkCore, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]. +Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext, Volo.Abp.BackgroundJobs.EntityFrameworkCore, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]. + ---> System.ArgumentException: Invalid value 'true,Connect Timeout=60' for 'AllowLoadLocalInfile' connection string option. + ---> System.FormatException: String 'true,Connect Timeout=60' was not recognized as a valid Boolean. + at System.Boolean.Parse(ReadOnlySpan`1 value) + at System.Boolean.Parse(String value) + at System.Convert.ToBoolean(String value, IFormatProvider provider) + at System.String.System.IConvertible.ToBoolean(IFormatProvider provider) + at System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider) + at MySqlConnector.MySqlConnectionStringValueOption`1.ChangeType(Object objectValue) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 837 + --- End of inner exception stack trace --- + at MySqlConnector.MySqlConnectionStringValueOption`1.ChangeType(Object objectValue) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 841 + at MySqlConnector.MySqlConnectionStringValueOption`1.SetObject(MySqlConnectionStringBuilder builder, Object value) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 807 + at MySqlConnector.MySqlConnectionStringBuilder.set_Item(String key, Object value) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 402 + at System.Data.Common.DbConnectionStringBuilder.set_ConnectionString(String value) + at MySqlConnector.MySqlConnectionStringBuilder..ctor(String connectionString) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 19 + at Microsoft.EntityFrameworkCore.ServerVersion.AutoDetect(String connectionString) + at Volo.Abp.EntityFrameworkCore.AbpDbContextConfigurationContextMySQLExtensions.UseMySQL(AbpDbContextConfigurationContext context, Action`1 mySQLOptionsAction) + at Volo.Abp.EntityFrameworkCore.AbpDbContextOptionsMySQLExtensions.<>c__DisplayClass0_0.b__0(AbpDbContextConfigurationContext context) + at Volo.Abp.EntityFrameworkCore.DependencyInjection.DbContextOptionsFactory.Configure[TDbContext](AbpDbContextOptions options, AbpDbContextConfigurationContext`1 context) + at Volo.Abp.EntityFrameworkCore.DependencyInjection.DbContextOptionsFactory.Create[TDbContext](IServiceProvider serviceProvider) + at Autofac.Extensions.DependencyInjection.AutofacRegistration.<>c__DisplayClass3_0.b__0(IComponentContext context, IEnumerable`1 parameters) + at Autofac.Core.Activators.Delegate.DelegateActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters) + at Autofac.Core.Activators.Delegate.DelegateActivator.b__2_0(ResolveRequestContext ctxt, Action`1 next) + at Autofac.Core.Resolving.Middleware.DelegateMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + --- End of inner exception stack trace --- + at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Pipeline.ResolvePipeline.Invoke(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.RegistrationPipelineInvokeMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.ScopeSelectionMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Pipeline.ResolvePipeline.Invoke(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request) + at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request) + at Autofac.Core.Resolving.ResolveOperation.Execute(ResolveRequest request) + at Autofac.Core.Lifetime.LifetimeScope.ResolveComponent(ResolveRequest request) + at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance) + at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters) + at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType, IEnumerable`1 parameters) + at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType) + at Autofac.Extensions.DependencyInjection.AutofacServiceProvider.GetRequiredService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork, String connectionStringName, String connectionString) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.GetDbContextAsync() + at Volo.Abp.Domain.Repositories.EntityFrameworkCore.EfCoreRepository`2.GetDbSetAsync() + at Volo.Abp.BackgroundJobs.EntityFrameworkCore.EfCoreBackgroundJobRepository.GetWaitingListQueryAsync(Int32 maxResultCount) + at Volo.Abp.BackgroundJobs.EntityFrameworkCore.EfCoreBackgroundJobRepository.GetWaitingListAsync(Int32 maxResultCount, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Volo.Abp.BackgroundJobs.BackgroundJobStore.GetWaitingJobsAsync(Int32 maxResultCount) + at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext) + at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync() +2021-09-03 15:21:39.721 +08:00 [ERR] ---------- Exception Data ---------- +ActivatorChain = Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext, Volo.Abp.BackgroundJobs.EntityFrameworkCore, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]] + +2021-09-03 15:21:44.970 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext, Volo.Abp.BackgroundJobs.EntityFrameworkCore, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]. +Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext, Volo.Abp.BackgroundJobs.EntityFrameworkCore, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]. + ---> System.ArgumentException: Invalid value 'true,Connect Timeout=60' for 'AllowLoadLocalInfile' connection string option. + ---> System.FormatException: String 'true,Connect Timeout=60' was not recognized as a valid Boolean. + at System.Boolean.Parse(ReadOnlySpan`1 value) + at System.Boolean.Parse(String value) + at System.Convert.ToBoolean(String value, IFormatProvider provider) + at System.String.System.IConvertible.ToBoolean(IFormatProvider provider) + at System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider) + at MySqlConnector.MySqlConnectionStringValueOption`1.ChangeType(Object objectValue) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 837 + --- End of inner exception stack trace --- + at MySqlConnector.MySqlConnectionStringValueOption`1.ChangeType(Object objectValue) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 841 + at MySqlConnector.MySqlConnectionStringValueOption`1.SetObject(MySqlConnectionStringBuilder builder, Object value) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 807 + at MySqlConnector.MySqlConnectionStringBuilder.set_Item(String key, Object value) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 402 + at System.Data.Common.DbConnectionStringBuilder.set_ConnectionString(String value) + at MySqlConnector.MySqlConnectionStringBuilder..ctor(String connectionString) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 19 + at Microsoft.EntityFrameworkCore.ServerVersion.AutoDetect(String connectionString) + at Volo.Abp.EntityFrameworkCore.AbpDbContextConfigurationContextMySQLExtensions.UseMySQL(AbpDbContextConfigurationContext context, Action`1 mySQLOptionsAction) + at Volo.Abp.EntityFrameworkCore.AbpDbContextOptionsMySQLExtensions.<>c__DisplayClass0_0.b__0(AbpDbContextConfigurationContext context) + at Volo.Abp.EntityFrameworkCore.DependencyInjection.DbContextOptionsFactory.Configure[TDbContext](AbpDbContextOptions options, AbpDbContextConfigurationContext`1 context) + at Volo.Abp.EntityFrameworkCore.DependencyInjection.DbContextOptionsFactory.Create[TDbContext](IServiceProvider serviceProvider) + at Autofac.Extensions.DependencyInjection.AutofacRegistration.<>c__DisplayClass3_0.b__0(IComponentContext context, IEnumerable`1 parameters) + at Autofac.Core.Activators.Delegate.DelegateActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters) + at Autofac.Core.Activators.Delegate.DelegateActivator.b__2_0(ResolveRequestContext ctxt, Action`1 next) + at Autofac.Core.Resolving.Middleware.DelegateMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + --- End of inner exception stack trace --- + at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Pipeline.ResolvePipeline.Invoke(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.RegistrationPipelineInvokeMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.ScopeSelectionMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Pipeline.ResolvePipeline.Invoke(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request) + at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request) + at Autofac.Core.Resolving.ResolveOperation.Execute(ResolveRequest request) + at Autofac.Core.Lifetime.LifetimeScope.ResolveComponent(ResolveRequest request) + at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance) + at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters) + at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType, IEnumerable`1 parameters) + at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType) + at Autofac.Extensions.DependencyInjection.AutofacServiceProvider.GetRequiredService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork, String connectionStringName, String connectionString) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.GetDbContextAsync() + at Volo.Abp.Domain.Repositories.EntityFrameworkCore.EfCoreRepository`2.GetDbSetAsync() + at Volo.Abp.BackgroundJobs.EntityFrameworkCore.EfCoreBackgroundJobRepository.GetWaitingListQueryAsync(Int32 maxResultCount) + at Volo.Abp.BackgroundJobs.EntityFrameworkCore.EfCoreBackgroundJobRepository.GetWaitingListAsync(Int32 maxResultCount, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Volo.Abp.BackgroundJobs.BackgroundJobStore.GetWaitingJobsAsync(Int32 maxResultCount) + at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext) + at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync() +2021-09-03 15:21:44.970 +08:00 [ERR] ---------- Exception Data ---------- +ActivatorChain = Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext, Volo.Abp.BackgroundJobs.EntityFrameworkCore, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]] + +2021-09-03 15:21:48.897 +08:00 [DBG] Server szqh003802a:21800:e078871c heartbeat successfully sent +2021-09-03 15:21:50.338 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext, Volo.Abp.BackgroundJobs.EntityFrameworkCore, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]. +Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext, Volo.Abp.BackgroundJobs.EntityFrameworkCore, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]. + ---> System.ArgumentException: Invalid value 'true,Connect Timeout=60' for 'AllowLoadLocalInfile' connection string option. + ---> System.FormatException: String 'true,Connect Timeout=60' was not recognized as a valid Boolean. + at System.Boolean.Parse(ReadOnlySpan`1 value) + at System.Boolean.Parse(String value) + at System.Convert.ToBoolean(String value, IFormatProvider provider) + at System.String.System.IConvertible.ToBoolean(IFormatProvider provider) + at System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider) + at MySqlConnector.MySqlConnectionStringValueOption`1.ChangeType(Object objectValue) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 837 + --- End of inner exception stack trace --- + at MySqlConnector.MySqlConnectionStringValueOption`1.ChangeType(Object objectValue) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 841 + at MySqlConnector.MySqlConnectionStringValueOption`1.SetObject(MySqlConnectionStringBuilder builder, Object value) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 807 + at MySqlConnector.MySqlConnectionStringBuilder.set_Item(String key, Object value) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 402 + at System.Data.Common.DbConnectionStringBuilder.set_ConnectionString(String value) + at MySqlConnector.MySqlConnectionStringBuilder..ctor(String connectionString) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 19 + at Microsoft.EntityFrameworkCore.ServerVersion.AutoDetect(String connectionString) + at Volo.Abp.EntityFrameworkCore.AbpDbContextConfigurationContextMySQLExtensions.UseMySQL(AbpDbContextConfigurationContext context, Action`1 mySQLOptionsAction) + at Volo.Abp.EntityFrameworkCore.AbpDbContextOptionsMySQLExtensions.<>c__DisplayClass0_0.b__0(AbpDbContextConfigurationContext context) + at Volo.Abp.EntityFrameworkCore.DependencyInjection.DbContextOptionsFactory.Configure[TDbContext](AbpDbContextOptions options, AbpDbContextConfigurationContext`1 context) + at Volo.Abp.EntityFrameworkCore.DependencyInjection.DbContextOptionsFactory.Create[TDbContext](IServiceProvider serviceProvider) + at Autofac.Extensions.DependencyInjection.AutofacRegistration.<>c__DisplayClass3_0.b__0(IComponentContext context, IEnumerable`1 parameters) + at Autofac.Core.Activators.Delegate.DelegateActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters) + at Autofac.Core.Activators.Delegate.DelegateActivator.b__2_0(ResolveRequestContext ctxt, Action`1 next) + at Autofac.Core.Resolving.Middleware.DelegateMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + --- End of inner exception stack trace --- + at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Pipeline.ResolvePipeline.Invoke(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.RegistrationPipelineInvokeMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.ScopeSelectionMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Pipeline.ResolvePipeline.Invoke(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request) + at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request) + at Autofac.Core.Resolving.ResolveOperation.Execute(ResolveRequest request) + at Autofac.Core.Lifetime.LifetimeScope.ResolveComponent(ResolveRequest request) + at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance) + at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters) + at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType, IEnumerable`1 parameters) + at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType) + at Autofac.Extensions.DependencyInjection.AutofacServiceProvider.GetRequiredService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork, String connectionStringName, String connectionString) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.GetDbContextAsync() + at Volo.Abp.Domain.Repositories.EntityFrameworkCore.EfCoreRepository`2.GetDbSetAsync() + at Volo.Abp.BackgroundJobs.EntityFrameworkCore.EfCoreBackgroundJobRepository.GetWaitingListQueryAsync(Int32 maxResultCount) + at Volo.Abp.BackgroundJobs.EntityFrameworkCore.EfCoreBackgroundJobRepository.GetWaitingListAsync(Int32 maxResultCount, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Volo.Abp.BackgroundJobs.BackgroundJobStore.GetWaitingJobsAsync(Int32 maxResultCount) + at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext) + at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync() +2021-09-03 15:21:50.338 +08:00 [ERR] ---------- Exception Data ---------- +ActivatorChain = Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext, Volo.Abp.BackgroundJobs.EntityFrameworkCore, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]] + +2021-09-03 15:21:54.485 +08:00 [DBG] Execution Worker is in the Faulted state now due to an exception, execution will be retried no more than in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:21:54.485 +08:00 [DBG] Execution loop Worker:6fa82ffa caught an exception and will be retried in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:21:54.485 +08:00 [DBG] Execution loop Worker:6de3173c caught an exception and will be retried in 00:00:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:21:54.486 +08:00 [DBG] Execution loop Worker:6fa82ffa will be retried in 00:00:01... +2021-09-03 15:21:54.486 +08:00 [DBG] Execution loop Worker:6de3173c will be retried in 00:00:04... +2021-09-03 15:21:54.494 +08:00 [DBG] Execution loop Worker:683ec808 caught an exception and will be retried in 00:00:09 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:21:54.494 +08:00 [DBG] Execution loop Worker:683ec808 will be retried in 00:00:09... +2021-09-03 15:21:54.519 +08:00 [DBG] Execution loop Worker:426ca79d caught an exception and will be retried in 00:00:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:21:54.519 +08:00 [DBG] Execution loop Worker:426ca79d will be retried in 00:00:16... +2021-09-03 15:21:54.543 +08:00 [DBG] Execution loop Worker:fc76e115 caught an exception and will be retried in 00:00:25 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:21:54.543 +08:00 [DBG] Execution loop Worker:fc76e115 will be retried in 00:00:25... +2021-09-03 15:21:54.570 +08:00 [DBG] Execution loop Worker:8288d166 caught an exception and will be retried in 00:00:36 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:21:54.571 +08:00 [DBG] Execution loop Worker:8288d166 will be retried in 00:00:36... +2021-09-03 15:21:54.575 +08:00 [DBG] Execution loop Worker:23459807 caught an exception and will be retried in 00:00:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:21:54.576 +08:00 [DBG] Execution loop Worker:23459807 will be retried in 00:00:49... +2021-09-03 15:21:54.622 +08:00 [DBG] Execution loop Worker:6d41cd5b caught an exception and will be retried in 00:01:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:21:54.623 +08:00 [DBG] Execution loop Worker:108cfea7 caught an exception and will be retried in 00:01:21 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:21:54.623 +08:00 [DBG] Execution loop Worker:108cfea7 will be retried in 00:01:21... +2021-09-03 15:21:54.623 +08:00 [DBG] Execution loop Worker:6d41cd5b will be retried in 00:01:04... +2021-09-03 15:21:54.626 +08:00 [DBG] Execution loop Worker:d098b382 caught an exception and will be retried in 00:01:40 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:21:54.626 +08:00 [DBG] Execution loop Worker:d098b382 will be retried in 00:01:40... +2021-09-03 15:21:54.627 +08:00 [DBG] Execution loop Worker:b443f973 caught an exception and will be retried in 00:02:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:21:54.627 +08:00 [DBG] Execution loop Worker:b443f973 will be retried in 00:02:01... +2021-09-03 15:21:54.629 +08:00 [DBG] Execution loop Worker:8e5ae3a5 caught an exception and will be retried in 00:02:24 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:21:54.629 +08:00 [DBG] Execution loop Worker:8e5ae3a5 will be retried in 00:02:24... +2021-09-03 15:21:54.635 +08:00 [DBG] Execution loop Worker:b813ca56 caught an exception and will be retried in 00:02:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:21:54.636 +08:00 [DBG] Execution loop Worker:b813ca56 will be retried in 00:02:49... +2021-09-03 15:21:54.636 +08:00 [DBG] Execution loop Worker:2dd9278d caught an exception and will be retried in 00:03:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:21:54.637 +08:00 [DBG] Execution loop Worker:2dd9278d will be retried in 00:03:16... +2021-09-03 15:21:54.637 +08:00 [DBG] Execution loop Worker:5281f72e caught an exception and will be retried in 00:03:45 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:21:54.637 +08:00 [DBG] Execution loop Worker:5281f72e will be retried in 00:03:45... +2021-09-03 15:21:54.638 +08:00 [DBG] Execution loop Worker:414437ee caught an exception and will be retried in 00:04:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:21:54.638 +08:00 [DBG] Execution loop Worker:414437ee will be retried in 00:04:16... +2021-09-03 15:21:54.643 +08:00 [DBG] Execution loop Worker:370f604c caught an exception and will be retried in 00:04:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:21:54.643 +08:00 [DBG] Execution loop Worker:370f604c will be retried in 00:04:49... +2021-09-03 15:21:54.684 +08:00 [DBG] Execution loop Worker:ee898985 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:21:54.684 +08:00 [DBG] Execution loop Worker:ee898985 will be retried in 00:05:00... +2021-09-03 15:21:54.685 +08:00 [DBG] Execution loop Worker:41da934f caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:21:54.685 +08:00 [DBG] Execution loop Worker:41da934f will be retried in 00:05:00... +2021-09-03 15:21:54.685 +08:00 [DBG] Execution loop Worker:bfcebf13 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:21:54.685 +08:00 [DBG] Execution loop Worker:bfcebf13 will be retried in 00:05:00... +2021-09-03 15:21:54.694 +08:00 [ERR] MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> System.IO.IOException: Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + ---> System.Net.Sockets.SocketException (10060): 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + --- End of inner exception stack trace --- + at System.Net.Sockets.NetworkStream.Read(Span`1 buffer) + at System.Net.Security.SyncReadWriteAdapter.ReadAsync(Memory`1 buffer) + at System.Net.Security.SslStream.ReadAsyncInternal[TIOAdapter](TIOAdapter adapter, Memory`1 buffer) + at System.Net.Security.SslStream.Read(Byte[] buffer, Int32 offset, Int32 count) + at System.IO.Stream.Read(Span`1 buffer) + at MySqlConnector.Utilities.Utility.Read(Stream stream, Memory`1 buffer) in /_/src/MySqlConnector/Utilities/Utility.cs:line 556 + at MySqlConnector.Protocol.Serialization.StreamByteHandler.g__DoReadBytesSync|6_0(Memory`1 buffer) in /_/src/MySqlConnector/Protocol/Serialization/StreamByteHandler.cs:line 37 + at MySqlConnector.Protocol.Serialization.BufferedByteReader.ReadBytesAsync(IByteHandler byteHandler, ArraySegment`1 buffer, Int32 totalBytesToRead, IOBehavior ioBehavior) in /_/src/MySqlConnector/Protocol/Serialization/BufferedByteReader.cs:line 36 + at MySqlConnector.Protocol.Serialization.ProtocolUtility.g__AddContinuation|1_0(ValueTask`1 headerBytes, BufferedByteReader bufferedByteReader, IByteHandler byteHandler, Func`1 getNextSequenceNumber, ProtocolErrorBehavior protocolErrorBehavior, IOBehavior ioBehavior) in /_/src/MySqlConnector/Protocol/Serialization/ProtocolUtility.cs:line 412 + at MySqlConnector.Protocol.Serialization.ProtocolUtility.g__AddContinuation|5_0(ValueTask`1 readPacketTask, BufferedByteReader bufferedByteReader, IByteHandler byteHandler, Func`1 getNextSequenceNumber, ArraySegmentHolder`1 previousPayloads, ProtocolErrorBehavior protocolErrorBehavior, IOBehavior ioBehavior) in /_/src/MySqlConnector/Protocol/Serialization/ProtocolUtility.cs:line 479 + at MySqlConnector.Core.ServerSession.ReceiveReplyAsyncAwaited(ValueTask`1 task) in /_/src/MySqlConnector/Core/ServerSession.cs:line 864 + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 135 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.ExpirationManager.<>c__DisplayClass9_1.b__0(MySqlConnection connection) +2021-09-03 15:21:54.694 +08:00 [DBG] Removing outdated records from table 'List'... +2021-09-03 15:21:54.695 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-09-03 15:21:54.703 +08:00 [DBG] removed records count=0 +2021-09-03 15:21:54.704 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-09-03 15:21:54.705 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-09-03 15:21:55.583 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext, Volo.Abp.BackgroundJobs.EntityFrameworkCore, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]. +Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext, Volo.Abp.BackgroundJobs.EntityFrameworkCore, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]. + ---> System.ArgumentException: Invalid value 'true,Connect Timeout=60' for 'AllowLoadLocalInfile' connection string option. + ---> System.FormatException: String 'true,Connect Timeout=60' was not recognized as a valid Boolean. + at System.Boolean.Parse(ReadOnlySpan`1 value) + at System.Boolean.Parse(String value) + at System.Convert.ToBoolean(String value, IFormatProvider provider) + at System.String.System.IConvertible.ToBoolean(IFormatProvider provider) + at System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider) + at MySqlConnector.MySqlConnectionStringValueOption`1.ChangeType(Object objectValue) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 837 + --- End of inner exception stack trace --- + at MySqlConnector.MySqlConnectionStringValueOption`1.ChangeType(Object objectValue) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 841 + at MySqlConnector.MySqlConnectionStringValueOption`1.SetObject(MySqlConnectionStringBuilder builder, Object value) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 807 + at MySqlConnector.MySqlConnectionStringBuilder.set_Item(String key, Object value) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 402 + at System.Data.Common.DbConnectionStringBuilder.set_ConnectionString(String value) + at MySqlConnector.MySqlConnectionStringBuilder..ctor(String connectionString) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 19 + at Microsoft.EntityFrameworkCore.ServerVersion.AutoDetect(String connectionString) + at Volo.Abp.EntityFrameworkCore.AbpDbContextConfigurationContextMySQLExtensions.UseMySQL(AbpDbContextConfigurationContext context, Action`1 mySQLOptionsAction) + at Volo.Abp.EntityFrameworkCore.AbpDbContextOptionsMySQLExtensions.<>c__DisplayClass0_0.b__0(AbpDbContextConfigurationContext context) + at Volo.Abp.EntityFrameworkCore.DependencyInjection.DbContextOptionsFactory.Configure[TDbContext](AbpDbContextOptions options, AbpDbContextConfigurationContext`1 context) + at Volo.Abp.EntityFrameworkCore.DependencyInjection.DbContextOptionsFactory.Create[TDbContext](IServiceProvider serviceProvider) + at Autofac.Extensions.DependencyInjection.AutofacRegistration.<>c__DisplayClass3_0.b__0(IComponentContext context, IEnumerable`1 parameters) + at Autofac.Core.Activators.Delegate.DelegateActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters) + at Autofac.Core.Activators.Delegate.DelegateActivator.b__2_0(ResolveRequestContext ctxt, Action`1 next) + at Autofac.Core.Resolving.Middleware.DelegateMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + --- End of inner exception stack trace --- + at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Pipeline.ResolvePipeline.Invoke(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.RegistrationPipelineInvokeMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.ScopeSelectionMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Pipeline.ResolvePipeline.Invoke(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request) + at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request) + at Autofac.Core.Resolving.ResolveOperation.Execute(ResolveRequest request) + at Autofac.Core.Lifetime.LifetimeScope.ResolveComponent(ResolveRequest request) + at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance) + at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters) + at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType, IEnumerable`1 parameters) + at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType) + at Autofac.Extensions.DependencyInjection.AutofacServiceProvider.GetRequiredService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork, String connectionStringName, String connectionString) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.GetDbContextAsync() + at Volo.Abp.Domain.Repositories.EntityFrameworkCore.EfCoreRepository`2.GetDbSetAsync() + at Volo.Abp.BackgroundJobs.EntityFrameworkCore.EfCoreBackgroundJobRepository.GetWaitingListQueryAsync(Int32 maxResultCount) + at Volo.Abp.BackgroundJobs.EntityFrameworkCore.EfCoreBackgroundJobRepository.GetWaitingListAsync(Int32 maxResultCount, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Volo.Abp.BackgroundJobs.BackgroundJobStore.GetWaitingJobsAsync(Int32 maxResultCount) + at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext) + at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync() +2021-09-03 15:21:55.583 +08:00 [ERR] ---------- Exception Data ---------- +ActivatorChain = Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext, Volo.Abp.BackgroundJobs.EntityFrameworkCore, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]] + +2021-09-03 15:22:00.818 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext, Volo.Abp.BackgroundJobs.EntityFrameworkCore, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]. +Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext, Volo.Abp.BackgroundJobs.EntityFrameworkCore, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]. + ---> System.ArgumentException: Invalid value 'true,Connect Timeout=60' for 'AllowLoadLocalInfile' connection string option. + ---> System.FormatException: String 'true,Connect Timeout=60' was not recognized as a valid Boolean. + at System.Boolean.Parse(ReadOnlySpan`1 value) + at System.Boolean.Parse(String value) + at System.Convert.ToBoolean(String value, IFormatProvider provider) + at System.String.System.IConvertible.ToBoolean(IFormatProvider provider) + at System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider) + at MySqlConnector.MySqlConnectionStringValueOption`1.ChangeType(Object objectValue) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 837 + --- End of inner exception stack trace --- + at MySqlConnector.MySqlConnectionStringValueOption`1.ChangeType(Object objectValue) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 841 + at MySqlConnector.MySqlConnectionStringValueOption`1.SetObject(MySqlConnectionStringBuilder builder, Object value) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 807 + at MySqlConnector.MySqlConnectionStringBuilder.set_Item(String key, Object value) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 402 + at System.Data.Common.DbConnectionStringBuilder.set_ConnectionString(String value) + at MySqlConnector.MySqlConnectionStringBuilder..ctor(String connectionString) in /_/src/MySqlConnector/MySqlConnectionStringBuilder.cs:line 19 + at Microsoft.EntityFrameworkCore.ServerVersion.AutoDetect(String connectionString) + at Volo.Abp.EntityFrameworkCore.AbpDbContextConfigurationContextMySQLExtensions.UseMySQL(AbpDbContextConfigurationContext context, Action`1 mySQLOptionsAction) + at Volo.Abp.EntityFrameworkCore.AbpDbContextOptionsMySQLExtensions.<>c__DisplayClass0_0.b__0(AbpDbContextConfigurationContext context) + at Volo.Abp.EntityFrameworkCore.DependencyInjection.DbContextOptionsFactory.Configure[TDbContext](AbpDbContextOptions options, AbpDbContextConfigurationContext`1 context) + at Volo.Abp.EntityFrameworkCore.DependencyInjection.DbContextOptionsFactory.Create[TDbContext](IServiceProvider serviceProvider) + at Autofac.Extensions.DependencyInjection.AutofacRegistration.<>c__DisplayClass3_0.b__0(IComponentContext context, IEnumerable`1 parameters) + at Autofac.Core.Activators.Delegate.DelegateActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters) + at Autofac.Core.Activators.Delegate.DelegateActivator.b__2_0(ResolveRequestContext ctxt, Action`1 next) + at Autofac.Core.Resolving.Middleware.DelegateMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + --- End of inner exception stack trace --- + at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Pipeline.ResolvePipeline.Invoke(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.RegistrationPipelineInvokeMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.ScopeSelectionMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Pipeline.ResolvePipeline.Invoke(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request) + at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request) + at Autofac.Core.Resolving.ResolveOperation.Execute(ResolveRequest request) + at Autofac.Core.Lifetime.LifetimeScope.ResolveComponent(ResolveRequest request) + at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance) + at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters) + at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType, IEnumerable`1 parameters) + at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType) + at Autofac.Extensions.DependencyInjection.AutofacServiceProvider.GetRequiredService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork, String connectionStringName, String connectionString) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.GetDbContextAsync() + at Volo.Abp.Domain.Repositories.EntityFrameworkCore.EfCoreRepository`2.GetDbSetAsync() + at Volo.Abp.BackgroundJobs.EntityFrameworkCore.EfCoreBackgroundJobRepository.GetWaitingListQueryAsync(Int32 maxResultCount) + at Volo.Abp.BackgroundJobs.EntityFrameworkCore.EfCoreBackgroundJobRepository.GetWaitingListAsync(Int32 maxResultCount, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Volo.Abp.BackgroundJobs.BackgroundJobStore.GetWaitingJobsAsync(Int32 maxResultCount) + at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext) + at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync() +2021-09-03 15:22:00.818 +08:00 [ERR] ---------- Exception Data ---------- +ActivatorChain = Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext, Volo.Abp.BackgroundJobs.EntityFrameworkCore, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]] + +2021-09-03 15:23:21.167 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-09-03 15:23:25.854 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-09-03 15:23:25.971 +08:00 [INF] Loaded ABP modules: +2021-09-03 15:23:25.971 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-09-03 15:23:25.971 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-09-03 15:23:25.971 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-09-03 15:23:25.971 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-09-03 15:23:25.971 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-09-03 15:23:25.971 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-09-03 15:23:25.971 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-09-03 15:23:25.971 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-09-03 15:23:25.971 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-09-03 15:23:25.971 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-09-03 15:23:25.971 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-09-03 15:23:25.971 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-09-03 15:23:25.971 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-09-03 15:23:25.971 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-09-03 15:23:25.971 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-09-03 15:23:25.971 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-09-03 15:23:25.971 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-09-03 15:23:25.971 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-09-03 15:23:25.971 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-09-03 15:23:25.971 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-09-03 15:23:25.971 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-09-03 15:23:25.971 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-09-03 15:23:25.971 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-09-03 15:23:25.971 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-09-03 15:23:25.971 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-09-03 15:23:25.971 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-09-03 15:23:25.971 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-09-03 15:23:25.971 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-09-03 15:23:25.971 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-09-03 15:23:25.971 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-09-03 15:23:25.971 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-09-03 15:23:25.971 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-09-03 15:23:25.971 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-09-03 15:23:25.972 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-09-03 15:23:25.972 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-09-03 15:23:25.972 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-09-03 15:23:25.972 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-09-03 15:23:25.972 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule +2021-09-03 15:23:25.972 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-09-03 15:23:25.972 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-09-03 15:23:25.972 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-09-03 15:23:25.972 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-09-03 15:23:25.972 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-09-03 15:23:25.972 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-09-03 15:23:25.972 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-09-03 15:23:25.972 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-09-03 15:23:25.972 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-09-03 15:23:26.071 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-09-03 15:23:26.074 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-09-03 15:23:26.218 +08:00 [INF] DB tables already exist. Exit install +2021-09-03 15:23:26.242 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-09-03 15:23:26.243 +08:00 [INF] Using the following options for SQL Server job storage: +2021-09-03 15:23:26.243 +08:00 [INF] Queue poll interval: 00:00:15. +2021-09-03 15:23:26.243 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-09-03 15:23:26.293 +08:00 [DBG] Execution loop BackgroundServerProcess:e1ee671f has started in 5.664 ms +2021-09-03 15:23:26.444 +08:00 [INF] Server szqh003802a:36232:ac1a9fef successfully announced in 115.8931 ms +2021-09-03 15:23:26.458 +08:00 [DBG] Execution loop ServerHeartbeatProcess:c470fc0d has started in 13.2415 ms +2021-09-03 15:23:26.458 +08:00 [INF] Server szqh003802a:36232:ac1a9fef is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-09-03 15:23:26.460 +08:00 [DBG] Execution loop ServerWatchdog:3746290a has started in 2.5338 ms +2021-09-03 15:23:26.462 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:bd193af4 has started in 4.0172 ms +2021-09-03 15:23:26.465 +08:00 [DBG] Execution loop ExpirationManager:88a9778d has started in 3.492 ms +2021-09-03 15:23:26.467 +08:00 [DBG] Execution loop CountersAggregator:76593dc1 has started in 4.1699 ms +2021-09-03 15:23:26.469 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-09-03 15:23:26.469 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 15:23:26.471 +08:00 [DBG] Execution loop Worker:9674f3a1 has started in 6.2248 ms +2021-09-03 15:23:26.471 +08:00 [DBG] Execution loop Worker:4a7bb45f has started in 6.2458 ms +2021-09-03 15:23:26.472 +08:00 [DBG] Execution loop Worker:6caa6503 has started in 7.0917 ms +2021-09-03 15:23:26.475 +08:00 [DBG] Execution loop Worker:eabe82b6 has started in 9.7556 ms +2021-09-03 15:23:26.477 +08:00 [DBG] Execution loop Worker:886a97a5 has started in 12.0721 ms +2021-09-03 15:23:26.480 +08:00 [DBG] Execution loop Worker:58182a1c has started in 15.2061 ms +2021-09-03 15:23:26.482 +08:00 [DBG] Execution loop Worker:8761c3e9 has started in 16.8803 ms +2021-09-03 15:23:26.485 +08:00 [DBG] Execution loop Worker:b273f607 has started in 20.2386 ms +2021-09-03 15:23:26.487 +08:00 [DBG] Execution loop Worker:e6fbd776 has started in 21.9887 ms +2021-09-03 15:23:26.490 +08:00 [DBG] Execution loop Worker:6941e930 has started in 25.1693 ms +2021-09-03 15:23:26.491 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-03 15:23:26.494 +08:00 [DBG] Execution loop Worker:6855b4a6 has started in 29.1044 ms +2021-09-03 15:23:26.496 +08:00 [INF] 1 servers were removed due to timeout +2021-09-03 15:23:26.500 +08:00 [DBG] Execution loop Worker:45683f96 has started in 34.9852 ms +2021-09-03 15:23:26.507 +08:00 [DBG] Execution loop Worker:40b88e10 has started in 41.7994 ms +2021-09-03 15:23:26.516 +08:00 [DBG] Execution loop Worker:4a4d96a3 has started in 51.4624 ms +2021-09-03 15:23:26.522 +08:00 [DBG] Execution loop Worker:75caaf09 has started in 57.2975 ms +2021-09-03 15:23:26.531 +08:00 [DBG] Execution loop Worker:0c05f2a6 has started in 65.8196 ms +2021-09-03 15:23:26.533 +08:00 [DBG] Execution loop Worker:bc568f1e has started in 68.6174 ms +2021-09-03 15:23:26.535 +08:00 [DBG] removed records count=0 +2021-09-03 15:23:26.538 +08:00 [DBG] Execution loop Worker:2b89454d has started in 72.2837 ms +2021-09-03 15:23:26.538 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-09-03 15:23:26.541 +08:00 [DBG] Execution loop Worker:9516e69b has started in 76.1236 ms +2021-09-03 15:23:26.545 +08:00 [DBG] Execution loop Worker:b05dfd1a has started in 80.0263 ms +2021-09-03 15:23:26.547 +08:00 [DBG] Execution loop DelayedJobScheduler:0d1643c4 has started in 6.0195 ms +2021-09-03 15:23:26.547 +08:00 [INF] Server szqh003802a:36232:ac1a9fef all the dispatchers started +2021-09-03 15:23:26.551 +08:00 [DBG] Execution loop RecurringJobScheduler:7269677b has started in 6.5533 ms +2021-09-03 15:23:26.567 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-09-03 15:23:41.691 +08:00 [INF] Initialized all ABP modules. +2021-09-03 15:23:41.753 +08:00 [INF] Now listening on: http://localhost:44315 +2021-09-03 15:23:41.754 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-09-03 15:23:41.754 +08:00 [INF] Hosting environment: Development +2021-09-03 15:23:41.754 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-09-03 15:23:41.904 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-09-03 15:23:42.888 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-03 15:23:42.947 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-09-03 15:23:42.981 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-09-03 15:23:42.987 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 36.6143ms +2021-09-03 15:23:42.988 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-03 15:23:43.007 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 1103.7186ms +2021-09-03 15:23:43.022 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-09-03 15:23:43.079 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 56.7494ms +2021-09-03 15:23:43.243 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-09-03 15:23:43.592 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 348.6391ms +2021-09-03 15:23:45.309 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:23:45.315 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:23:45.321 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 11.8308ms +2021-09-03 15:23:45.324 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:23:45.325 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:23:45.379 +08:00 [INF] Successfully validated the token. +2021-09-03 15:23:45.385 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:23:45.400 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:23:45.448 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:23:45.448 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 48.6244ms +2021-09-03 15:23:45.448 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:23:45.870 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:23:45.870 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:23:45.875 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 551.4716ms +2021-09-03 15:23:56.516 +08:00 [DBG] Server szqh003802a:36232:ac1a9fef heartbeat successfully sent +2021-09-03 15:24:00.328 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:24:00.347 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:24:00.347 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 19.9842ms +2021-09-03 15:24:00.369 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:24:00.389 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:24:00.570 +08:00 [INF] Successfully validated the token. +2021-09-03 15:24:00.736 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:24:00.756 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:24:00.852 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:24:00.869 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 113.0744ms +2021-09-03 15:24:00.870 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:24:01.994 +08:00 [DBG] Execution Worker is in the Faulted state now due to an exception, execution will be retried no more than in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:24:01.994 +08:00 [DBG] Execution loop Worker:886a97a5 caught an exception and will be retried in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:24:01.994 +08:00 [DBG] Execution loop Worker:b273f607 caught an exception and will be retried in 00:00:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:24:01.994 +08:00 [DBG] Execution loop Worker:6941e930 caught an exception and will be retried in 00:00:09 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:24:01.996 +08:00 [DBG] Execution loop Worker:45683f96 caught an exception and will be retried in 00:00:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:24:01.996 +08:00 [DBG] Execution loop Worker:b273f607 will be retried in 00:00:04... +2021-09-03 15:24:01.996 +08:00 [DBG] Execution loop Worker:886a97a5 will be retried in 00:00:01... +2021-09-03 15:24:01.996 +08:00 [DBG] Execution loop Worker:6941e930 will be retried in 00:00:09... +2021-09-03 15:24:01.996 +08:00 [DBG] Execution loop Worker:45683f96 will be retried in 00:00:16... +2021-09-03 15:24:02.028 +08:00 [DBG] Execution loop Worker:4a4d96a3 caught an exception and will be retried in 00:00:25 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:24:02.028 +08:00 [DBG] Execution loop Worker:4a4d96a3 will be retried in 00:00:25... +2021-09-03 15:24:02.030 +08:00 [DBG] Execution loop Worker:58182a1c caught an exception and will be retried in 00:00:36 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:24:02.030 +08:00 [DBG] Execution loop Worker:58182a1c will be retried in 00:00:36... +2021-09-03 15:24:02.032 +08:00 [DBG] Execution loop Worker:9516e69b caught an exception and will be retried in 00:00:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:24:02.032 +08:00 [DBG] Execution loop Worker:bc568f1e caught an exception and will be retried in 00:01:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:24:02.033 +08:00 [DBG] Execution loop Worker:9516e69b will be retried in 00:00:49... +2021-09-03 15:24:02.033 +08:00 [DBG] Execution loop Worker:bc568f1e will be retried in 00:01:04... +2021-09-03 15:24:02.037 +08:00 [DBG] Execution loop Worker:40b88e10 caught an exception and will be retried in 00:01:21 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:24:02.037 +08:00 [DBG] Execution loop Worker:40b88e10 will be retried in 00:01:21... +2021-09-03 15:24:02.039 +08:00 [DBG] Execution loop Worker:e6fbd776 caught an exception and will be retried in 00:01:40 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:24:02.039 +08:00 [DBG] Execution loop Worker:e6fbd776 will be retried in 00:01:40... +2021-09-03 15:24:02.041 +08:00 [DBG] Execution loop Worker:75caaf09 caught an exception and will be retried in 00:02:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:24:02.041 +08:00 [DBG] Execution loop Worker:75caaf09 will be retried in 00:02:01... +2021-09-03 15:24:02.042 +08:00 [DBG] Execution loop Worker:2b89454d caught an exception and will be retried in 00:02:24 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:24:02.043 +08:00 [DBG] Execution loop Worker:2b89454d will be retried in 00:02:24... +2021-09-03 15:24:02.043 +08:00 [DBG] Execution loop Worker:9674f3a1 caught an exception and will be retried in 00:02:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:24:02.043 +08:00 [DBG] Execution loop Worker:9674f3a1 will be retried in 00:02:49... +2021-09-03 15:24:02.044 +08:00 [DBG] Execution loop Worker:8761c3e9 caught an exception and will be retried in 00:03:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:24:02.044 +08:00 [DBG] Execution loop Worker:8761c3e9 will be retried in 00:03:16... +2021-09-03 15:24:02.045 +08:00 [DBG] Execution loop Worker:6855b4a6 caught an exception and will be retried in 00:03:45 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:24:02.045 +08:00 [DBG] Execution loop Worker:eabe82b6 caught an exception and will be retried in 00:04:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:24:02.045 +08:00 [DBG] Execution loop Worker:6855b4a6 will be retried in 00:03:45... +2021-09-03 15:24:02.045 +08:00 [DBG] Execution loop Worker:eabe82b6 will be retried in 00:04:16... +2021-09-03 15:24:02.046 +08:00 [DBG] Execution loop Worker:4a7bb45f caught an exception and will be retried in 00:04:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:24:02.046 +08:00 [DBG] Execution loop Worker:6caa6503 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:24:02.046 +08:00 [DBG] Execution loop Worker:4a7bb45f will be retried in 00:04:49... +2021-09-03 15:24:02.046 +08:00 [DBG] Execution loop Worker:6caa6503 will be retried in 00:05:00... +2021-09-03 15:24:02.046 +08:00 [DBG] Execution loop Worker:0c05f2a6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:24:02.047 +08:00 [DBG] Execution loop Worker:0c05f2a6 will be retried in 00:05:00... +2021-09-03 15:24:02.048 +08:00 [DBG] Execution loop Worker:b05dfd1a caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:24:02.048 +08:00 [DBG] Execution loop Worker:b05dfd1a will be retried in 00:05:00... +2021-09-03 15:24:02.090 +08:00 [DBG] Execution RecurringJobScheduler is in the Faulted state now due to an exception, execution will be retried no more than in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:24:02.090 +08:00 [DBG] Execution loop RecurringJobScheduler:7269677b caught an exception and will be retried in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:24:02.090 +08:00 [DBG] Execution loop RecurringJobScheduler:7269677b will be retried in 00:00:01... +2021-09-03 15:24:02.093 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:24:02.093 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:24:02.093 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 1724.8358ms +2021-09-03 15:24:02.176 +08:00 [ERR] MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.ExpirationManager.<>c__DisplayClass9_1.b__0(MySqlConnection connection) +2021-09-03 15:24:02.177 +08:00 [DBG] Removing outdated records from table 'List'... +2021-09-03 15:24:02.178 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-09-03 15:24:02.192 +08:00 [DBG] removed records count=0 +2021-09-03 15:24:02.193 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-09-03 15:24:02.194 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-09-03 15:24:02.204 +08:00 [DBG] removed records count=0 +2021-09-03 15:24:02.205 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-09-03 15:24:02.206 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-09-03 15:24:26.534 +08:00 [DBG] Server szqh003802a:36232:ac1a9fef heartbeat successfully sent +2021-09-03 15:24:32.458 +08:00 [ERR] MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.ExpirationManager.<>c__DisplayClass9_1.b__0(MySqlConnection connection) +2021-09-03 15:24:33.319 +08:00 [ERR] Execution Worker is in the Failed state now due to an exception, execution will be retried no more than in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:24:33.319 +08:00 [DBG] Execution loop Worker:886a97a5 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:24:33.319 +08:00 [DBG] Execution loop Worker:886a97a5 will be retried in 00:05:00... +2021-09-03 15:24:33.613 +08:00 [ERR] Execution RecurringJobScheduler is in the Failed state now due to an exception, execution will be retried no more than in 00:00:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:24:33.613 +08:00 [DBG] Execution loop RecurringJobScheduler:7269677b caught an exception and will be retried in 00:00:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:24:33.614 +08:00 [DBG] Execution loop RecurringJobScheduler:7269677b will be retried in 00:00:04... +2021-09-03 15:24:36.295 +08:00 [DBG] Execution loop Worker:b273f607 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:24:36.295 +08:00 [DBG] Execution loop Worker:b273f607 will be retried in 00:05:00... +2021-09-03 15:24:41.300 +08:00 [DBG] Execution loop Worker:6941e930 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:24:41.301 +08:00 [DBG] Execution loop Worker:6941e930 will be retried in 00:05:00... +2021-09-03 15:24:44.030 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire?access_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJDb21wYW55TmFtZVByb2plY3ROYW1lIiwiaXNzIjoiQ29tcGFueU5hbWVQcm9qZWN0TmFtZSIsInN1YiI6IjM5ZmU1MmM2LTI3YTAtZDU0Yy0wYjQ3LTQxMzNmMDQ0YzhmYSIsImdpdmVuX25hbWUiOiJhZG1pbiIsIm5hbWUiOiJhZG1pbiIsImVtYWlsIjoiYWRtaW5AYWJwLmlvIiwidGVuYW50aWQiOiIiLCJyb2xlIjoiYWRtaW4iLCJuYmYiOjE2MzA2NTI3NjgsImV4cCI6MTYzMDczOTE2OCwiaWF0IjoxNjMwNjUyNzY4fQ.GgqFhLkP5lcdoy4_D8syWCZ-hr2nEhus83QDtGdsRIQ - - +2021-09-03 15:24:44.041 +08:00 [INF] Successfully validated the token. +2021-09-03 15:24:44.259 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire?access_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJDb21wYW55TmFtZVByb2plY3ROYW1lIiwiaXNzIjoiQ29tcGFueU5hbWVQcm9qZWN0TmFtZSIsInN1YiI6IjM5ZmU1MmM2LTI3YTAtZDU0Yy0wYjQ3LTQxMzNmMDQ0YzhmYSIsImdpdmVuX25hbWUiOiJhZG1pbiIsIm5hbWUiOiJhZG1pbiIsImVtYWlsIjoiYWRtaW5AYWJwLmlvIiwidGVuYW50aWQiOiIiLCJyb2xlIjoiYWRtaW4iLCJuYmYiOjE2MzA2NTI3NjgsImV4cCI6MTYzMDczOTE2OCwiaWF0IjoxNjMwNjUyNzY4fQ.GgqFhLkP5lcdoy4_D8syWCZ-hr2nEhus83QDtGdsRIQ - - - 200 - text/html 228.8948ms +2021-09-03 15:24:44.269 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - +2021-09-03 15:24:44.270 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - +2021-09-03 15:24:44.272 +08:00 [INF] Successfully validated the token. +2021-09-03 15:24:44.284 +08:00 [INF] Successfully validated the token. +2021-09-03 15:24:44.299 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - - 200 - text/css 30.7420ms +2021-09-03 15:24:44.312 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - - 200 - application/javascript 41.6587ms +2021-09-03 15:24:44.344 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - +2021-09-03 15:24:44.346 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:24:44.346 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:24:44.349 +08:00 [INF] Successfully validated the token. +2021-09-03 15:24:44.352 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - - 200 - font/woff2 7.2156ms +2021-09-03 15:24:45.700 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/recurring - - +2021-09-03 15:24:45.702 +08:00 [INF] Successfully validated the token. +2021-09-03 15:24:45.752 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/recurring - - - 200 - text/html 52.6254ms +2021-09-03 15:24:45.770 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - +2021-09-03 15:24:45.771 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - +2021-09-03 15:24:45.773 +08:00 [INF] Successfully validated the token. +2021-09-03 15:24:45.773 +08:00 [INF] Successfully validated the token. +2021-09-03 15:24:45.780 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - - 200 - text/css 10.0861ms +2021-09-03 15:24:45.793 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - - 200 - application/javascript 21.8309ms +2021-09-03 15:24:45.894 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - +2021-09-03 15:24:45.894 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:24:45.895 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:24:45.897 +08:00 [INF] Successfully validated the token. +2021-09-03 15:24:45.899 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - - 200 - font/woff2 5.0522ms +2021-09-03 15:24:48.311 +08:00 [DBG] Execution loop Worker:45683f96 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:24:48.312 +08:00 [DBG] Execution loop Worker:45683f96 will be retried in 00:05:00... +2021-09-03 15:24:48.587 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/recurring/remove application/x-www-form-urlencoded;+charset=UTF-8 32 +2021-09-03 15:24:48.587 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:24:48.587 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:24:48.587 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 +2021-09-03 15:24:48.587 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:24:48.587 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:24:48.589 +08:00 [INF] Successfully validated the token. +2021-09-03 15:24:48.589 +08:00 [INF] Successfully validated the token. +2021-09-03 15:24:48.679 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:24:48.679 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:24:48.679 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 - 200 - application/json 92.3580ms +2021-09-03 15:24:50.694 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 +2021-09-03 15:24:50.695 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:24:50.695 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:24:50.697 +08:00 [INF] Successfully validated the token. +2021-09-03 15:24:50.748 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:24:50.748 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:24:50.748 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 - 200 - application/json 53.5286ms +2021-09-03 15:24:52.759 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 +2021-09-03 15:24:52.759 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:24:52.759 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:24:52.761 +08:00 [INF] Successfully validated the token. +2021-09-03 15:24:52.801 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:24:52.801 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:24:52.801 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 - 200 - application/json 42.0862ms +2021-09-03 15:24:54.806 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 +2021-09-03 15:24:54.806 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:24:54.806 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:24:54.809 +08:00 [INF] Successfully validated the token. +2021-09-03 15:24:54.857 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:24:54.857 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:24:54.857 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 - 200 - application/json 51.3575ms +2021-09-03 15:24:56.596 +08:00 [DBG] Server szqh003802a:36232:ac1a9fef heartbeat successfully sent +2021-09-03 15:24:56.862 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 +2021-09-03 15:24:56.863 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:24:56.863 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:24:56.866 +08:00 [INF] Successfully validated the token. +2021-09-03 15:24:56.904 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:24:56.904 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:24:56.904 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 - 200 - application/json 41.9334ms +2021-09-03 15:24:57.299 +08:00 [DBG] Execution loop Worker:4a4d96a3 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:24:57.299 +08:00 [DBG] Execution loop Worker:4a4d96a3 will be retried in 00:05:00... +2021-09-03 15:24:57.417 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/recurring/trigger application/x-www-form-urlencoded;+charset=UTF-8 32 +2021-09-03 15:24:57.417 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:24:57.417 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:24:57.419 +08:00 [INF] Successfully validated the token. +2021-09-03 15:24:58.909 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 +2021-09-03 15:24:58.910 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:24:58.910 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:24:58.912 +08:00 [INF] Successfully validated the token. +2021-09-03 15:24:58.952 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:24:58.952 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:24:58.952 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 - 200 - application/json 43.0799ms +2021-09-03 15:25:01.930 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire?access_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJDb21wYW55TmFtZVByb2plY3ROYW1lIiwiaXNzIjoiQ29tcGFueU5hbWVQcm9qZWN0TmFtZSIsInN1YiI6IjM5ZmU1MmM2LTI3YTAtZDU0Yy0wYjQ3LTQxMzNmMDQ0YzhmYSIsImdpdmVuX25hbWUiOiJhZG1pbiIsIm5hbWUiOiJhZG1pbiIsImVtYWlsIjoiYWRtaW5AYWJwLmlvIiwidGVuYW50aWQiOiIiLCJyb2xlIjoiYWRtaW4iLCJuYmYiOjE2MzA2NTI3NjgsImV4cCI6MTYzMDczOTE2OCwiaWF0IjoxNjMwNjUyNzY4fQ.GgqFhLkP5lcdoy4_D8syWCZ-hr2nEhus83QDtGdsRIQ - - +2021-09-03 15:25:01.933 +08:00 [INF] Successfully validated the token. +2021-09-03 15:25:01.968 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire?access_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJDb21wYW55TmFtZVByb2plY3ROYW1lIiwiaXNzIjoiQ29tcGFueU5hbWVQcm9qZWN0TmFtZSIsInN1YiI6IjM5ZmU1MmM2LTI3YTAtZDU0Yy0wYjQ3LTQxMzNmMDQ0YzhmYSIsImdpdmVuX25hbWUiOiJhZG1pbiIsIm5hbWUiOiJhZG1pbiIsImVtYWlsIjoiYWRtaW5AYWJwLmlvIiwidGVuYW50aWQiOiIiLCJyb2xlIjoiYWRtaW4iLCJuYmYiOjE2MzA2NTI3NjgsImV4cCI6MTYzMDczOTE2OCwiaWF0IjoxNjMwNjUyNzY4fQ.GgqFhLkP5lcdoy4_D8syWCZ-hr2nEhus83QDtGdsRIQ - - - 200 - text/html 38.1675ms +2021-09-03 15:25:02.042 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - +2021-09-03 15:25:02.046 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - +2021-09-03 15:25:02.047 +08:00 [INF] Successfully validated the token. +2021-09-03 15:25:02.052 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - - 200 - text/css 9.4567ms +2021-09-03 15:25:02.052 +08:00 [INF] Successfully validated the token. +2021-09-03 15:25:02.073 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - - 200 - application/javascript 26.8742ms +2021-09-03 15:25:02.262 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - +2021-09-03 15:25:02.262 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:25:02.262 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:25:02.264 +08:00 [INF] Successfully validated the token. +2021-09-03 15:25:02.266 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - - 200 - font/woff2 4.4753ms +2021-09-03 15:25:03.734 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/recurring - - +2021-09-03 15:25:03.736 +08:00 [INF] Successfully validated the token. +2021-09-03 15:25:03.770 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/recurring - - - 200 - text/html 36.3562ms +2021-09-03 15:25:03.789 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - +2021-09-03 15:25:03.790 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - +2021-09-03 15:25:03.793 +08:00 [INF] Successfully validated the token. +2021-09-03 15:25:03.793 +08:00 [INF] Successfully validated the token. +2021-09-03 15:25:03.800 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - - 200 - text/css 10.2574ms +2021-09-03 15:25:03.817 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - - 200 - application/javascript 27.2979ms +2021-09-03 15:25:03.890 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - +2021-09-03 15:25:03.890 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:25:03.890 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:25:03.893 +08:00 [INF] Successfully validated the token. +2021-09-03 15:25:03.894 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - - 200 - font/woff2 4.5937ms +2021-09-03 15:25:06.582 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/recurring/remove application/x-www-form-urlencoded;+charset=UTF-8 32 +2021-09-03 15:25:06.582 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:25:06.582 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:25:06.584 +08:00 [INF] Successfully validated the token. +2021-09-03 15:25:06.585 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 +2021-09-03 15:25:06.586 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:25:06.586 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:25:06.588 +08:00 [INF] Successfully validated the token. +2021-09-03 15:25:06.641 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:25:06.641 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:25:06.641 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 - 200 - application/json 55.5772ms +2021-09-03 15:25:07.935 +08:00 [DBG] Execution loop RecurringJobScheduler:7269677b caught an exception and will be retried in 00:00:09 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:25:07.935 +08:00 [DBG] Execution loop RecurringJobScheduler:7269677b will be retried in 00:00:09... +2021-09-03 15:25:08.324 +08:00 [DBG] Execution loop Worker:58182a1c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:25:08.324 +08:00 [DBG] Execution loop Worker:58182a1c will be retried in 00:05:00... +2021-09-03 15:25:08.647 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 +2021-09-03 15:25:08.647 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:25:08.647 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:25:08.649 +08:00 [INF] Successfully validated the token. +2021-09-03 15:25:08.691 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:25:08.691 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:25:08.691 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 - 200 - application/json 44.7111ms +2021-09-03 15:25:10.704 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 +2021-09-03 15:25:10.704 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:25:10.704 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:25:10.707 +08:00 [INF] Successfully validated the token. +2021-09-03 15:25:10.745 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:25:10.745 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:25:10.746 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 - 200 - application/json 41.8144ms +2021-09-03 15:25:12.752 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 +2021-09-03 15:25:12.752 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:25:12.752 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:25:12.755 +08:00 [INF] Successfully validated the token. +2021-09-03 15:25:12.815 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:25:12.815 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:25:12.817 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 - 200 - application/json 63.6236ms +2021-09-03 15:25:14.828 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 +2021-09-03 15:25:14.829 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:25:14.829 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:25:14.831 +08:00 [INF] Successfully validated the token. +2021-09-03 15:25:14.871 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:25:14.871 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:25:14.872 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 - 200 - application/json 43.1909ms +2021-09-03 15:25:17.257 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 +2021-09-03 15:25:17.257 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:25:17.257 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:25:17.260 +08:00 [INF] Successfully validated the token. +2021-09-03 15:25:17.298 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:25:17.298 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:25:17.298 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 - 200 - application/json 41.3302ms +2021-09-03 15:25:20.258 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 +2021-09-03 15:25:20.258 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:25:20.258 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:25:20.260 +08:00 [INF] Successfully validated the token. +2021-09-03 15:25:20.297 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:25:20.297 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:25:20.297 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 - 200 - application/json 39.6648ms +2021-09-03 15:25:21.304 +08:00 [DBG] Execution loop Worker:9516e69b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:25:21.305 +08:00 [DBG] Execution loop Worker:9516e69b will be retried in 00:05:00... +2021-09-03 15:25:23.257 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 +2021-09-03 15:25:23.326 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:25:23.326 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:25:23.396 +08:00 [INF] Successfully validated the token. +2021-09-03 15:25:23.437 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:25:23.437 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:25:23.437 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 - 200 - application/json 180.4448ms +2021-09-03 15:25:23.509 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:25:23.509 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:25:23.512 +08:00 [ERR] An unhandled exception has occurred while executing the request. +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass29_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.RecurringJobManager.RemoveIfExists(String recurringJobId) + at Hangfire.Dashboard.DashboardRoutes.<>c.<.cctor>b__2_26(IRecurringJobManager manager, String jobId) + at Hangfire.Dashboard.RouteCollectionExtensions.<>c__DisplayClass4_0.b__0(DashboardContext context, String jobId) + at Hangfire.Dashboard.BatchCommandDispatcher.Dispatch(DashboardContext context) + at Hangfire.Dashboard.AspNetCoreDashboardMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Builder.Extensions.MapMiddleware.Invoke(HttpContext context) + at Volo.Abp.AspNetCore.Uow.AbpUnitOfWorkMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at Volo.Abp.AspNetCore.ExceptionHandling.AbpExceptionHandlingMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Volo.Abp.AspNetCore.ExceptionHandling.AbpExceptionHandlingMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at Volo.Abp.AspNetCore.Serilog.AbpSerilogMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at Volo.Abp.AspNetCore.Auditing.AbpAuditingMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Volo.Abp.AspNetCore.Auditing.AbpAuditingMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at Volo.Abp.AspNetCore.MultiTenancy.MultiTenancyMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Volo.Abp.AspNetCore.Tracing.AbpCorrelationIdMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.RequestLocalization.AbpRequestLocalizationMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2021-09-03 15:25:23.521 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/recurring/remove application/x-www-form-urlencoded;+charset=UTF-8 32 - 500 - text/plain 34935.3110ms +2021-09-03 15:25:26.255 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 +2021-09-03 15:25:26.255 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:25:26.255 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:25:26.257 +08:00 [INF] Successfully validated the token. +2021-09-03 15:25:26.301 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:25:26.301 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:25:26.301 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 - 200 - application/json 46.7911ms +2021-09-03 15:25:26.633 +08:00 [DBG] Server szqh003802a:36232:ac1a9fef heartbeat successfully sent +2021-09-03 15:25:28.874 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 +2021-09-03 15:25:28.874 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:25:28.874 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:25:28.877 +08:00 [INF] Successfully validated the token. +2021-09-03 15:25:28.929 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:25:28.929 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:25:28.929 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 - 200 - application/json 55.2733ms +2021-09-03 15:25:30.938 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 +2021-09-03 15:25:30.938 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:25:30.938 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:25:30.940 +08:00 [INF] Successfully validated the token. +2021-09-03 15:25:30.980 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:25:30.980 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:25:30.980 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 - 200 - application/json 42.1447ms +2021-09-03 15:25:32.995 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 +2021-09-03 15:25:32.995 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:25:32.995 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:25:32.998 +08:00 [INF] Successfully validated the token. +2021-09-03 15:25:33.048 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:25:33.048 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:25:33.048 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 - 200 - application/json 52.8756ms +2021-09-03 15:25:35.052 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 +2021-09-03 15:25:35.052 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:25:35.052 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:25:35.054 +08:00 [INF] Successfully validated the token. +2021-09-03 15:25:35.096 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:25:35.096 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:25:35.097 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 - 200 - application/json 44.9837ms +2021-09-03 15:26:00.860 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-09-03 15:26:05.618 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-09-03 15:26:05.733 +08:00 [INF] Loaded ABP modules: +2021-09-03 15:26:05.733 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-09-03 15:26:05.733 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-09-03 15:26:05.733 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-09-03 15:26:05.733 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-09-03 15:26:05.733 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-09-03 15:26:05.733 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-09-03 15:26:05.733 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-09-03 15:26:05.733 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-09-03 15:26:05.733 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-09-03 15:26:05.733 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-09-03 15:26:05.733 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-09-03 15:26:05.733 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-09-03 15:26:05.733 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-09-03 15:26:05.733 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-09-03 15:26:05.733 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-09-03 15:26:05.733 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-09-03 15:26:05.733 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-09-03 15:26:05.733 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-09-03 15:26:05.733 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-09-03 15:26:05.733 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-09-03 15:26:05.733 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-09-03 15:26:05.733 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-09-03 15:26:05.733 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-09-03 15:26:05.733 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-09-03 15:26:05.734 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-09-03 15:26:05.734 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-09-03 15:26:05.734 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-09-03 15:26:05.734 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-09-03 15:26:05.734 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule +2021-09-03 15:26:05.734 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-09-03 15:26:05.734 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-09-03 15:26:05.734 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-09-03 15:26:05.734 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-09-03 15:26:05.734 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-09-03 15:26:05.734 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-09-03 15:26:05.734 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-09-03 15:26:05.734 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-09-03 15:26:05.734 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-09-03 15:26:05.821 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-09-03 15:26:05.823 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-09-03 15:26:05.964 +08:00 [INF] DB tables already exist. Exit install +2021-09-03 15:26:05.989 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-09-03 15:26:05.989 +08:00 [INF] Using the following options for SQL Server job storage: +2021-09-03 15:26:05.989 +08:00 [INF] Queue poll interval: 00:00:15. +2021-09-03 15:26:05.990 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-09-03 15:26:06.010 +08:00 [DBG] Execution loop BackgroundServerProcess:1963d9af has started in 6.0492 ms +2021-09-03 15:26:06.119 +08:00 [INF] Server szqh003802a:36708:ff6673a7 successfully announced in 98.0061 ms +2021-09-03 15:26:06.123 +08:00 [INF] Server szqh003802a:36708:ff6673a7 is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-09-03 15:26:06.124 +08:00 [DBG] Execution loop ServerHeartbeatProcess:2b1f00df has started in 3.5303 ms +2021-09-03 15:26:06.126 +08:00 [DBG] Execution loop ServerWatchdog:ec439ada has started in 2.8735 ms +2021-09-03 15:26:06.128 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:2e8f8a86 has started in 3.694 ms +2021-09-03 15:26:06.130 +08:00 [DBG] Execution loop ExpirationManager:fd12aeba has started in 3.1904 ms +2021-09-03 15:26:06.132 +08:00 [DBG] Execution loop CountersAggregator:6dae969c has started in 4.1609 ms +2021-09-03 15:26:06.134 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 15:26:06.134 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-09-03 15:26:06.135 +08:00 [DBG] Execution loop Worker:8c7ebb68 has started in 5.1293 ms +2021-09-03 15:26:06.136 +08:00 [DBG] Execution loop Worker:f36e3ebf has started in 6.3336 ms +2021-09-03 15:26:06.140 +08:00 [DBG] Execution loop Worker:e92ea407 has started in 9.5166 ms +2021-09-03 15:26:06.141 +08:00 [DBG] Execution loop Worker:fbaa1e0b has started in 10.945 ms +2021-09-03 15:26:06.144 +08:00 [DBG] Execution loop Worker:f8126faa has started in 14.2199 ms +2021-09-03 15:26:06.147 +08:00 [DBG] Execution loop Worker:0fee8648 has started in 16.8401 ms +2021-09-03 15:26:06.148 +08:00 [DBG] Execution loop Worker:1540260d has started in 17.9674 ms +2021-09-03 15:26:06.149 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-03 15:26:06.152 +08:00 [DBG] Execution loop Worker:b3dd395d has started in 22.1913 ms +2021-09-03 15:26:06.156 +08:00 [DBG] Execution loop Worker:30504979 has started in 25.1351 ms +2021-09-03 15:26:06.158 +08:00 [DBG] Execution loop Worker:93131ff8 has started in 27.5624 ms +2021-09-03 15:26:06.163 +08:00 [DBG] Execution loop Worker:3f6d29e5 has started in 33.0865 ms +2021-09-03 15:26:06.165 +08:00 [INF] 1 servers were removed due to timeout +2021-09-03 15:26:06.168 +08:00 [DBG] Execution loop Worker:2da89121 has started in 37.0788 ms +2021-09-03 15:26:06.176 +08:00 [DBG] Execution loop Worker:07997259 has started in 46.5842 ms +2021-09-03 15:26:06.182 +08:00 [DBG] Execution loop Worker:d65d919f has started in 52.3262 ms +2021-09-03 15:26:06.193 +08:00 [DBG] Execution loop Worker:954a25a5 has started in 63.0111 ms +2021-09-03 15:26:06.198 +08:00 [DBG] Execution loop Worker:40ac7195 has started in 67.7614 ms +2021-09-03 15:26:06.201 +08:00 [DBG] Execution loop Worker:263e280b has started in 71.4748 ms +2021-09-03 15:26:06.209 +08:00 [DBG] Execution loop Worker:89787d03 has started in 78.0889 ms +2021-09-03 15:26:06.211 +08:00 [DBG] Execution loop Worker:efbc6e67 has started in 81.4338 ms +2021-09-03 15:26:06.215 +08:00 [DBG] removed records count=0 +2021-09-03 15:26:06.215 +08:00 [DBG] Execution loop Worker:ae9a0bc6 has started in 85.3557 ms +2021-09-03 15:26:06.219 +08:00 [DBG] Execution loop DelayedJobScheduler:a56f0d67 has started in 7.6567 ms +2021-09-03 15:26:06.219 +08:00 [INF] Server szqh003802a:36708:ff6673a7 all the dispatchers started +2021-09-03 15:26:06.220 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-09-03 15:26:06.226 +08:00 [DBG] Execution loop RecurringJobScheduler:d9cedd52 has started in 11.0753 ms +2021-09-03 15:26:06.236 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-09-03 15:26:06.594 +08:00 [INF] Initialized all ABP modules. +2021-09-03 15:26:06.662 +08:00 [INF] Now listening on: http://localhost:44315 +2021-09-03 15:26:06.663 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-09-03 15:26:06.663 +08:00 [INF] Hosting environment: Development +2021-09-03 15:26:06.663 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-09-03 15:26:07.221 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-09-03 15:26:08.847 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-03 15:26:08.913 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-09-03 15:26:08.949 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-09-03 15:26:08.955 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 38.4525ms +2021-09-03 15:26:08.955 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-03 15:26:08.975 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 1755.0222ms +2021-09-03 15:26:08.990 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-09-03 15:26:09.046 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 56.4721ms +2021-09-03 15:26:09.198 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-09-03 15:26:09.531 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 333.2819ms +2021-09-03 15:26:11.008 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire?access_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJDb21wYW55TmFtZVByb2plY3ROYW1lIiwiaXNzIjoiQ29tcGFueU5hbWVQcm9qZWN0TmFtZSIsInN1YiI6IjM5ZmU1MmM2LTI3YTAtZDU0Yy0wYjQ3LTQxMzNmMDQ0YzhmYSIsImdpdmVuX25hbWUiOiJhZG1pbiIsIm5hbWUiOiJhZG1pbiIsImVtYWlsIjoiYWRtaW5AYWJwLmlvIiwidGVuYW50aWQiOiIiLCJyb2xlIjoiYWRtaW4iLCJuYmYiOjE2MzA2NTI3NjgsImV4cCI6MTYzMDczOTE2OCwiaWF0IjoxNjMwNjUyNzY4fQ.GgqFhLkP5lcdoy4_D8syWCZ-hr2nEhus83QDtGdsRIQ - - +2021-09-03 15:26:11.123 +08:00 [INF] Successfully validated the token. +2021-09-03 15:26:11.485 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire?access_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJDb21wYW55TmFtZVByb2plY3ROYW1lIiwiaXNzIjoiQ29tcGFueU5hbWVQcm9qZWN0TmFtZSIsInN1YiI6IjM5ZmU1MmM2LTI3YTAtZDU0Yy0wYjQ3LTQxMzNmMDQ0YzhmYSIsImdpdmVuX25hbWUiOiJhZG1pbiIsIm5hbWUiOiJhZG1pbiIsImVtYWlsIjoiYWRtaW5AYWJwLmlvIiwidGVuYW50aWQiOiIiLCJyb2xlIjoiYWRtaW4iLCJuYmYiOjE2MzA2NTI3NjgsImV4cCI6MTYzMDczOTE2OCwiaWF0IjoxNjMwNjUyNzY4fQ.GgqFhLkP5lcdoy4_D8syWCZ-hr2nEhus83QDtGdsRIQ - - - 200 - text/html 477.7686ms +2021-09-03 15:26:11.509 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - +2021-09-03 15:26:11.509 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - +2021-09-03 15:26:11.512 +08:00 [INF] Successfully validated the token. +2021-09-03 15:26:11.513 +08:00 [INF] Successfully validated the token. +2021-09-03 15:26:11.538 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - - 200 - text/css 29.2343ms +2021-09-03 15:26:11.538 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - - 200 - application/javascript 28.5754ms +2021-09-03 15:26:11.640 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - +2021-09-03 15:26:11.645 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:26:11.645 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:26:11.650 +08:00 [INF] Successfully validated the token. +2021-09-03 15:26:11.653 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - - 200 - font/woff2 13.4218ms +2021-09-03 15:26:13.631 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:26:13.632 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:26:13.632 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:26:13.634 +08:00 [INF] Successfully validated the token. +2021-09-03 15:26:14.017 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:14.017 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:14.020 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 389.5926ms +2021-09-03 15:26:16.028 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:26:16.029 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:26:16.029 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:26:16.031 +08:00 [INF] Successfully validated the token. +2021-09-03 15:26:16.085 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:16.085 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:16.085 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 57.0162ms +2021-09-03 15:26:18.093 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:26:18.093 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:26:18.093 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:26:18.096 +08:00 [INF] Successfully validated the token. +2021-09-03 15:26:18.144 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:18.144 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:18.145 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 51.6059ms +2021-09-03 15:26:20.151 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:26:20.152 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:26:20.152 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:26:20.154 +08:00 [INF] Successfully validated the token. +2021-09-03 15:26:20.196 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:20.196 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:20.196 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 44.8782ms +2021-09-03 15:26:22.204 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:26:22.204 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:26:22.204 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:26:22.206 +08:00 [INF] Successfully validated the token. +2021-09-03 15:26:22.260 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:22.260 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:22.260 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 56.8699ms +2021-09-03 15:26:24.269 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:26:24.269 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:26:24.269 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:26:24.272 +08:00 [INF] Successfully validated the token. +2021-09-03 15:26:24.334 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:24.334 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:24.334 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 64.8827ms +2021-09-03 15:26:26.341 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:26:26.341 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:26:26.341 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:26:26.344 +08:00 [INF] Successfully validated the token. +2021-09-03 15:26:26.385 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:26.386 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:26.386 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 44.7700ms +2021-09-03 15:26:28.393 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:26:28.393 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:26:28.393 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:26:28.395 +08:00 [INF] Successfully validated the token. +2021-09-03 15:26:28.448 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:28.448 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:28.448 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 55.8195ms +2021-09-03 15:26:30.455 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:26:30.455 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:26:30.455 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:26:30.457 +08:00 [INF] Successfully validated the token. +2021-09-03 15:26:30.499 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:30.499 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:30.500 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 45.1758ms +2021-09-03 15:26:32.507 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:26:32.507 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:26:32.507 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:26:32.509 +08:00 [INF] Successfully validated the token. +2021-09-03 15:26:32.551 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:32.551 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:32.551 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 44.5909ms +2021-09-03 15:26:34.559 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:26:34.559 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:26:34.559 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:26:34.561 +08:00 [INF] Successfully validated the token. +2021-09-03 15:26:34.613 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:34.613 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:34.613 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 54.4384ms +2021-09-03 15:26:36.646 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:26:36.665 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:26:36.666 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:26:36.688 +08:00 [INF] Successfully validated the token. +2021-09-03 15:26:39.324 +08:00 [DBG] Server szqh003802a:36708:ff6673a7 heartbeat successfully sent +2021-09-03 15:26:41.382 +08:00 [DBG] Execution Worker is in the Faulted state now due to an exception, execution will be retried no more than in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:26:41.382 +08:00 [DBG] Execution loop Worker:d65d919f caught an exception and will be retried in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:26:41.382 +08:00 [DBG] Execution loop Worker:8c7ebb68 caught an exception and will be retried in 00:00:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:26:41.383 +08:00 [DBG] Execution loop Worker:d65d919f will be retried in 00:00:01... +2021-09-03 15:26:41.383 +08:00 [DBG] Execution loop Worker:8c7ebb68 will be retried in 00:00:04... +2021-09-03 15:26:41.383 +08:00 [DBG] Execution loop Worker:e92ea407 caught an exception and will be retried in 00:00:09 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:26:41.383 +08:00 [DBG] Execution loop Worker:b3dd395d caught an exception and will be retried in 00:00:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:26:41.383 +08:00 [DBG] Execution loop Worker:e92ea407 will be retried in 00:00:09... +2021-09-03 15:26:41.384 +08:00 [DBG] Execution loop Worker:b3dd395d will be retried in 00:00:16... +2021-09-03 15:26:41.386 +08:00 [DBG] Execution loop Worker:f8126faa caught an exception and will be retried in 00:00:25 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:26:41.387 +08:00 [DBG] Execution loop Worker:f8126faa will be retried in 00:00:25... +2021-09-03 15:26:41.389 +08:00 [DBG] Execution loop Worker:2da89121 caught an exception and will be retried in 00:00:36 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:26:41.389 +08:00 [DBG] Execution loop Worker:2da89121 will be retried in 00:00:36... +2021-09-03 15:26:41.391 +08:00 [DBG] Execution loop Worker:93131ff8 caught an exception and will be retried in 00:00:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:26:41.391 +08:00 [DBG] Execution loop Worker:93131ff8 will be retried in 00:00:49... +2021-09-03 15:26:41.395 +08:00 [DBG] Execution loop Worker:954a25a5 caught an exception and will be retried in 00:01:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:26:41.395 +08:00 [DBG] Execution loop Worker:954a25a5 will be retried in 00:01:04... +2021-09-03 15:26:41.395 +08:00 [DBG] Execution loop Worker:0fee8648 caught an exception and will be retried in 00:01:21 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:26:41.395 +08:00 [DBG] Execution loop Worker:0fee8648 will be retried in 00:01:21... +2021-09-03 15:26:41.396 +08:00 [DBG] Execution loop Worker:89787d03 caught an exception and will be retried in 00:01:40 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:26:41.396 +08:00 [DBG] Execution loop Worker:89787d03 will be retried in 00:01:40... +2021-09-03 15:26:41.398 +08:00 [DBG] Execution loop Worker:07997259 caught an exception and will be retried in 00:02:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:26:41.399 +08:00 [DBG] Execution loop Worker:07997259 will be retried in 00:02:01... +2021-09-03 15:26:41.399 +08:00 [DBG] Execution loop Worker:30504979 caught an exception and will be retried in 00:02:24 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:26:41.399 +08:00 [DBG] Execution loop Worker:30504979 will be retried in 00:02:24... +2021-09-03 15:26:41.399 +08:00 [DBG] Execution loop Worker:1540260d caught an exception and will be retried in 00:02:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:26:41.399 +08:00 [DBG] Execution loop Worker:ae9a0bc6 caught an exception and will be retried in 00:03:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:26:41.400 +08:00 [DBG] Execution loop Worker:1540260d will be retried in 00:02:49... +2021-09-03 15:26:41.400 +08:00 [DBG] Execution loop Worker:ae9a0bc6 will be retried in 00:03:16... +2021-09-03 15:26:41.400 +08:00 [DBG] Execution loop Worker:f36e3ebf caught an exception and will be retried in 00:03:45 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:26:41.400 +08:00 [DBG] Execution loop Worker:f36e3ebf will be retried in 00:03:45... +2021-09-03 15:26:41.402 +08:00 [DBG] Execution loop Worker:fbaa1e0b caught an exception and will be retried in 00:04:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:26:41.402 +08:00 [DBG] Execution loop Worker:40ac7195 caught an exception and will be retried in 00:04:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:26:41.402 +08:00 [DBG] Execution loop Worker:40ac7195 will be retried in 00:04:49... +2021-09-03 15:26:41.402 +08:00 [DBG] Execution loop Worker:fbaa1e0b will be retried in 00:04:16... +2021-09-03 15:26:41.404 +08:00 [DBG] Execution loop Worker:efbc6e67 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:26:41.404 +08:00 [DBG] Execution loop Worker:3f6d29e5 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:26:41.404 +08:00 [DBG] Execution loop Worker:efbc6e67 will be retried in 00:05:00... +2021-09-03 15:26:41.404 +08:00 [DBG] Execution loop Worker:3f6d29e5 will be retried in 00:05:00... +2021-09-03 15:26:41.404 +08:00 [DBG] Execution loop Worker:263e280b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:26:41.404 +08:00 [DBG] Execution loop Worker:263e280b will be retried in 00:05:00... +2021-09-03 15:26:41.442 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:41.442 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:41.442 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 4816.8997ms +2021-09-03 15:26:41.515 +08:00 [ERR] MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.ExpirationManager.<>c__DisplayClass9_1.b__0(MySqlConnection connection) +2021-09-03 15:26:41.517 +08:00 [DBG] Removing outdated records from table 'List'... +2021-09-03 15:26:41.517 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-09-03 15:26:41.526 +08:00 [DBG] removed records count=0 +2021-09-03 15:26:41.527 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-09-03 15:26:41.528 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-09-03 15:26:41.535 +08:00 [DBG] removed records count=0 +2021-09-03 15:26:41.536 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-09-03 15:26:41.537 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-09-03 15:26:43.447 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:26:43.447 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:26:43.447 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:26:43.450 +08:00 [INF] Successfully validated the token. +2021-09-03 15:26:43.492 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:43.492 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:43.492 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 45.1760ms +2021-09-03 15:26:45.501 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:26:45.501 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:26:45.501 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:26:45.504 +08:00 [INF] Successfully validated the token. +2021-09-03 15:26:45.547 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:45.547 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:45.547 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 46.3674ms +2021-09-03 15:26:47.617 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:26:47.618 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:26:47.618 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:26:47.622 +08:00 [INF] Successfully validated the token. +2021-09-03 15:26:47.678 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:47.678 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:47.678 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 61.0630ms +2021-09-03 15:26:49.692 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:26:49.692 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:26:49.692 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:26:49.695 +08:00 [INF] Successfully validated the token. +2021-09-03 15:26:49.738 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:49.738 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:49.738 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 46.1756ms +2021-09-03 15:26:51.747 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:26:51.747 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:26:51.747 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:26:51.749 +08:00 [INF] Successfully validated the token. +2021-09-03 15:26:51.804 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:51.804 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:51.804 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 57.8118ms +2021-09-03 15:26:53.812 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:26:53.853 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:26:53.854 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:26:53.896 +08:00 [INF] Successfully validated the token. +2021-09-03 15:26:53.913 +08:00 [DBG] Execution RecurringJobScheduler is in the Faulted state now due to an exception, execution will be retried no more than in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:26:53.913 +08:00 [DBG] Execution loop RecurringJobScheduler:d9cedd52 caught an exception and will be retried in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:26:53.913 +08:00 [DBG] Execution loop RecurringJobScheduler:d9cedd52 will be retried in 00:00:01... +2021-09-03 15:26:53.945 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:53.945 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:53.945 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 133.4963ms +2021-09-03 15:26:55.955 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:26:55.955 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:26:55.955 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:26:55.958 +08:00 [INF] Successfully validated the token. +2021-09-03 15:26:56.000 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:56.000 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:56.000 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 45.4131ms +2021-09-03 15:26:58.008 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:26:58.008 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:26:58.008 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:26:58.011 +08:00 [INF] Successfully validated the token. +2021-09-03 15:26:58.056 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:58.056 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:26:58.056 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 48.2967ms +2021-09-03 15:27:00.064 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:27:00.064 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:27:00.064 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:27:00.067 +08:00 [INF] Successfully validated the token. +2021-09-03 15:27:00.120 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:00.120 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:00.120 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 56.4470ms +2021-09-03 15:27:02.127 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:27:02.127 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:27:02.127 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:27:02.130 +08:00 [INF] Successfully validated the token. +2021-09-03 15:27:02.185 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:02.185 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:02.185 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 58.5018ms +2021-09-03 15:27:04.191 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:27:04.192 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:27:04.192 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:27:04.194 +08:00 [INF] Successfully validated the token. +2021-09-03 15:27:04.239 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:04.239 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:04.239 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 47.5796ms +2021-09-03 15:27:06.247 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:27:06.247 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:27:06.247 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:27:06.249 +08:00 [INF] Successfully validated the token. +2021-09-03 15:27:06.304 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:06.304 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:06.304 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 57.6038ms +2021-09-03 15:27:08.309 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:27:08.310 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:27:08.310 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:27:08.313 +08:00 [INF] Successfully validated the token. +2021-09-03 15:27:08.373 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:08.373 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:08.373 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 63.4163ms +2021-09-03 15:27:09.396 +08:00 [DBG] Server szqh003802a:36708:ff6673a7 heartbeat successfully sent +2021-09-03 15:27:10.381 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:27:10.381 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:27:10.381 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:27:10.384 +08:00 [INF] Successfully validated the token. +2021-09-03 15:27:10.437 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:10.437 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:10.437 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 55.9343ms +2021-09-03 15:27:11.805 +08:00 [ERR] MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.ExpirationManager.<>c__DisplayClass9_1.b__0(MySqlConnection connection) +2021-09-03 15:27:12.476 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:27:12.515 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:27:12.515 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:27:12.669 +08:00 [INF] Successfully validated the token. +2021-09-03 15:27:12.674 +08:00 [ERR] Execution Worker is in the Failed state now due to an exception, execution will be retried no more than in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:27:12.674 +08:00 [DBG] Execution loop Worker:d65d919f caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:27:12.674 +08:00 [DBG] Execution loop Worker:d65d919f will be retried in 00:05:00... +2021-09-03 15:27:12.716 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:12.716 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:12.717 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 240.9835ms +2021-09-03 15:27:14.724 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:27:14.724 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:27:14.724 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:27:14.726 +08:00 [INF] Successfully validated the token. +2021-09-03 15:27:14.779 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:14.779 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:14.779 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 55.6545ms +2021-09-03 15:27:15.650 +08:00 [DBG] Execution loop Worker:8c7ebb68 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:27:15.650 +08:00 [DBG] Execution loop Worker:8c7ebb68 will be retried in 00:05:00... +2021-09-03 15:27:16.787 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:27:16.787 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:27:16.787 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:27:16.789 +08:00 [INF] Successfully validated the token. +2021-09-03 15:27:16.843 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:16.843 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:16.843 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 56.1147ms +2021-09-03 15:27:18.849 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:27:18.850 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:27:18.850 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:27:18.852 +08:00 [INF] Successfully validated the token. +2021-09-03 15:27:18.897 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:18.897 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:18.897 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 48.0305ms +2021-09-03 15:27:20.707 +08:00 [DBG] Execution loop Worker:e92ea407 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:27:20.708 +08:00 [DBG] Execution loop Worker:e92ea407 will be retried in 00:05:00... +2021-09-03 15:27:20.905 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:27:20.905 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:27:20.905 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:27:20.910 +08:00 [INF] Successfully validated the token. +2021-09-03 15:27:20.959 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:20.959 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:20.959 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 53.9564ms +2021-09-03 15:27:22.970 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:27:22.970 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:27:22.970 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:27:22.973 +08:00 [INF] Successfully validated the token. +2021-09-03 15:27:23.026 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:23.026 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:23.026 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 56.3594ms +2021-09-03 15:27:25.035 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:27:25.075 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:27:25.075 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:27:25.178 +08:00 [INF] Successfully validated the token. +2021-09-03 15:27:25.263 +08:00 [ERR] Execution RecurringJobScheduler is in the Failed state now due to an exception, execution will be retried no more than in 00:00:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:27:25.263 +08:00 [DBG] Execution loop RecurringJobScheduler:d9cedd52 caught an exception and will be retried in 00:00:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:27:25.263 +08:00 [DBG] Execution loop RecurringJobScheduler:d9cedd52 will be retried in 00:00:04... +2021-09-03 15:27:25.283 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:25.283 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:25.283 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 248.4294ms +2021-09-03 15:27:27.290 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:27:27.290 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:27:27.290 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:27:27.293 +08:00 [INF] Successfully validated the token. +2021-09-03 15:27:27.337 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:27.337 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:27.337 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 47.3129ms +2021-09-03 15:27:27.692 +08:00 [DBG] Execution loop Worker:b3dd395d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:27:27.692 +08:00 [DBG] Execution loop Worker:b3dd395d will be retried in 00:05:00... +2021-09-03 15:27:29.345 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:27:29.345 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:27:29.345 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:27:29.347 +08:00 [INF] Successfully validated the token. +2021-09-03 15:27:29.389 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:29.389 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:29.389 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 44.6609ms +2021-09-03 15:27:31.397 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:27:31.397 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:27:31.397 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:27:31.400 +08:00 [INF] Successfully validated the token. +2021-09-03 15:27:31.442 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:31.442 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:31.443 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 45.3882ms +2021-09-03 15:27:33.450 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:27:33.450 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:27:33.450 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:27:33.452 +08:00 [INF] Successfully validated the token. +2021-09-03 15:27:33.505 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:33.505 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:33.506 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 55.9203ms +2021-09-03 15:27:35.512 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:27:35.513 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:27:35.513 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:27:35.516 +08:00 [INF] Successfully validated the token. +2021-09-03 15:27:35.559 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:35.559 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:35.559 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 46.9274ms +2021-09-03 15:27:36.692 +08:00 [DBG] Execution loop Worker:f8126faa caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:27:36.693 +08:00 [DBG] Execution loop Worker:f8126faa will be retried in 00:05:00... +2021-09-03 15:27:37.565 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:27:37.566 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:27:37.566 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:27:37.568 +08:00 [INF] Successfully validated the token. +2021-09-03 15:27:37.612 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:37.612 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:37.613 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 47.4111ms +2021-09-03 15:27:39.434 +08:00 [DBG] Server szqh003802a:36708:ff6673a7 heartbeat successfully sent +2021-09-03 15:27:39.620 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:27:39.620 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:27:39.621 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:27:39.623 +08:00 [INF] Successfully validated the token. +2021-09-03 15:27:39.667 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:39.667 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:39.667 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 46.8058ms +2021-09-03 15:27:41.675 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:27:41.676 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:27:41.676 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:27:41.678 +08:00 [INF] Successfully validated the token. +2021-09-03 15:27:41.719 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:41.719 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:41.719 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 43.8682ms +2021-09-03 15:27:43.726 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:27:43.726 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:27:43.726 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:27:43.728 +08:00 [INF] Successfully validated the token. +2021-09-03 15:27:43.773 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:43.773 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:43.773 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 47.6265ms +2021-09-03 15:27:45.782 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:27:45.782 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:27:45.782 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:27:45.784 +08:00 [INF] Successfully validated the token. +2021-09-03 15:27:45.827 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:45.827 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:45.827 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 45.1711ms +2021-09-03 15:27:47.676 +08:00 [DBG] Execution loop Worker:2da89121 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:27:47.676 +08:00 [DBG] Execution loop Worker:2da89121 will be retried in 00:05:00... +2021-09-03 15:27:47.833 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:27:47.834 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:27:47.834 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:27:47.836 +08:00 [INF] Successfully validated the token. +2021-09-03 15:27:47.878 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:47.878 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:47.878 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 44.7642ms +2021-09-03 15:27:49.885 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:27:49.886 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:27:49.886 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:27:49.888 +08:00 [INF] Successfully validated the token. +2021-09-03 15:27:49.941 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:49.941 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:49.942 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 56.4513ms +2021-09-03 15:27:51.948 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:27:51.948 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:27:51.948 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:27:51.951 +08:00 [INF] Successfully validated the token. +2021-09-03 15:27:52.002 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:52.002 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:52.003 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 54.6787ms +2021-09-03 15:27:54.010 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:27:54.011 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:27:54.011 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:27:54.013 +08:00 [INF] Successfully validated the token. +2021-09-03 15:27:54.055 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:54.055 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:54.055 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 44.8085ms +2021-09-03 15:27:56.061 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:27:56.062 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:27:56.062 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:27:56.065 +08:00 [INF] Successfully validated the token. +2021-09-03 15:27:56.123 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:56.123 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:56.124 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 62.3988ms +2021-09-03 15:27:58.131 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:27:58.132 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:27:58.132 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:27:58.134 +08:00 [INF] Successfully validated the token. +2021-09-03 15:27:58.176 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:58.176 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:27:58.176 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 44.9844ms +2021-09-03 15:27:59.580 +08:00 [DBG] Execution loop RecurringJobScheduler:d9cedd52 caught an exception and will be retried in 00:00:09 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:27:59.580 +08:00 [DBG] Execution loop RecurringJobScheduler:d9cedd52 will be retried in 00:00:09... +2021-09-03 15:28:00.184 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:28:00.185 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:28:00.185 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:28:00.187 +08:00 [INF] Successfully validated the token. +2021-09-03 15:28:00.230 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:00.230 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:00.230 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 45.7963ms +2021-09-03 15:28:00.672 +08:00 [DBG] Execution loop Worker:93131ff8 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:28:00.673 +08:00 [DBG] Execution loop Worker:93131ff8 will be retried in 00:05:00... +2021-09-03 15:28:02.237 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:28:02.237 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:28:02.237 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:28:02.239 +08:00 [INF] Successfully validated the token. +2021-09-03 15:28:02.281 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:02.281 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:02.281 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 44.2253ms +2021-09-03 15:28:04.289 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:28:04.289 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:28:04.289 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:28:04.291 +08:00 [INF] Successfully validated the token. +2021-09-03 15:28:04.348 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:04.348 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:04.348 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 59.1075ms +2021-09-03 15:28:06.367 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:28:06.368 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:28:06.368 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:28:06.370 +08:00 [INF] Successfully validated the token. +2021-09-03 15:28:06.411 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:06.411 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:06.411 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 43.8956ms +2021-09-03 15:28:07.806 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Roles/page - - +2021-09-03 15:28:07.807 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:28:07.809 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Roles/page - - - 204 - - 3.4894ms +2021-09-03 15:28:07.811 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Roles/page application/json 24 +2021-09-03 15:28:07.812 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:28:07.815 +08:00 [INF] Successfully validated the token. +2021-09-03 15:28:08.014 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-09-03 15:28:08.019 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-09-03 15:28:08.025 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles +2021-09-03 15:28:08.028 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles +2021-09-03 15:28:08.033 +08:00 [INF] Authorization was successful. +2021-09-03 15:28:08.036 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:28:08.051 +08:00 [INF] Route matched with {action = "List", controller = "Role", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityRoleDto]] ListAsync(CompanyName.ProjectName.Roles.Dtos.PagingRoleListInput) on controller CompanyName.ProjectName.Controllers.Systems.RoleController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:28:08.419 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:28:08.420 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:28:08.420 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:28:08.422 +08:00 [INF] Successfully validated the token. +2021-09-03 15:28:08.477 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:08.477 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:08.478 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 58.2555ms +2021-09-03 15:28:09.025 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityRoleDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:28:09.040 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi) in 989.3561ms +2021-09-03 15:28:09.041 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:28:09.049 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:09.108 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:09.108 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:09.109 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Roles/page application/json 24 - 200 - application/json;+charset=utf-8 1298.1135ms +2021-09-03 15:28:09.467 +08:00 [DBG] Server szqh003802a:36708:ff6673a7 heartbeat successfully sent +2021-09-03 15:28:10.484 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:28:10.484 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:28:10.484 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:28:10.486 +08:00 [INF] Successfully validated the token. +2021-09-03 15:28:10.528 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:10.528 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:10.528 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 44.6053ms +2021-09-03 15:28:11.122 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:28:11.123 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:28:11.123 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.9714ms +2021-09-03 15:28:11.124 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:28:11.125 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:28:11.127 +08:00 [INF] Successfully validated the token. +2021-09-03 15:28:11.128 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:28:11.131 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:28:11.148 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:28:11.148 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 17.7982ms +2021-09-03 15:28:11.149 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:28:11.183 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:11.183 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:11.184 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 59.2498ms +2021-09-03 15:28:12.536 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:28:12.536 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:28:12.536 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:28:12.539 +08:00 [INF] Successfully validated the token. +2021-09-03 15:28:12.581 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:12.581 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:12.581 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 45.1173ms +2021-09-03 15:28:14.588 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:28:14.588 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:28:14.588 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:28:14.590 +08:00 [INF] Successfully validated the token. +2021-09-03 15:28:14.637 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:14.637 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:14.637 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 49.2862ms +2021-09-03 15:28:15.660 +08:00 [DBG] Execution loop Worker:954a25a5 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:28:15.661 +08:00 [DBG] Execution loop Worker:954a25a5 will be retried in 00:05:00... +2021-09-03 15:28:16.645 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:28:16.646 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:28:16.646 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:28:16.649 +08:00 [INF] Successfully validated the token. +2021-09-03 15:28:16.691 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:16.691 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:16.691 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 45.4950ms +2021-09-03 15:28:19.243 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:28:19.243 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:28:19.243 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:28:19.245 +08:00 [INF] Successfully validated the token. +2021-09-03 15:28:19.285 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:19.285 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:19.286 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 42.9865ms +2021-09-03 15:28:22.250 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:28:22.250 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:28:22.250 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:28:22.252 +08:00 [INF] Successfully validated the token. +2021-09-03 15:28:22.293 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:22.293 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:22.293 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 42.9491ms +2021-09-03 15:28:25.248 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:28:25.248 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:28:25.248 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:28:25.250 +08:00 [INF] Successfully validated the token. +2021-09-03 15:28:25.299 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:25.299 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:25.299 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 51.7029ms +2021-09-03 15:28:28.245 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:28:28.245 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:28:28.245 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:28:28.247 +08:00 [INF] Successfully validated the token. +2021-09-03 15:28:28.287 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:28.287 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:28.287 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 42.7276ms +2021-09-03 15:28:31.244 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:28:31.244 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:28:31.244 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:28:31.246 +08:00 [INF] Successfully validated the token. +2021-09-03 15:28:31.301 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:31.301 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:31.302 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 57.7863ms +2021-09-03 15:28:32.654 +08:00 [DBG] Execution loop Worker:0fee8648 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:28:32.654 +08:00 [DBG] Execution loop Worker:0fee8648 will be retried in 00:05:00... +2021-09-03 15:28:34.247 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:28:34.248 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:28:34.248 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:28:34.250 +08:00 [INF] Successfully validated the token. +2021-09-03 15:28:34.290 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:34.290 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:34.290 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 42.5087ms +2021-09-03 15:28:37.246 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:28:37.246 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:28:37.246 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:28:37.249 +08:00 [INF] Successfully validated the token. +2021-09-03 15:28:37.287 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:37.287 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:37.287 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 40.9991ms +2021-09-03 15:28:38.880 +08:00 [DBG] Execution loop RecurringJobScheduler:d9cedd52 caught an exception and will be retried in 00:00:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:28:38.880 +08:00 [DBG] Execution loop RecurringJobScheduler:d9cedd52 will be retried in 00:00:16... +2021-09-03 15:28:39.479 +08:00 [DBG] Server szqh003802a:36708:ff6673a7 heartbeat successfully sent +2021-09-03 15:28:40.257 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:28:40.257 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:28:40.257 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:28:40.259 +08:00 [INF] Successfully validated the token. +2021-09-03 15:28:40.298 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:40.298 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:40.299 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 41.9458ms +2021-09-03 15:28:43.245 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:28:43.245 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:28:43.245 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:28:43.247 +08:00 [INF] Successfully validated the token. +2021-09-03 15:28:43.286 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:43.286 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:43.286 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 41.6677ms +2021-09-03 15:28:46.248 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:28:46.248 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:28:46.248 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:28:46.250 +08:00 [INF] Successfully validated the token. +2021-09-03 15:28:46.300 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:46.300 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:46.300 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 52.5848ms +2021-09-03 15:28:49.244 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:28:49.244 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:28:49.244 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:28:49.246 +08:00 [INF] Successfully validated the token. +2021-09-03 15:28:49.284 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:49.284 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:49.285 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 41.1026ms +2021-09-03 15:28:51.668 +08:00 [DBG] Execution loop Worker:89787d03 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:28:51.668 +08:00 [DBG] Execution loop Worker:89787d03 will be retried in 00:05:00... +2021-09-03 15:28:52.250 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:28:52.251 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:28:52.251 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:28:52.253 +08:00 [INF] Successfully validated the token. +2021-09-03 15:28:52.292 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:52.292 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:52.292 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 41.9859ms +2021-09-03 15:28:55.241 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:28:55.242 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:28:55.242 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:28:55.244 +08:00 [INF] Successfully validated the token. +2021-09-03 15:28:55.283 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:55.283 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:55.283 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 41.7896ms +2021-09-03 15:28:58.243 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:28:58.244 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:28:58.244 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:28:58.246 +08:00 [INF] Successfully validated the token. +2021-09-03 15:28:58.284 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:58.284 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:28:58.285 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 41.1135ms +2021-09-03 15:29:01.253 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:29:01.253 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:29:01.253 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:29:01.256 +08:00 [INF] Successfully validated the token. +2021-09-03 15:29:01.294 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:01.294 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:01.294 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 40.6933ms +2021-09-03 15:29:04.255 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:29:04.255 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:29:04.255 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:29:04.257 +08:00 [INF] Successfully validated the token. +2021-09-03 15:29:04.309 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:04.309 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:04.309 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 54.3535ms +2021-09-03 15:29:07.249 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:29:07.249 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:29:07.249 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:29:07.251 +08:00 [INF] Successfully validated the token. +2021-09-03 15:29:07.289 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:07.290 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:07.290 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 41.2107ms +2021-09-03 15:29:09.558 +08:00 [DBG] Server szqh003802a:36708:ff6673a7 heartbeat successfully sent +2021-09-03 15:29:10.302 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:29:10.303 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:29:10.303 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:29:10.305 +08:00 [INF] Successfully validated the token. +2021-09-03 15:29:10.348 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:10.348 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:10.348 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 45.7922ms +2021-09-03 15:29:10.352 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:29:10.352 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:29:10.352 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4416ms +2021-09-03 15:29:10.354 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:29:10.354 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:29:10.356 +08:00 [INF] Successfully validated the token. +2021-09-03 15:29:10.358 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:29:10.358 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:29:10.359 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:29:10.359 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 0.8068ms +2021-09-03 15:29:10.359 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:29:10.382 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:10.382 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:10.382 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 28.4740ms +2021-09-03 15:29:11.287 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:29:11.288 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:29:11.288 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.9413ms +2021-09-03 15:29:11.290 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:29:11.290 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:29:11.293 +08:00 [INF] Successfully validated the token. +2021-09-03 15:29:11.294 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:29:11.294 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:29:11.295 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:29:11.295 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 0.6339ms +2021-09-03 15:29:11.295 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:29:11.327 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:11.327 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:11.327 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 37.1192ms +2021-09-03 15:29:12.373 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:29:12.374 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:29:12.374 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:29:12.378 +08:00 [INF] Successfully validated the token. +2021-09-03 15:29:12.435 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:12.435 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:12.436 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 62.6906ms +2021-09-03 15:29:12.708 +08:00 [DBG] Execution loop Worker:07997259 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:29:12.708 +08:00 [DBG] Execution loop Worker:07997259 will be retried in 00:05:00... +2021-09-03 15:29:15.253 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:29:15.253 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:29:15.253 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:29:15.256 +08:00 [INF] Successfully validated the token. +2021-09-03 15:29:15.295 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:15.295 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:15.296 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 42.5936ms +2021-09-03 15:29:17.275 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:29:17.275 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:29:17.275 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4394ms +2021-09-03 15:29:17.277 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:29:17.277 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:29:17.279 +08:00 [INF] Successfully validated the token. +2021-09-03 15:29:17.280 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:29:17.281 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:29:17.281 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:29:17.281 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 0.6298ms +2021-09-03 15:29:17.281 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:29:17.303 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:17.303 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:17.303 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 26.8962ms +2021-09-03 15:29:18.249 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:29:18.249 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:29:18.249 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:29:18.251 +08:00 [INF] Successfully validated the token. +2021-09-03 15:29:18.291 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:18.291 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:18.292 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 42.8241ms +2021-09-03 15:29:21.009 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:29:21.009 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:29:21.012 +08:00 [INF] Successfully validated the token. +2021-09-03 15:29:21.014 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:29:21.014 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:29:21.015 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:29:21.015 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 0.7093ms +2021-09-03 15:29:21.015 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:29:21.039 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:21.039 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:21.040 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 30.6045ms +2021-09-03 15:29:21.252 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:29:21.253 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:29:21.253 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:29:21.256 +08:00 [INF] Successfully validated the token. +2021-09-03 15:29:21.313 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:21.313 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:21.313 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 60.9103ms +2021-09-03 15:29:24.244 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:29:24.244 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:29:24.244 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:29:24.246 +08:00 [INF] Successfully validated the token. +2021-09-03 15:29:24.288 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:24.288 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:24.289 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 45.0720ms +2021-09-03 15:29:25.187 +08:00 [DBG] Execution loop RecurringJobScheduler:d9cedd52 caught an exception and will be retried in 00:00:25 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:29:25.187 +08:00 [DBG] Execution loop RecurringJobScheduler:d9cedd52 will be retried in 00:00:25... +2021-09-03 15:29:27.255 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:29:27.256 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:29:27.256 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:29:27.258 +08:00 [INF] Successfully validated the token. +2021-09-03 15:29:27.298 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:27.298 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:27.298 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 43.2888ms +2021-09-03 15:29:30.255 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:29:30.256 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:29:30.256 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:29:30.258 +08:00 [INF] Successfully validated the token. +2021-09-03 15:29:30.299 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:30.299 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:30.299 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 43.5969ms +2021-09-03 15:29:33.244 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:29:33.244 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:29:33.244 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:29:33.246 +08:00 [INF] Successfully validated the token. +2021-09-03 15:29:33.298 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:33.298 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:33.298 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 54.4148ms +2021-09-03 15:29:35.692 +08:00 [DBG] Execution loop Worker:30504979 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:29:35.692 +08:00 [DBG] Execution loop Worker:30504979 will be retried in 00:05:00... +2021-09-03 15:29:36.246 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:29:36.246 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:29:36.246 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:29:36.248 +08:00 [INF] Successfully validated the token. +2021-09-03 15:29:36.287 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:36.288 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:36.288 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 41.9668ms +2021-09-03 15:29:39.249 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:29:39.249 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:29:39.249 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:29:39.251 +08:00 [INF] Successfully validated the token. +2021-09-03 15:29:39.291 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:39.291 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:39.292 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 42.5284ms +2021-09-03 15:29:39.593 +08:00 [DBG] Server szqh003802a:36708:ff6673a7 heartbeat successfully sent +2021-09-03 15:29:42.242 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:29:42.243 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:29:42.243 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:29:42.245 +08:00 [INF] Successfully validated the token. +2021-09-03 15:29:42.286 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:42.286 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:42.286 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 43.7787ms +2021-09-03 15:29:45.246 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:29:45.247 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:29:45.247 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:29:45.249 +08:00 [INF] Successfully validated the token. +2021-09-03 15:29:45.297 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:45.297 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:45.297 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 51.1142ms +2021-09-03 15:29:48.255 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:29:48.256 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:29:48.256 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:29:48.258 +08:00 [INF] Successfully validated the token. +2021-09-03 15:29:48.310 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:48.310 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:48.310 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 54.8513ms +2021-09-03 15:29:51.248 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:29:51.248 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:29:51.248 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:29:51.251 +08:00 [INF] Successfully validated the token. +2021-09-03 15:29:51.290 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:51.290 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:51.290 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 42.5142ms +2021-09-03 15:29:54.246 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:29:54.246 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:29:54.246 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:29:54.249 +08:00 [INF] Successfully validated the token. +2021-09-03 15:29:54.289 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:54.289 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:54.289 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 43.7976ms +2021-09-03 15:29:57.248 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:29:57.249 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:29:57.249 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:29:57.252 +08:00 [INF] Successfully validated the token. +2021-09-03 15:29:57.292 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:57.292 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:29:57.292 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 43.9353ms +2021-09-03 15:30:00.249 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:30:00.249 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:30:00.249 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:30:00.251 +08:00 [INF] Successfully validated the token. +2021-09-03 15:30:00.290 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:00.290 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:00.290 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 41.1588ms +2021-09-03 15:30:00.691 +08:00 [DBG] Execution loop Worker:1540260d caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:30:00.691 +08:00 [DBG] Execution loop Worker:1540260d will be retried in 00:05:00... +2021-09-03 15:30:03.243 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:30:03.243 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:30:03.243 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:30:03.245 +08:00 [INF] Successfully validated the token. +2021-09-03 15:30:03.295 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:03.295 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:03.295 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 52.1288ms +2021-09-03 15:30:06.252 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:30:06.252 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:30:06.252 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:30:06.254 +08:00 [INF] Successfully validated the token. +2021-09-03 15:30:06.295 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:06.295 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:06.295 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 43.7248ms +2021-09-03 15:30:09.241 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:30:09.242 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:30:09.242 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:30:09.244 +08:00 [INF] Successfully validated the token. +2021-09-03 15:30:09.295 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:09.296 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:09.296 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 54.4831ms +2021-09-03 15:30:09.648 +08:00 [DBG] Server szqh003802a:36708:ff6673a7 heartbeat successfully sent +2021-09-03 15:30:12.246 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:30:12.246 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:30:12.246 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:30:12.249 +08:00 [INF] Successfully validated the token. +2021-09-03 15:30:12.289 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:12.289 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:12.289 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 42.8427ms +2021-09-03 15:30:15.250 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:30:15.251 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:30:15.251 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:30:15.253 +08:00 [INF] Successfully validated the token. +2021-09-03 15:30:15.292 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:15.292 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:15.292 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 42.1718ms +2021-09-03 15:30:18.239 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:30:18.240 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:30:18.240 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:30:18.242 +08:00 [INF] Successfully validated the token. +2021-09-03 15:30:18.283 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:18.283 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:18.283 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 43.3732ms +2021-09-03 15:30:20.572 +08:00 [DBG] Execution loop RecurringJobScheduler:d9cedd52 caught an exception and will be retried in 00:00:36 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:30:20.572 +08:00 [DBG] Execution loop RecurringJobScheduler:d9cedd52 will be retried in 00:00:36... +2021-09-03 15:30:21.247 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:30:21.247 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:30:21.247 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:30:21.249 +08:00 [INF] Successfully validated the token. +2021-09-03 15:30:21.291 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:21.291 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:21.292 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 44.8762ms +2021-09-03 15:30:24.244 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:30:24.245 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:30:24.245 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:30:24.247 +08:00 [INF] Successfully validated the token. +2021-09-03 15:30:24.287 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:24.288 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:24.288 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 43.4737ms +2021-09-03 15:30:27.241 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:30:27.242 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:30:27.242 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:30:27.244 +08:00 [INF] Successfully validated the token. +2021-09-03 15:30:27.283 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:27.283 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:27.283 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 41.9233ms +2021-09-03 15:30:27.776 +08:00 [DBG] Execution loop Worker:ae9a0bc6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:30:27.776 +08:00 [DBG] Execution loop Worker:ae9a0bc6 will be retried in 00:05:00... +2021-09-03 15:30:29.300 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:30:29.301 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:30:29.301 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:30:29.304 +08:00 [INF] Successfully validated the token. +2021-09-03 15:30:29.364 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:29.364 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:29.364 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 64.1925ms +2021-09-03 15:30:32.248 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:30:32.248 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:30:32.248 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:30:32.250 +08:00 [INF] Successfully validated the token. +2021-09-03 15:30:32.291 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:32.291 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:32.291 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 42.9312ms +2021-09-03 15:30:35.249 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:30:35.250 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:30:35.250 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:30:35.252 +08:00 [INF] Successfully validated the token. +2021-09-03 15:30:35.302 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:35.302 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:35.302 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 53.2789ms +2021-09-03 15:30:38.238 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:30:38.238 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:30:38.238 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:30:38.241 +08:00 [INF] Successfully validated the token. +2021-09-03 15:30:38.279 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:38.279 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:38.279 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 41.0400ms +2021-09-03 15:30:39.716 +08:00 [DBG] Server szqh003802a:36708:ff6673a7 heartbeat successfully sent +2021-09-03 15:30:41.245 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:30:41.245 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:30:41.245 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:30:41.247 +08:00 [INF] Successfully validated the token. +2021-09-03 15:30:41.296 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:41.296 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:41.296 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 51.2819ms +2021-09-03 15:30:44.243 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:30:44.244 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:30:44.244 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:30:44.247 +08:00 [INF] Successfully validated the token. +2021-09-03 15:30:44.287 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:44.287 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:44.288 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 44.1106ms +2021-09-03 15:30:47.250 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:30:47.250 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:30:47.250 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:30:47.253 +08:00 [INF] Successfully validated the token. +2021-09-03 15:30:47.291 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:47.291 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:47.291 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 41.5859ms +2021-09-03 15:30:50.235 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:30:50.235 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:30:50.235 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:30:50.237 +08:00 [INF] Successfully validated the token. +2021-09-03 15:30:50.276 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:50.276 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:50.276 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 41.5047ms +2021-09-03 15:30:53.241 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:30:53.241 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:30:53.241 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:30:53.243 +08:00 [INF] Successfully validated the token. +2021-09-03 15:30:53.294 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:53.294 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:53.294 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 52.9127ms +2021-09-03 15:30:56.246 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:30:56.246 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:30:56.246 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:30:56.248 +08:00 [INF] Successfully validated the token. +2021-09-03 15:30:56.290 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:56.290 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:56.290 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 44.4061ms +2021-09-03 15:30:56.672 +08:00 [DBG] Execution loop Worker:f36e3ebf caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:30:56.672 +08:00 [DBG] Execution loop Worker:f36e3ebf will be retried in 00:05:00... +2021-09-03 15:30:59.241 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:30:59.241 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:30:59.241 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:30:59.243 +08:00 [INF] Successfully validated the token. +2021-09-03 15:30:59.287 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:59.287 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:30:59.287 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 46.1683ms +2021-09-03 15:31:02.232 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:31:02.233 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:31:02.233 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:31:02.235 +08:00 [INF] Successfully validated the token. +2021-09-03 15:31:02.273 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:31:02.273 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:31:02.274 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 41.4604ms +2021-09-03 15:31:05.241 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:31:05.241 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:31:05.241 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:31:05.243 +08:00 [INF] Successfully validated the token. +2021-09-03 15:31:05.292 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:31:05.292 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:31:05.292 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 51.5551ms +2021-09-03 15:31:06.204 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 15:31:06.210 +08:00 [INF] 2 servers were removed due to timeout +2021-09-03 15:31:08.232 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:31:08.233 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:31:08.233 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:31:08.235 +08:00 [INF] Successfully validated the token. +2021-09-03 15:31:08.274 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:31:08.274 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:31:08.274 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 41.9352ms +2021-09-03 15:31:09.806 +08:00 [DBG] Server szqh003802a:36708:ff6673a7 heartbeat successfully sent +2021-09-03 15:31:11.248 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:31:11.248 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:31:11.248 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:31:11.250 +08:00 [INF] Successfully validated the token. +2021-09-03 15:31:11.300 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:31:11.300 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:31:11.300 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 52.9696ms +2021-09-03 15:31:53.156 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-09-03 15:32:02.783 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-09-03 15:32:02.897 +08:00 [INF] Loaded ABP modules: +2021-09-03 15:32:02.897 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-09-03 15:32:02.897 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-09-03 15:32:02.897 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-09-03 15:32:02.897 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-09-03 15:32:02.898 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-09-03 15:32:02.898 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-09-03 15:32:02.898 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-09-03 15:32:02.898 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-09-03 15:32:02.898 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule +2021-09-03 15:32:02.898 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-09-03 15:32:02.898 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-09-03 15:32:02.898 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-09-03 15:32:02.898 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-09-03 15:32:02.898 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-09-03 15:32:02.898 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-09-03 15:32:02.898 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-09-03 15:32:02.898 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-09-03 15:32:02.898 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-09-03 15:32:02.984 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-09-03 15:32:02.987 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-09-03 15:32:03.126 +08:00 [INF] DB tables already exist. Exit install +2021-09-03 15:32:03.149 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-09-03 15:32:03.149 +08:00 [INF] Using the following options for SQL Server job storage: +2021-09-03 15:32:03.149 +08:00 [INF] Queue poll interval: 00:00:15. +2021-09-03 15:32:03.150 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-09-03 15:32:03.170 +08:00 [DBG] Execution loop BackgroundServerProcess:a56ca9bf has started in 6.3067 ms +2021-09-03 15:32:03.297 +08:00 [INF] Server szqh003802a:30900:48a48eb9 successfully announced in 115.1455 ms +2021-09-03 15:32:03.300 +08:00 [INF] Server szqh003802a:30900:48a48eb9 is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-09-03 15:32:03.301 +08:00 [DBG] Execution loop ServerHeartbeatProcess:7832a824 has started in 3.8136 ms +2021-09-03 15:32:03.303 +08:00 [DBG] Execution loop ServerWatchdog:e647ea5f has started in 3.1272 ms +2021-09-03 15:32:03.305 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:762f0f2f has started in 4.0676 ms +2021-09-03 15:32:03.308 +08:00 [DBG] Execution loop ExpirationManager:147e010c has started in 3.8952 ms +2021-09-03 15:32:03.310 +08:00 [DBG] Execution loop CountersAggregator:b4454de2 has started in 4.1148 ms +2021-09-03 15:32:03.312 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 15:32:03.312 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-09-03 15:32:03.313 +08:00 [DBG] Execution loop Worker:5d832956 has started in 5.2955 ms +2021-09-03 15:32:03.315 +08:00 [DBG] Execution loop Worker:ca4109e2 has started in 6.5981 ms +2021-09-03 15:32:03.318 +08:00 [DBG] Execution loop Worker:16c201c6 has started in 10.1356 ms +2021-09-03 15:32:03.319 +08:00 [DBG] Execution loop Worker:81f079fa has started in 11.3316 ms +2021-09-03 15:32:03.323 +08:00 [DBG] Execution loop Worker:c743cfda has started in 14.1952 ms +2021-09-03 15:32:03.325 +08:00 [DBG] Execution loop Worker:c9d59cf4 has started in 15.7236 ms +2021-09-03 15:32:03.327 +08:00 [DBG] Execution loop Worker:ec5d22cc has started in 18.0644 ms +2021-09-03 15:32:03.329 +08:00 [DBG] Execution loop Worker:141b6630 has started in 20.2319 ms +2021-09-03 15:32:03.331 +08:00 [DBG] Execution loop Worker:b96a4eee has started in 22.8436 ms +2021-09-03 15:32:03.333 +08:00 [DBG] Execution loop Worker:0588a8a9 has started in 24.419 ms +2021-09-03 15:32:03.335 +08:00 [DBG] Execution loop Worker:b09e2515 has started in 27.0293 ms +2021-09-03 15:32:03.335 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-03 15:32:03.344 +08:00 [DBG] Execution loop Worker:bf205e36 has started in 36.3726 ms +2021-09-03 15:32:03.350 +08:00 [DBG] Execution loop Worker:9f520f82 has started in 41.1177 ms +2021-09-03 15:32:03.353 +08:00 [DBG] Execution loop Worker:b4313e00 has started in 45.2307 ms +2021-09-03 15:32:03.357 +08:00 [DBG] Execution loop Worker:30688c3b has started in 49.0852 ms +2021-09-03 15:32:03.364 +08:00 [DBG] Execution loop Worker:6a769982 has started in 56.0245 ms +2021-09-03 15:32:03.371 +08:00 [DBG] Execution loop Worker:cd171810 has started in 63.3265 ms +2021-09-03 15:32:03.392 +08:00 [DBG] removed records count=0 +2021-09-03 15:32:03.392 +08:00 [DBG] Execution loop Worker:48aca99b has started in 84.1077 ms +2021-09-03 15:32:03.392 +08:00 [DBG] Execution loop Worker:138cd2e0 has started in 84.1077 ms +2021-09-03 15:32:03.396 +08:00 [DBG] Execution loop Worker:3a5962ec has started in 88.0364 ms +2021-09-03 15:32:03.400 +08:00 [DBG] Execution loop DelayedJobScheduler:fcdcf883 has started in 7.3788 ms +2021-09-03 15:32:03.401 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-09-03 15:32:03.401 +08:00 [INF] Server szqh003802a:30900:48a48eb9 all the dispatchers started +2021-09-03 15:32:03.405 +08:00 [DBG] Execution loop RecurringJobScheduler:93cac866 has started in 9.0748 ms +2021-09-03 15:32:03.422 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-09-03 15:32:03.766 +08:00 [INF] Initialized all ABP modules. +2021-09-03 15:32:03.832 +08:00 [INF] Now listening on: http://localhost:44315 +2021-09-03 15:32:03.833 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-09-03 15:32:03.833 +08:00 [INF] Hosting environment: Development +2021-09-03 15:32:03.833 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-09-03 15:32:04.104 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-09-03 15:32:05.702 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-03 15:32:05.763 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-09-03 15:32:05.798 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-09-03 15:32:05.805 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 37.5877ms +2021-09-03 15:32:05.805 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-03 15:32:05.825 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 1722.0748ms +2021-09-03 15:32:05.840 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-09-03 15:32:05.899 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 58.1327ms +2021-09-03 15:32:06.063 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-09-03 15:32:06.436 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 373.3653ms +2021-09-03 15:32:07.799 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:32:07.805 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:32:07.810 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 11.2210ms +2021-09-03 15:32:07.812 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:32:07.813 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:32:07.869 +08:00 [INF] Successfully validated the token. +2021-09-03 15:32:07.875 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:32:07.892 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:32:07.939 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:32:07.940 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 47.2899ms +2021-09-03 15:32:07.940 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:32:08.908 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:08.908 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:08.912 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 1100.1581ms +2021-09-03 15:32:18.341 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire?access_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJDb21wYW55TmFtZVByb2plY3ROYW1lIiwiaXNzIjoiQ29tcGFueU5hbWVQcm9qZWN0TmFtZSIsInN1YiI6IjM5ZmU1MmM2LTI3YTAtZDU0Yy0wYjQ3LTQxMzNmMDQ0YzhmYSIsImdpdmVuX25hbWUiOiJhZG1pbiIsIm5hbWUiOiJhZG1pbiIsImVtYWlsIjoiYWRtaW5AYWJwLmlvIiwidGVuYW50aWQiOiIiLCJyb2xlIjoiYWRtaW4iLCJuYmYiOjE2MzA2NTI3NjgsImV4cCI6MTYzMDczOTE2OCwiaWF0IjoxNjMwNjUyNzY4fQ.GgqFhLkP5lcdoy4_D8syWCZ-hr2nEhus83QDtGdsRIQ - - +2021-09-03 15:32:18.351 +08:00 [INF] Successfully validated the token. +2021-09-03 15:32:18.565 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire?access_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJDb21wYW55TmFtZVByb2plY3ROYW1lIiwiaXNzIjoiQ29tcGFueU5hbWVQcm9qZWN0TmFtZSIsInN1YiI6IjM5ZmU1MmM2LTI3YTAtZDU0Yy0wYjQ3LTQxMzNmMDQ0YzhmYSIsImdpdmVuX25hbWUiOiJhZG1pbiIsIm5hbWUiOiJhZG1pbiIsImVtYWlsIjoiYWRtaW5AYWJwLmlvIiwidGVuYW50aWQiOiIiLCJyb2xlIjoiYWRtaW4iLCJuYmYiOjE2MzA2NTI3NjgsImV4cCI6MTYzMDczOTE2OCwiaWF0IjoxNjMwNjUyNzY4fQ.GgqFhLkP5lcdoy4_D8syWCZ-hr2nEhus83QDtGdsRIQ - - - 200 - text/html 224.4257ms +2021-09-03 15:32:18.578 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - +2021-09-03 15:32:18.579 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - +2021-09-03 15:32:18.581 +08:00 [INF] Successfully validated the token. +2021-09-03 15:32:18.581 +08:00 [INF] Successfully validated the token. +2021-09-03 15:32:18.591 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - - 200 - text/css 12.8367ms +2021-09-03 15:32:18.612 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - - 200 - application/javascript 33.4846ms +2021-09-03 15:32:20.698 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:32:20.699 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:32:20.699 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:32:20.702 +08:00 [INF] Successfully validated the token. +2021-09-03 15:32:20.775 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:20.775 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:20.775 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 77.2409ms +2021-09-03 15:32:22.783 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:32:22.783 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:32:22.783 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:32:22.785 +08:00 [INF] Successfully validated the token. +2021-09-03 15:32:22.829 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:22.829 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:22.829 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 46.7840ms +2021-09-03 15:32:24.835 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:32:24.836 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:32:24.836 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:32:24.838 +08:00 [INF] Successfully validated the token. +2021-09-03 15:32:24.894 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:24.894 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:24.895 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 59.3915ms +2021-09-03 15:32:26.901 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:32:26.901 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:32:26.901 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:32:26.903 +08:00 [INF] Successfully validated the token. +2021-09-03 15:32:26.955 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:26.955 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:26.955 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 54.2841ms +2021-09-03 15:32:28.961 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:32:28.961 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:32:28.961 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:32:28.964 +08:00 [INF] Successfully validated the token. +2021-09-03 15:32:29.019 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:29.019 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:29.020 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 58.8303ms +2021-09-03 15:32:31.025 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:32:31.026 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:32:31.026 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:32:31.028 +08:00 [INF] Successfully validated the token. +2021-09-03 15:32:31.070 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:31.070 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:31.071 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 45.4308ms +2021-09-03 15:32:33.233 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:32:33.234 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:32:33.234 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:32:33.236 +08:00 [INF] Successfully validated the token. +2021-09-03 15:32:33.286 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:33.286 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:33.286 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 52.8322ms +2021-09-03 15:32:33.420 +08:00 [DBG] Server szqh003802a:30900:48a48eb9 heartbeat successfully sent +2021-09-03 15:32:36.597 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:32:37.036 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:32:37.056 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:32:38.243 +08:00 [INF] Successfully validated the token. +2021-09-03 15:32:38.459 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/abp/Swashbuckle/SetCsrfCookie application/json - +2021-09-03 15:32:38.837 +08:00 [INF] Executing endpoint 'Volo.Abp.Swashbuckle.AbpSwashbuckleController.SetCsrfCookie (Volo.Abp.Swashbuckle)' +2021-09-03 15:32:38.859 +08:00 [DBG] Execution Worker is in the Faulted state now due to an exception, execution will be retried no more than in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:32:38.859 +08:00 [DBG] Execution loop Worker:9f520f82 caught an exception and will be retried in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:32:38.859 +08:00 [DBG] Execution loop Worker:5d832956 caught an exception and will be retried in 00:00:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:32:38.859 +08:00 [DBG] Execution loop Worker:ca4109e2 caught an exception and will be retried in 00:00:09 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:32:38.859 +08:00 [DBG] Execution loop Worker:16c201c6 caught an exception and will be retried in 00:00:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:32:38.859 +08:00 [DBG] Execution loop Worker:c743cfda caught an exception and will be retried in 00:00:25 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:32:38.859 +08:00 [DBG] Execution loop Worker:ec5d22cc caught an exception and will be retried in 00:00:36 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:32:38.859 +08:00 [DBG] Execution loop Worker:0588a8a9 caught an exception and will be retried in 00:00:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:32:38.859 +08:00 [DBG] Execution loop Worker:6a769982 caught an exception and will be retried in 00:01:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:32:38.859 +08:00 [DBG] Execution loop Worker:cd171810 caught an exception and will be retried in 00:01:21 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:32:38.859 +08:00 [DBG] Execution loop Worker:138cd2e0 caught an exception and will be retried in 00:01:40 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:32:38.860 +08:00 [DBG] Execution loop Worker:81f079fa caught an exception and will be retried in 00:02:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:32:38.860 +08:00 [DBG] Execution loop Worker:9f520f82 will be retried in 00:00:01... +2021-09-03 15:32:38.860 +08:00 [DBG] Execution loop Worker:5d832956 will be retried in 00:00:04... +2021-09-03 15:32:38.860 +08:00 [DBG] Execution loop Worker:ca4109e2 will be retried in 00:00:09... +2021-09-03 15:32:38.860 +08:00 [DBG] Execution loop Worker:16c201c6 will be retried in 00:00:16... +2021-09-03 15:32:38.860 +08:00 [DBG] Execution loop Worker:c743cfda will be retried in 00:00:25... +2021-09-03 15:32:38.860 +08:00 [DBG] Execution loop Worker:0588a8a9 will be retried in 00:00:49... +2021-09-03 15:32:38.860 +08:00 [DBG] Execution loop Worker:6a769982 will be retried in 00:01:04... +2021-09-03 15:32:38.860 +08:00 [DBG] Execution loop Worker:ec5d22cc will be retried in 00:00:36... +2021-09-03 15:32:38.860 +08:00 [DBG] Execution loop Worker:cd171810 will be retried in 00:01:21... +2021-09-03 15:32:38.860 +08:00 [DBG] Execution loop Worker:138cd2e0 will be retried in 00:01:40... +2021-09-03 15:32:38.860 +08:00 [DBG] Execution loop Worker:81f079fa will be retried in 00:02:01... +2021-09-03 15:32:38.862 +08:00 [DBG] Execution loop Worker:b96a4eee caught an exception and will be retried in 00:02:24 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:32:38.862 +08:00 [DBG] Execution loop Worker:bf205e36 caught an exception and will be retried in 00:02:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:32:38.863 +08:00 [DBG] Execution loop Worker:b96a4eee will be retried in 00:02:24... +2021-09-03 15:32:38.863 +08:00 [DBG] Execution loop Worker:bf205e36 will be retried in 00:02:49... +2021-09-03 15:32:38.863 +08:00 [DBG] Execution loop Worker:141b6630 caught an exception and will be retried in 00:03:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:32:38.863 +08:00 [DBG] Execution loop Worker:141b6630 will be retried in 00:03:16... +2021-09-03 15:32:38.869 +08:00 [DBG] Execution loop Worker:48aca99b caught an exception and will be retried in 00:03:45 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:32:38.869 +08:00 [DBG] Execution loop Worker:48aca99b will be retried in 00:03:45... +2021-09-03 15:32:38.870 +08:00 [DBG] Execution loop Worker:c9d59cf4 caught an exception and will be retried in 00:04:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:32:38.870 +08:00 [DBG] Execution loop Worker:3a5962ec caught an exception and will be retried in 00:04:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:32:38.870 +08:00 [DBG] Execution loop Worker:c9d59cf4 will be retried in 00:04:16... +2021-09-03 15:32:38.870 +08:00 [DBG] Execution loop Worker:3a5962ec will be retried in 00:04:49... +2021-09-03 15:32:38.876 +08:00 [DBG] Execution loop Worker:30688c3b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:32:38.877 +08:00 [DBG] Execution loop Worker:30688c3b will be retried in 00:05:00... +2021-09-03 15:32:38.877 +08:00 [DBG] Execution loop Worker:b09e2515 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:32:38.877 +08:00 [DBG] Execution loop Worker:b09e2515 will be retried in 00:05:00... +2021-09-03 15:32:38.878 +08:00 [DBG] Execution loop Worker:b4313e00 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:32:38.879 +08:00 [DBG] Execution loop Worker:b4313e00 will be retried in 00:05:00... +2021-09-03 15:32:38.879 +08:00 [INF] Route matched with {area = "Abp", action = "SetCsrfCookie", controller = "AbpSwashbuckle", page = ""}. Executing controller action with signature Void SetCsrfCookie() on controller Volo.Abp.Swashbuckle.AbpSwashbuckleController (Volo.Abp.Swashbuckle). +2021-09-03 15:32:38.902 +08:00 [DBG] Execution RecurringJobScheduler is in the Faulted state now due to an exception, execution will be retried no more than in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:32:38.902 +08:00 [DBG] Execution loop RecurringJobScheduler:93cac866 caught an exception and will be retried in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:32:38.902 +08:00 [DBG] Execution loop RecurringJobScheduler:93cac866 will be retried in 00:00:01... +2021-09-03 15:32:38.920 +08:00 [WRN] The cookie 'XSRF-TOKEN' has set 'SameSite=None' and must also set 'Secure'. +2021-09-03 15:32:38.922 +08:00 [INF] Executed action Volo.Abp.Swashbuckle.AbpSwashbuckleController.SetCsrfCookie (Volo.Abp.Swashbuckle) in 43.3909ms +2021-09-03 15:32:38.922 +08:00 [INF] Executed endpoint 'Volo.Abp.Swashbuckle.AbpSwashbuckleController.SetCsrfCookie (Volo.Abp.Swashbuckle)' +2021-09-03 15:32:38.922 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/abp/Swashbuckle/SetCsrfCookie application/json - - 204 - - 463.7415ms +2021-09-03 15:32:38.925 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:38.925 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:38.926 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 2681.4076ms +2021-09-03 15:32:38.992 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 3 +2021-09-03 15:32:38.992 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:32:38.992 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:32:38.996 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:32:38.996 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:32:39.003 +08:00 [ERR] MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.ExpirationManager.<>c__DisplayClass9_1.b__0(MySqlConnection connection) +2021-09-03 15:32:39.004 +08:00 [DBG] Removing outdated records from table 'List'... +2021-09-03 15:32:39.005 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-09-03 15:32:39.017 +08:00 [DBG] removed records count=0 +2021-09-03 15:32:39.018 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-09-03 15:32:39.019 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-09-03 15:32:39.032 +08:00 [DBG] removed records count=0 +2021-09-03 15:32:39.033 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-09-03 15:32:39.034 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-09-03 15:32:41.969 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:32:41.969 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:32:41.969 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:32:41.973 +08:00 [INF] Successfully validated the token. +2021-09-03 15:32:42.027 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:42.027 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:42.027 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 58.9355ms +2021-09-03 15:32:43.367 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:32:43.387 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 4390.8361ms +2021-09-03 15:32:43.387 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:32:43.390 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:43.449 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:43.449 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:43.449 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 3 - 200 - application/json;+charset=utf-8 4458.1204ms +2021-09-03 15:32:44.227 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:32:44.227 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:32:44.227 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:32:44.230 +08:00 [INF] Successfully validated the token. +2021-09-03 15:32:44.270 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:44.270 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:44.270 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 43.3335ms +2021-09-03 15:32:47.236 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:32:47.236 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:32:47.236 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:32:47.238 +08:00 [INF] Successfully validated the token. +2021-09-03 15:32:47.277 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:47.277 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:47.278 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 42.1834ms +2021-09-03 15:32:50.231 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:32:50.231 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:32:50.231 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:32:50.234 +08:00 [INF] Successfully validated the token. +2021-09-03 15:32:50.272 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:50.272 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:50.272 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 41.7486ms +2021-09-03 15:32:53.222 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:32:53.222 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:32:53.222 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:32:53.224 +08:00 [INF] Successfully validated the token. +2021-09-03 15:32:53.274 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:53.275 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:53.275 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 52.9122ms +2021-09-03 15:32:56.222 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:32:56.222 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:32:56.222 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:32:56.225 +08:00 [INF] Successfully validated the token. +2021-09-03 15:32:56.264 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:56.264 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:56.264 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 42.2910ms +2021-09-03 15:32:59.226 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:32:59.227 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:32:59.227 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:32:59.229 +08:00 [INF] Successfully validated the token. +2021-09-03 15:32:59.280 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:59.280 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:32:59.280 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 53.6838ms +2021-09-03 15:33:02.220 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:33:02.220 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:33:02.220 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:33:02.222 +08:00 [INF] Successfully validated the token. +2021-09-03 15:33:02.261 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:02.261 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:02.261 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 40.9948ms +2021-09-03 15:33:03.438 +08:00 [DBG] Server szqh003802a:30900:48a48eb9 heartbeat successfully sent +2021-09-03 15:33:05.224 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:33:05.225 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:33:05.225 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:33:05.227 +08:00 [INF] Successfully validated the token. +2021-09-03 15:33:05.278 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:05.278 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:05.278 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 53.3110ms +2021-09-03 15:33:08.220 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:33:08.221 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:33:08.221 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:33:08.223 +08:00 [INF] Successfully validated the token. +2021-09-03 15:33:08.260 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:08.261 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:08.261 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 40.4198ms +2021-09-03 15:33:09.285 +08:00 [ERR] MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.ExpirationManager.<>c__DisplayClass9_1.b__0(MySqlConnection connection) +2021-09-03 15:33:11.227 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:33:11.227 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:33:11.227 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:33:11.230 +08:00 [INF] Successfully validated the token. +2021-09-03 15:33:11.278 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:11.278 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:11.279 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 51.7108ms +2021-09-03 15:33:12.196 +08:00 [ERR] Execution Worker is in the Failed state now due to an exception, execution will be retried no more than in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:33:12.196 +08:00 [DBG] Execution loop Worker:9f520f82 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:33:12.196 +08:00 [DBG] Execution loop Worker:9f520f82 will be retried in 00:05:00... +2021-09-03 15:33:12.508 +08:00 [ERR] Execution RecurringJobScheduler is in the Failed state now due to an exception, execution will be retried no more than in 00:00:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:33:12.508 +08:00 [DBG] Execution loop RecurringJobScheduler:93cac866 caught an exception and will be retried in 00:00:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:33:12.509 +08:00 [DBG] Execution loop RecurringJobScheduler:93cac866 will be retried in 00:00:04... +2021-09-03 15:33:13.307 +08:00 [DBG] Execution loop Worker:5d832956 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:33:13.307 +08:00 [DBG] Execution loop Worker:5d832956 will be retried in 00:05:00... +2021-09-03 15:33:14.227 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:33:14.227 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:33:14.227 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:33:14.229 +08:00 [INF] Successfully validated the token. +2021-09-03 15:33:14.268 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:14.268 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:14.268 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 41.3350ms +2021-09-03 15:33:17.233 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:33:17.234 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:33:17.234 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:33:17.236 +08:00 [INF] Successfully validated the token. +2021-09-03 15:33:17.276 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:17.276 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:17.276 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 42.9151ms +2021-09-03 15:33:18.159 +08:00 [DBG] Execution loop Worker:ca4109e2 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:33:18.159 +08:00 [DBG] Execution loop Worker:ca4109e2 will be retried in 00:05:00... +2021-09-03 15:33:20.230 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:33:20.230 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:33:20.230 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:33:20.232 +08:00 [INF] Successfully validated the token. +2021-09-03 15:33:20.271 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:20.271 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:20.271 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 41.1302ms +2021-09-03 15:33:23.231 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:33:23.232 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:33:23.232 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:33:23.234 +08:00 [INF] Successfully validated the token. +2021-09-03 15:33:23.271 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:23.271 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:23.272 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 40.1022ms +2021-09-03 15:33:25.180 +08:00 [DBG] Execution loop Worker:16c201c6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:33:25.180 +08:00 [DBG] Execution loop Worker:16c201c6 will be retried in 00:05:00... +2021-09-03 15:33:26.225 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:33:26.225 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:33:26.226 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:33:26.228 +08:00 [INF] Successfully validated the token. +2021-09-03 15:33:26.266 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:26.266 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:26.266 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 40.8310ms +2021-09-03 15:33:29.221 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:33:29.222 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:33:29.222 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:33:29.224 +08:00 [INF] Successfully validated the token. +2021-09-03 15:33:29.261 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:29.261 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:29.261 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 39.5031ms +2021-09-03 15:33:32.225 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:33:32.225 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:33:32.225 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:33:32.228 +08:00 [INF] Successfully validated the token. +2021-09-03 15:33:32.265 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:32.265 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:32.265 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 40.3983ms +2021-09-03 15:33:33.445 +08:00 [DBG] Server szqh003802a:30900:48a48eb9 heartbeat successfully sent +2021-09-03 15:33:34.129 +08:00 [DBG] Execution loop Worker:c743cfda caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:33:34.129 +08:00 [DBG] Execution loop Worker:c743cfda will be retried in 00:05:00... +2021-09-03 15:33:34.304 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:33:34.305 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:33:34.305 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:33:34.308 +08:00 [INF] Successfully validated the token. +2021-09-03 15:33:34.350 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:34.350 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:34.350 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 46.3705ms +2021-09-03 15:33:36.357 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:33:36.357 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:33:36.358 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:33:36.360 +08:00 [INF] Successfully validated the token. +2021-09-03 15:33:36.399 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:36.399 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:36.399 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 42.0923ms +2021-09-03 15:33:36.489 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:33:36.489 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:33:36.489 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4740ms +2021-09-03 15:33:36.490 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:33:36.491 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:33:36.493 +08:00 [INF] Successfully validated the token. +2021-09-03 15:33:36.494 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:33:36.494 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:33:36.495 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:33:36.495 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 0.7506ms +2021-09-03 15:33:36.495 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:33:36.518 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:36.519 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:36.519 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 28.3004ms +2021-09-03 15:33:38.405 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:33:38.406 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:33:38.406 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:33:38.408 +08:00 [INF] Successfully validated the token. +2021-09-03 15:33:38.446 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:38.446 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:38.446 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 41.0564ms +2021-09-03 15:33:41.220 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:33:41.220 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:33:41.220 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:33:41.223 +08:00 [INF] Successfully validated the token. +2021-09-03 15:33:41.260 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:41.260 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:41.260 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 40.3865ms +2021-09-03 15:33:44.220 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:33:44.220 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:33:44.220 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:33:44.222 +08:00 [INF] Successfully validated the token. +2021-09-03 15:33:44.260 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:44.260 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:44.260 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 40.4278ms +2021-09-03 15:33:45.146 +08:00 [DBG] Execution loop Worker:ec5d22cc caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:33:45.146 +08:00 [DBG] Execution loop Worker:ec5d22cc will be retried in 00:05:00... +2021-09-03 15:33:46.846 +08:00 [DBG] Execution loop RecurringJobScheduler:93cac866 caught an exception and will be retried in 00:00:09 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:33:46.846 +08:00 [DBG] Execution loop RecurringJobScheduler:93cac866 will be retried in 00:00:09... +2021-09-03 15:33:47.216 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:33:47.216 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:33:47.216 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:33:47.219 +08:00 [INF] Successfully validated the token. +2021-09-03 15:33:47.258 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:47.258 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:47.258 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 42.4607ms +2021-09-03 15:33:50.223 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:33:50.223 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:33:50.223 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:33:50.226 +08:00 [INF] Successfully validated the token. +2021-09-03 15:33:50.263 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:50.263 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:50.264 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 40.5474ms +2021-09-03 15:33:53.227 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:33:53.227 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:33:53.227 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:33:53.230 +08:00 [INF] Successfully validated the token. +2021-09-03 15:33:53.267 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:53.267 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:53.267 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 40.3153ms +2021-09-03 15:33:56.230 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:33:56.231 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:33:56.231 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:33:56.234 +08:00 [INF] Successfully validated the token. +2021-09-03 15:33:56.272 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:56.272 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:56.272 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 41.8711ms +2021-09-03 15:33:58.152 +08:00 [DBG] Execution loop Worker:0588a8a9 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:33:58.152 +08:00 [DBG] Execution loop Worker:0588a8a9 will be retried in 00:05:00... +2021-09-03 15:33:59.222 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:33:59.222 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:33:59.222 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:33:59.224 +08:00 [INF] Successfully validated the token. +2021-09-03 15:33:59.261 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:59.261 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:33:59.262 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 39.9011ms +2021-09-03 15:34:02.226 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:34:02.226 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:34:02.226 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:34:02.229 +08:00 [INF] Successfully validated the token. +2021-09-03 15:34:02.267 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:02.267 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:02.267 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 41.0408ms +2021-09-03 15:34:03.476 +08:00 [DBG] Server szqh003802a:30900:48a48eb9 heartbeat successfully sent +2021-09-03 15:34:05.223 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:34:05.223 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:34:05.224 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:34:05.226 +08:00 [INF] Successfully validated the token. +2021-09-03 15:34:05.273 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:05.274 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:05.274 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 50.5647ms +2021-09-03 15:34:08.217 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:34:08.217 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:34:08.217 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:34:08.220 +08:00 [INF] Successfully validated the token. +2021-09-03 15:34:08.260 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:08.260 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:08.260 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 43.0900ms +2021-09-03 15:34:11.226 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:34:11.227 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:34:11.227 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:34:11.229 +08:00 [INF] Successfully validated the token. +2021-09-03 15:34:11.267 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:11.267 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:11.267 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 41.0571ms +2021-09-03 15:34:13.199 +08:00 [DBG] Execution loop Worker:6a769982 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:34:13.199 +08:00 [DBG] Execution loop Worker:6a769982 will be retried in 00:05:00... +2021-09-03 15:34:13.586 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:34:13.586 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:34:13.586 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:34:13.589 +08:00 [INF] Successfully validated the token. +2021-09-03 15:34:13.652 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:13.652 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:13.652 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 66.4668ms +2021-09-03 15:34:16.223 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:34:16.223 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:34:16.223 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:34:16.225 +08:00 [INF] Successfully validated the token. +2021-09-03 15:34:16.264 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:16.264 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:16.264 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 41.2912ms +2021-09-03 15:34:19.222 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:34:19.223 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:34:19.223 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 1.0207ms +2021-09-03 15:34:19.224 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:34:19.225 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:34:19.228 +08:00 [INF] Successfully validated the token. +2021-09-03 15:34:19.229 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:34:19.230 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:34:19.230 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:34:19.231 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 0.9388ms +2021-09-03 15:34:19.231 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:34:19.232 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:34:19.233 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:34:19.233 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:34:19.238 +08:00 [INF] Successfully validated the token. +2021-09-03 15:34:19.256 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:19.256 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:19.257 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 32.1488ms +2021-09-03 15:34:19.300 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:19.300 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:19.300 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 67.7465ms +2021-09-03 15:34:22.224 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:34:22.224 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:34:22.224 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:34:22.227 +08:00 [INF] Successfully validated the token. +2021-09-03 15:34:22.276 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:22.276 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:22.276 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 51.9868ms +2021-09-03 15:34:25.216 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:34:25.217 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:34:25.217 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:34:25.219 +08:00 [INF] Successfully validated the token. +2021-09-03 15:34:25.257 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:25.258 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:25.258 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 41.4816ms +2021-09-03 15:34:26.212 +08:00 [DBG] Execution loop RecurringJobScheduler:93cac866 caught an exception and will be retried in 00:00:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:34:26.213 +08:00 [DBG] Execution loop RecurringJobScheduler:93cac866 will be retried in 00:00:16... +2021-09-03 15:34:28.225 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:34:28.225 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:34:28.225 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:34:28.228 +08:00 [INF] Successfully validated the token. +2021-09-03 15:34:28.278 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:28.278 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:28.278 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 53.1729ms +2021-09-03 15:34:30.144 +08:00 [DBG] Execution loop Worker:cd171810 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:34:30.144 +08:00 [DBG] Execution loop Worker:cd171810 will be retried in 00:05:00... +2021-09-03 15:34:31.225 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:34:31.226 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:34:31.226 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:34:31.228 +08:00 [INF] Successfully validated the token. +2021-09-03 15:34:31.278 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:31.278 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:31.278 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 53.0851ms +2021-09-03 15:34:33.503 +08:00 [DBG] Server szqh003802a:30900:48a48eb9 heartbeat successfully sent +2021-09-03 15:34:34.217 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:34:34.218 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:34:34.218 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:34:34.220 +08:00 [INF] Successfully validated the token. +2021-09-03 15:34:34.260 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:34.260 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:34.261 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 43.1419ms +2021-09-03 15:34:36.266 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:34:36.267 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:34:36.267 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:34:36.269 +08:00 [INF] Successfully validated the token. +2021-09-03 15:34:36.311 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:36.311 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:36.312 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 45.2783ms +2021-09-03 15:34:37.692 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Roles/page - - +2021-09-03 15:34:37.692 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:34:37.693 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Roles/page - - - 204 - - 0.9295ms +2021-09-03 15:34:37.694 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Roles/page application/json 24 +2021-09-03 15:34:37.695 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:34:37.697 +08:00 [INF] Successfully validated the token. +2021-09-03 15:34:37.929 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-09-03 15:34:37.935 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-09-03 15:34:37.941 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles +2021-09-03 15:34:37.944 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles +2021-09-03 15:34:37.948 +08:00 [INF] Authorization was successful. +2021-09-03 15:34:37.950 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:34:37.953 +08:00 [INF] Route matched with {action = "List", controller = "Role", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityRoleDto]] ListAsync(CompanyName.ProjectName.Roles.Dtos.PagingRoleListInput) on controller CompanyName.ProjectName.Controllers.Systems.RoleController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:34:38.421 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityRoleDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:34:38.426 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi) in 473.0738ms +2021-09-03 15:34:38.426 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:34:38.434 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:38.473 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:38.473 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:38.474 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Roles/page application/json 24 - 200 - application/json;+charset=utf-8 779.7641ms +2021-09-03 15:34:39.217 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:34:39.218 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:34:39.218 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:34:39.220 +08:00 [INF] Successfully validated the token. +2021-09-03 15:34:39.260 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:39.260 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:39.260 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 42.3873ms +2021-09-03 15:34:42.225 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:34:42.226 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:34:42.226 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:34:42.228 +08:00 [INF] Successfully validated the token. +2021-09-03 15:34:42.272 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:42.272 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:42.272 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 46.5956ms +2021-09-03 15:34:45.216 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:34:45.216 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:34:45.216 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:34:45.218 +08:00 [INF] Successfully validated the token. +2021-09-03 15:34:45.257 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:45.257 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:45.257 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 41.1088ms +2021-09-03 15:34:48.227 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:34:48.227 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:34:48.227 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:34:48.229 +08:00 [INF] Successfully validated the token. +2021-09-03 15:34:48.268 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:48.268 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:48.268 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 41.5346ms +2021-09-03 15:34:49.148 +08:00 [DBG] Execution loop Worker:138cd2e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:34:49.149 +08:00 [DBG] Execution loop Worker:138cd2e0 will be retried in 00:05:00... +2021-09-03 15:34:51.220 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:34:51.221 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:34:51.221 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:34:51.223 +08:00 [INF] Successfully validated the token. +2021-09-03 15:34:51.264 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:51.264 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:51.264 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 43.6442ms +2021-09-03 15:34:54.228 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:34:54.228 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:34:54.228 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:34:54.230 +08:00 [INF] Successfully validated the token. +2021-09-03 15:34:54.281 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:54.281 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:54.281 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 53.7964ms +2021-09-03 15:34:56.294 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:34:56.294 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:34:56.294 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:34:56.296 +08:00 [INF] Successfully validated the token. +2021-09-03 15:34:56.347 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:56.347 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:56.347 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 53.7785ms +2021-09-03 15:34:59.221 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:34:59.221 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:34:59.221 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:34:59.224 +08:00 [INF] Successfully validated the token. +2021-09-03 15:34:59.262 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:59.262 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:34:59.262 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 41.6660ms +2021-09-03 15:35:02.215 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:35:02.215 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:35:02.215 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:35:02.218 +08:00 [INF] Successfully validated the token. +2021-09-03 15:35:02.259 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:35:02.259 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:35:02.259 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 43.8995ms +2021-09-03 15:35:03.583 +08:00 [DBG] Server szqh003802a:30900:48a48eb9 heartbeat successfully sent +2021-09-03 15:35:05.219 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:35:05.219 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:35:05.219 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:35:05.221 +08:00 [INF] Successfully validated the token. +2021-09-03 15:35:05.259 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:35:05.259 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:35:05.259 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 40.7053ms +2021-09-03 15:35:08.226 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:35:08.227 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:35:08.227 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:35:08.229 +08:00 [INF] Successfully validated the token. +2021-09-03 15:35:08.268 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:35:08.268 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:35:08.269 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 42.2386ms +2021-09-03 15:35:10.151 +08:00 [DBG] Execution loop Worker:81f079fa caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:35:10.151 +08:00 [DBG] Execution loop Worker:81f079fa will be retried in 00:05:00... +2021-09-03 15:35:11.221 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:35:11.222 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:35:11.222 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:35:11.224 +08:00 [INF] Successfully validated the token. +2021-09-03 15:35:11.263 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:35:11.263 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:35:11.264 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 42.3271ms +2021-09-03 15:35:12.557 +08:00 [DBG] Execution loop RecurringJobScheduler:93cac866 caught an exception and will be retried in 00:00:25 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:35:12.557 +08:00 [DBG] Execution loop RecurringJobScheduler:93cac866 will be retried in 00:00:25... +2021-09-03 15:35:14.213 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:35:14.213 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:35:14.213 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:35:14.216 +08:00 [INF] Successfully validated the token. +2021-09-03 15:35:14.257 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:35:14.257 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:35:14.257 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 44.3530ms +2021-09-03 15:35:17.224 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:35:17.224 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:35:17.224 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:35:17.227 +08:00 [INF] Successfully validated the token. +2021-09-03 15:35:17.265 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:35:17.265 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:35:17.265 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 41.1546ms +2021-09-03 15:35:23.406 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:35:23.407 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:35:23.407 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 1.1065ms +2021-09-03 15:35:23.413 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-03 15:35:23.414 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:35:23.419 +08:00 [INF] Successfully validated the token. +2021-09-03 15:35:23.421 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:35:23.426 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:35:24.356 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:35:24.365 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 939.1931ms +2021-09-03 15:35:24.365 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:35:24.386 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:35:24.422 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:35:24.422 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:35:24.422 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 1009.9490ms +2021-09-03 15:35:33.190 +08:00 [DBG] Execution loop Worker:b96a4eee caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:35:33.191 +08:00 [DBG] Execution loop Worker:b96a4eee will be retried in 00:05:00... +2021-09-03 15:35:33.621 +08:00 [DBG] Server szqh003802a:30900:48a48eb9 heartbeat successfully sent +2021-09-03 15:35:43.854 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:35:43.855 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:35:43.855 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4231ms +2021-09-03 15:35:43.856 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:35:43.856 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:35:43.859 +08:00 [INF] Successfully validated the token. +2021-09-03 15:35:43.860 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:35:43.860 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:35:43.861 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:35:43.861 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 0.6636ms +2021-09-03 15:35:43.861 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:35:43.883 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:35:43.883 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:35:43.883 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 27.2411ms +2021-09-03 15:35:58.162 +08:00 [DBG] Execution loop Worker:bf205e36 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:35:58.162 +08:00 [DBG] Execution loop Worker:bf205e36 will be retried in 00:05:00... +2021-09-03 15:36:03.640 +08:00 [DBG] Server szqh003802a:30900:48a48eb9 heartbeat successfully sent +2021-09-03 15:36:07.880 +08:00 [DBG] Execution loop RecurringJobScheduler:93cac866 caught an exception and will be retried in 00:00:36 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:36:07.880 +08:00 [DBG] Execution loop RecurringJobScheduler:93cac866 will be retried in 00:00:36... +2021-09-03 15:36:21.588 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:36:21.588 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:36:21.588 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.6300ms +2021-09-03 15:36:21.595 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-03 15:36:21.595 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:36:21.599 +08:00 [INF] Successfully validated the token. +2021-09-03 15:36:21.601 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:36:21.601 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:36:21.651 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:36:21.651 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 49.8103ms +2021-09-03 15:36:21.651 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:36:21.657 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:36:21.695 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:36:21.695 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:36:21.695 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 100.2973ms +2021-09-03 15:36:25.139 +08:00 [DBG] Execution loop Worker:141b6630 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:36:25.139 +08:00 [DBG] Execution loop Worker:141b6630 will be retried in 00:05:00... +2021-09-03 15:36:33.670 +08:00 [DBG] Server szqh003802a:30900:48a48eb9 heartbeat successfully sent +2021-09-03 15:36:54.173 +08:00 [DBG] Execution loop Worker:48aca99b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:36:54.173 +08:00 [DBG] Execution loop Worker:48aca99b will be retried in 00:05:00... +2021-09-03 15:36:54.286 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:36:54.287 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:36:54.287 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.6583ms +2021-09-03 15:36:54.290 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-03 15:36:54.290 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:36:54.293 +08:00 [INF] Successfully validated the token. +2021-09-03 15:36:54.294 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:36:54.294 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:36:54.337 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:36:54.338 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 43.6657ms +2021-09-03 15:36:54.338 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:36:54.343 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:36:54.376 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:36:54.376 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:36:54.376 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 86.5638ms +2021-09-03 15:37:00.846 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:37:00.846 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:37:00.847 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4229ms +2021-09-03 15:37:00.848 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:37:00.848 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:37:00.851 +08:00 [INF] Successfully validated the token. +2021-09-03 15:37:00.852 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:37:00.852 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:37:00.853 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:37:00.853 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 0.5833ms +2021-09-03 15:37:00.853 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:37:00.878 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:37:00.878 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:37:00.878 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 30.0041ms +2021-09-03 15:37:03.358 +08:00 [INF] 1 servers were removed due to timeout +2021-09-03 15:37:03.366 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 15:37:03.716 +08:00 [DBG] Server szqh003802a:30900:48a48eb9 heartbeat successfully sent +2021-09-03 15:37:10.264 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:37:10.265 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:37:10.265 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5281ms +2021-09-03 15:37:10.267 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-03 15:37:10.267 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:37:10.272 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:37:10.272 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:37:10.307 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:37:10.308 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 35.8209ms +2021-09-03 15:37:10.308 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:37:10.312 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:37:10.340 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:37:10.340 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:37:10.340 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 73.7639ms +2021-09-03 15:37:11.183 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:37:11.183 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:37:11.186 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:37:11.186 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:37:11.187 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:37:11.187 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 0.7797ms +2021-09-03 15:37:11.187 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:37:11.214 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:37:11.214 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:37:11.214 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 31.8183ms +2021-09-03 15:37:14.204 +08:00 [DBG] Execution loop RecurringJobScheduler:93cac866 caught an exception and will be retried in 00:00:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:37:14.204 +08:00 [DBG] Execution loop RecurringJobScheduler:93cac866 will be retried in 00:00:49... +2021-09-03 15:37:22.285 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:37:22.286 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:37:22.286 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.8349ms +2021-09-03 15:37:22.288 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-03 15:37:22.288 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:37:22.292 +08:00 [INF] Successfully validated the token. +2021-09-03 15:37:22.293 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:37:22.294 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:37:22.333 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:37:22.334 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 40.0261ms +2021-09-03 15:37:22.334 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:37:22.340 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:37:22.382 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:37:22.382 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:37:22.382 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 94.1450ms +2021-09-03 15:37:22.399 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:37:22.400 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:37:22.400 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.5137ms +2021-09-03 15:37:22.405 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:37:22.405 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:37:22.409 +08:00 [INF] Successfully validated the token. +2021-09-03 15:37:22.411 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:37:22.411 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:37:22.412 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:37:22.412 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 0.8886ms +2021-09-03 15:37:22.412 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:37:22.440 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:37:22.440 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:37:22.440 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 35.6589ms +2021-09-03 15:37:25.140 +08:00 [DBG] Execution loop Worker:c9d59cf4 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:37:25.140 +08:00 [DBG] Execution loop Worker:c9d59cf4 will be retried in 00:05:00... +2021-09-03 15:37:33.730 +08:00 [DBG] Server szqh003802a:30900:48a48eb9 heartbeat successfully sent +2021-09-03 15:37:58.115 +08:00 [DBG] Execution loop Worker:3a5962ec caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:37:58.115 +08:00 [DBG] Execution loop Worker:3a5962ec will be retried in 00:05:00... +2021-09-03 15:38:03.747 +08:00 [DBG] Server szqh003802a:30900:48a48eb9 heartbeat successfully sent +2021-09-03 15:38:09.590 +08:00 [DBG] Execution loop Worker:b4313e00 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:38:09.590 +08:00 [DBG] Execution loop Worker:b4313e00 will be retried in 00:05:00... +2021-09-03 15:38:09.595 +08:00 [DBG] Execution loop Worker:b09e2515 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:38:09.595 +08:00 [DBG] Execution loop Worker:b09e2515 will be retried in 00:05:00... +2021-09-03 15:38:09.597 +08:00 [DBG] Execution loop Worker:30688c3b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:38:09.597 +08:00 [DBG] Execution loop Worker:30688c3b will be retried in 00:05:00... +2021-09-03 15:38:33.551 +08:00 [DBG] Execution loop RecurringJobScheduler:93cac866 caught an exception and will be retried in 00:01:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:38:33.552 +08:00 [DBG] Execution loop RecurringJobScheduler:93cac866 will be retried in 00:01:04... +2021-09-03 15:38:33.770 +08:00 [DBG] Server szqh003802a:30900:48a48eb9 heartbeat successfully sent +2021-09-03 15:38:42.448 +08:00 [DBG] Execution loop Worker:9f520f82 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:38:42.448 +08:00 [DBG] Execution loop Worker:9f520f82 will be retried in 00:05:00... +2021-09-03 15:38:43.552 +08:00 [DBG] Execution loop Worker:5d832956 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:38:43.552 +08:00 [DBG] Execution loop Worker:5d832956 will be retried in 00:05:00... +2021-09-03 15:38:45.374 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire?access_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJDb21wYW55TmFtZVByb2plY3ROYW1lIiwiaXNzIjoiQ29tcGFueU5hbWVQcm9qZWN0TmFtZSIsInN1YiI6IjM5ZmU1MmM2LTI3YTAtZDU0Yy0wYjQ3LTQxMzNmMDQ0YzhmYSIsImdpdmVuX25hbWUiOiJhZG1pbiIsIm5hbWUiOiJhZG1pbiIsImVtYWlsIjoiYWRtaW5AYWJwLmlvIiwidGVuYW50aWQiOiIiLCJyb2xlIjoiYWRtaW4iLCJuYmYiOjE2MzA2NTI3NjgsImV4cCI6MTYzMDczOTE2OCwiaWF0IjoxNjMwNjUyNzY4fQ.GgqFhLkP5lcdoy4_D8syWCZ-hr2nEhus83QDtGdsRIQ - - +2021-09-03 15:38:45.378 +08:00 [INF] Successfully validated the token. +2021-09-03 15:38:45.416 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire?access_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJDb21wYW55TmFtZVByb2plY3ROYW1lIiwiaXNzIjoiQ29tcGFueU5hbWVQcm9qZWN0TmFtZSIsInN1YiI6IjM5ZmU1MmM2LTI3YTAtZDU0Yy0wYjQ3LTQxMzNmMDQ0YzhmYSIsImdpdmVuX25hbWUiOiJhZG1pbiIsIm5hbWUiOiJhZG1pbiIsImVtYWlsIjoiYWRtaW5AYWJwLmlvIiwidGVuYW50aWQiOiIiLCJyb2xlIjoiYWRtaW4iLCJuYmYiOjE2MzA2NTI3NjgsImV4cCI6MTYzMDczOTE2OCwiaWF0IjoxNjMwNjUyNzY4fQ.GgqFhLkP5lcdoy4_D8syWCZ-hr2nEhus83QDtGdsRIQ - - - 200 - text/html 42.2796ms +2021-09-03 15:38:45.450 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - +2021-09-03 15:38:45.451 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - +2021-09-03 15:38:45.453 +08:00 [INF] Successfully validated the token. +2021-09-03 15:38:45.454 +08:00 [INF] Successfully validated the token. +2021-09-03 15:38:45.458 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - - 200 - text/css 8.6752ms +2021-09-03 15:38:45.475 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - - 200 - application/javascript 24.0348ms +2021-09-03 15:38:45.660 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - +2021-09-03 15:38:45.660 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:38:45.660 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:38:45.663 +08:00 [INF] Successfully validated the token. +2021-09-03 15:38:45.665 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - - 200 - font/woff2 4.6052ms +2021-09-03 15:38:47.308 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/recurring - - +2021-09-03 15:38:47.311 +08:00 [INF] Successfully validated the token. +2021-09-03 15:38:47.374 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/recurring - - - 200 - text/html 65.3475ms +2021-09-03 15:38:47.397 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - +2021-09-03 15:38:47.398 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - +2021-09-03 15:38:47.401 +08:00 [INF] Successfully validated the token. +2021-09-03 15:38:47.401 +08:00 [INF] Successfully validated the token. +2021-09-03 15:38:47.409 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - - 200 - text/css 12.0416ms +2021-09-03 15:38:47.419 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - - 200 - application/javascript 21.7765ms +2021-09-03 15:38:47.443 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:38:47.444 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:38:47.444 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.7356ms +2021-09-03 15:38:47.447 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:38:47.448 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:38:47.452 +08:00 [INF] Successfully validated the token. +2021-09-03 15:38:47.454 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:38:47.454 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:38:47.455 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:38:47.455 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 1.0501ms +2021-09-03 15:38:47.455 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:38:47.474 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:38:47.475 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:38:47.476 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 1.7398ms +2021-09-03 15:38:47.481 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-03 15:38:47.481 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:38:47.485 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:38:47.485 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:38:47.485 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 38.1347ms +2021-09-03 15:38:47.487 +08:00 [INF] Successfully validated the token. +2021-09-03 15:38:47.489 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:38:47.489 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:38:47.527 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - +2021-09-03 15:38:47.528 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:38:47.528 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:38:47.538 +08:00 [INF] Successfully validated the token. +2021-09-03 15:38:47.543 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:38:47.543 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - - 200 - font/woff2 16.3047ms +2021-09-03 15:38:47.544 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 54.5337ms +2021-09-03 15:38:47.544 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:38:47.551 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:38:47.583 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:38:47.584 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:38:47.584 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 103.1139ms +2021-09-03 15:38:48.427 +08:00 [DBG] Execution loop Worker:ca4109e2 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:38:48.427 +08:00 [DBG] Execution loop Worker:ca4109e2 will be retried in 00:05:00... +2021-09-03 15:38:50.303 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/recurring/remove application/x-www-form-urlencoded;+charset=UTF-8 32 +2021-09-03 15:38:50.303 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:38:50.303 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:38:50.305 +08:00 [INF] Successfully validated the token. +2021-09-03 15:38:50.306 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 +2021-09-03 15:38:50.306 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:38:50.306 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:38:50.308 +08:00 [INF] Successfully validated the token. +2021-09-03 15:38:50.346 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:38:50.346 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:38:50.346 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 - 200 - application/json 40.8925ms +2021-09-03 15:38:52.365 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 +2021-09-03 15:38:52.365 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:38:52.365 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:38:52.367 +08:00 [INF] Successfully validated the token. +2021-09-03 15:38:52.404 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:38:52.404 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:38:52.405 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 - 200 - application/json 39.7453ms +2021-09-03 15:38:54.411 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 +2021-09-03 15:38:54.412 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:38:54.412 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:38:54.414 +08:00 [INF] Successfully validated the token. +2021-09-03 15:38:54.451 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:38:54.451 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:38:54.451 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 167 - 200 - application/json 39.9298ms +2021-09-03 15:38:55.461 +08:00 [DBG] Execution loop Worker:16c201c6 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:38:55.461 +08:00 [DBG] Execution loop Worker:16c201c6 will be retried in 00:05:00... +2021-09-03 15:38:56.472 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire?access_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJDb21wYW55TmFtZVByb2plY3ROYW1lIiwiaXNzIjoiQ29tcGFueU5hbWVQcm9qZWN0TmFtZSIsInN1YiI6IjM5ZmU1MmM2LTI3YTAtZDU0Yy0wYjQ3LTQxMzNmMDQ0YzhmYSIsImdpdmVuX25hbWUiOiJhZG1pbiIsIm5hbWUiOiJhZG1pbiIsImVtYWlsIjoiYWRtaW5AYWJwLmlvIiwidGVuYW50aWQiOiIiLCJyb2xlIjoiYWRtaW4iLCJuYmYiOjE2MzA2NTI3NjgsImV4cCI6MTYzMDczOTE2OCwiaWF0IjoxNjMwNjUyNzY4fQ.GgqFhLkP5lcdoy4_D8syWCZ-hr2nEhus83QDtGdsRIQ - - +2021-09-03 15:38:56.475 +08:00 [INF] Successfully validated the token. +2021-09-03 15:38:56.510 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire?access_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJDb21wYW55TmFtZVByb2plY3ROYW1lIiwiaXNzIjoiQ29tcGFueU5hbWVQcm9qZWN0TmFtZSIsInN1YiI6IjM5ZmU1MmM2LTI3YTAtZDU0Yy0wYjQ3LTQxMzNmMDQ0YzhmYSIsImdpdmVuX25hbWUiOiJhZG1pbiIsIm5hbWUiOiJhZG1pbiIsImVtYWlsIjoiYWRtaW5AYWJwLmlvIiwidGVuYW50aWQiOiIiLCJyb2xlIjoiYWRtaW4iLCJuYmYiOjE2MzA2NTI3NjgsImV4cCI6MTYzMDczOTE2OCwiaWF0IjoxNjMwNjUyNzY4fQ.GgqFhLkP5lcdoy4_D8syWCZ-hr2nEhus83QDtGdsRIQ - - - 200 - text/html 37.2954ms +2021-09-03 15:38:56.585 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - +2021-09-03 15:38:56.587 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - +2021-09-03 15:38:56.590 +08:00 [INF] Successfully validated the token. +2021-09-03 15:38:56.590 +08:00 [INF] Successfully validated the token. +2021-09-03 15:38:56.602 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - - 200 - text/css 16.8008ms +2021-09-03 15:38:56.611 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - - 200 - application/javascript 24.1915ms +2021-09-03 15:38:56.707 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - +2021-09-03 15:38:56.707 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:38:56.707 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:38:56.709 +08:00 [INF] Successfully validated the token. +2021-09-03 15:38:56.711 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - - 200 - font/woff2 4.2839ms +2021-09-03 15:38:58.708 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:38:58.708 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:38:58.708 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:38:58.711 +08:00 [INF] Successfully validated the token. +2021-09-03 15:38:58.765 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:38:58.765 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:38:58.766 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 57.7101ms +2021-09-03 15:38:59.462 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Roles/page - - +2021-09-03 15:38:59.462 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:38:59.462 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Roles/page - - - 204 - - 0.4451ms +2021-09-03 15:38:59.464 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Roles/page application/json 24 +2021-09-03 15:38:59.464 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:38:59.466 +08:00 [INF] Successfully validated the token. +2021-09-03 15:38:59.467 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-09-03 15:38:59.470 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-09-03 15:38:59.471 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles +2021-09-03 15:38:59.473 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles +2021-09-03 15:38:59.473 +08:00 [INF] Authorization was successful. +2021-09-03 15:38:59.474 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:38:59.474 +08:00 [INF] Route matched with {action = "List", controller = "Role", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityRoleDto]] ListAsync(CompanyName.ProjectName.Roles.Dtos.PagingRoleListInput) on controller CompanyName.ProjectName.Controllers.Systems.RoleController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:38:59.502 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityRoleDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:38:59.504 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi) in 29.6362ms +2021-09-03 15:38:59.504 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:38:59.507 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:38:59.534 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:38:59.534 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:38:59.534 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Roles/page application/json 24 - 200 - application/json;+charset=utf-8 70.3427ms +2021-09-03 15:39:00.789 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:39:00.789 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:39:00.789 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:39:00.791 +08:00 [INF] Successfully validated the token. +2021-09-03 15:39:00.842 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:00.842 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:00.842 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 53.8179ms +2021-09-03 15:39:01.187 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:39:01.187 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:39:01.188 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.5164ms +2021-09-03 15:39:01.189 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:39:01.189 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:39:01.191 +08:00 [INF] Successfully validated the token. +2021-09-03 15:39:01.193 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:39:01.193 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:39:01.193 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:39:01.193 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 0.5854ms +2021-09-03 15:39:01.193 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:39:01.225 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:01.225 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:01.226 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 36.5285ms +2021-09-03 15:39:02.711 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Roles/page application/json 24 +2021-09-03 15:39:02.712 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:39:02.714 +08:00 [INF] Successfully validated the token. +2021-09-03 15:39:02.714 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-09-03 15:39:02.718 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-09-03 15:39:02.718 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles +2021-09-03 15:39:02.720 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles +2021-09-03 15:39:02.720 +08:00 [INF] Authorization was successful. +2021-09-03 15:39:02.722 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:39:02.722 +08:00 [INF] Route matched with {action = "List", controller = "Role", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityRoleDto]] ListAsync(CompanyName.ProjectName.Roles.Dtos.PagingRoleListInput) on controller CompanyName.ProjectName.Controllers.Systems.RoleController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:39:02.748 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityRoleDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:39:02.750 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi) in 28.057ms +2021-09-03 15:39:02.750 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:39:02.753 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:02.791 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:02.791 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:02.791 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Roles/page application/json 24 - 200 - application/json;+charset=utf-8 79.9516ms +2021-09-03 15:39:02.853 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:39:02.853 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:39:02.853 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:39:02.856 +08:00 [INF] Successfully validated the token. +2021-09-03 15:39:02.894 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:02.894 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:02.894 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 41.5414ms +2021-09-03 15:39:03.869 +08:00 [DBG] Server szqh003802a:30900:48a48eb9 heartbeat successfully sent +2021-09-03 15:39:03.946 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-09-03 15:39:03.946 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:39:03.946 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5785ms +2021-09-03 15:39:03.948 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 +2021-09-03 15:39:03.949 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:39:03.951 +08:00 [INF] Successfully validated the token. +2021-09-03 15:39:03.953 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-03 15:39:03.955 +08:00 [DBG] Not found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-03 15:39:03.957 +08:00 [DBG] Getting all granted permissions from the repository for this provider name,key: U,39fe52c6-27a0-d54c-0b47-4133f044c8fa +2021-09-03 15:39:03.989 +08:00 [DBG] Setting the cache items. Count: 22 +2021-09-03 15:39:04.010 +08:00 [DBG] Finished setting the cache items. Count: 22 +2021-09-03 15:39:04.010 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-03 15:39:04.012 +08:00 [DBG] Not found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-03 15:39:04.012 +08:00 [DBG] Getting all granted permissions from the repository for this provider name,key: R,admin +2021-09-03 15:39:04.036 +08:00 [DBG] Setting the cache items. Count: 22 +2021-09-03 15:39:04.042 +08:00 [DBG] Finished setting the cache items. Count: 22 +2021-09-03 15:39:04.042 +08:00 [INF] Authorization was successful. +2021-09-03 15:39:04.043 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:39:04.046 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-09-03 15:39:04.431 +08:00 [DBG] Execution loop Worker:c743cfda caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:39:04.431 +08:00 [DBG] Execution loop Worker:c743cfda will be retried in 00:05:00... +2021-09-03 15:39:04.904 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:39:04.904 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:39:04.905 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:39:04.907 +08:00 [INF] Successfully validated the token. +2021-09-03 15:39:04.953 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:04.953 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:04.953 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 49.0623ms +2021-09-03 15:39:04.956 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:39:04.964 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 918.2331ms +2021-09-03 15:39:04.964 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:39:04.979 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:05.006 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:05.006 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:05.008 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 - 200 - application/json;+charset=utf-8 1059.8288ms +2021-09-03 15:39:06.960 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:39:06.960 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:39:06.960 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:39:06.963 +08:00 [INF] Successfully validated the token. +2021-09-03 15:39:07.011 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:07.011 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:07.011 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 50.9259ms +2021-09-03 15:39:07.114 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-03 15:39:07.115 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:39:07.115 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.7161ms +2021-09-03 15:39:07.116 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-03 15:39:07.118 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:39:07.121 +08:00 [INF] Successfully validated the token. +2021-09-03 15:39:07.123 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:39:07.126 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:39:07.417 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:39:07.429 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 303.2434ms +2021-09-03 15:39:07.429 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:39:07.450 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:07.477 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:07.477 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:07.478 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 361.5417ms +2021-09-03 15:39:08.794 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:39:08.794 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:39:08.794 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4383ms +2021-09-03 15:39:08.796 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-03 15:39:08.796 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:39:08.798 +08:00 [INF] Successfully validated the token. +2021-09-03 15:39:08.800 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:39:08.800 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:39:08.835 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:39:08.836 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 36.0623ms +2021-09-03 15:39:08.836 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:39:08.840 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:08.867 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:08.867 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:08.867 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 71.5969ms +2021-09-03 15:39:09.017 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:39:09.017 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:39:09.017 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:39:09.020 +08:00 [INF] Successfully validated the token. +2021-09-03 15:39:09.059 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:09.059 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:09.059 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 41.9341ms +2021-09-03 15:39:10.259 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-09-03 15:39:10.259 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:39:10.259 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.6057ms +2021-09-03 15:39:10.261 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-03 15:39:10.261 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:39:10.264 +08:00 [INF] Successfully validated the token. +2021-09-03 15:39:10.265 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:39:10.267 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:39:10.563 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:39:10.565 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 298.1231ms +2021-09-03 15:39:10.565 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:39:10.574 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:10.609 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:10.609 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:10.609 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 348.0715ms +2021-09-03 15:39:11.143 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:39:11.144 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:39:11.144 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:39:11.146 +08:00 [INF] Successfully validated the token. +2021-09-03 15:39:11.200 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:11.200 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:11.201 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 57.3288ms +2021-09-03 15:39:12.089 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-03 15:39:12.089 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:39:12.090 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.6743ms +2021-09-03 15:39:12.091 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-03 15:39:12.092 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:39:12.094 +08:00 [INF] Successfully validated the token. +2021-09-03 15:39:12.095 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:39:12.097 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:39:12.408 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:39:12.410 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 312.7057ms +2021-09-03 15:39:12.410 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:39:12.419 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:12.445 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:12.445 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:12.445 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 354.0478ms +2021-09-03 15:39:13.207 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:39:13.207 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:39:13.207 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:39:13.210 +08:00 [INF] Successfully validated the token. +2021-09-03 15:39:13.250 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:13.250 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:13.250 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 43.1939ms +2021-09-03 15:39:15.271 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:39:15.292 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:39:15.292 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:39:15.407 +08:00 [INF] Successfully validated the token. +2021-09-03 15:39:15.411 +08:00 [DBG] Execution loop Worker:ec5d22cc caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:39:15.411 +08:00 [DBG] Execution loop Worker:ec5d22cc will be retried in 00:05:00... +2021-09-03 15:39:15.449 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:15.450 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:15.450 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 179.0848ms +2021-09-03 15:39:15.701 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:39:15.702 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:39:15.702 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4581ms +2021-09-03 15:39:15.703 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:39:15.704 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:39:15.706 +08:00 [INF] Successfully validated the token. +2021-09-03 15:39:15.707 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:39:15.708 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:39:15.708 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:39:15.708 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 0.6986ms +2021-09-03 15:39:15.708 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:39:15.729 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:15.729 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:15.730 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 26.1478ms +2021-09-03 15:39:17.457 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:39:17.457 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:39:17.457 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:39:17.459 +08:00 [INF] Successfully validated the token. +2021-09-03 15:39:17.498 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:17.498 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:17.498 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 41.4722ms +2021-09-03 15:39:19.506 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:39:19.506 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:39:19.506 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:39:19.508 +08:00 [INF] Successfully validated the token. +2021-09-03 15:39:19.545 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:19.545 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:19.545 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 39.6099ms +2021-09-03 15:39:20.918 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:20.918 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:20.921 +08:00 [ERR] An unhandled exception has occurred while executing the request. +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass29_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.RecurringJobManager.RemoveIfExists(String recurringJobId) + at Hangfire.Dashboard.DashboardRoutes.<>c.<.cctor>b__2_26(IRecurringJobManager manager, String jobId) + at Hangfire.Dashboard.RouteCollectionExtensions.<>c__DisplayClass4_0.b__0(DashboardContext context, String jobId) + at Hangfire.Dashboard.BatchCommandDispatcher.Dispatch(DashboardContext context) + at Hangfire.Dashboard.AspNetCoreDashboardMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Builder.Extensions.MapMiddleware.Invoke(HttpContext context) + at Volo.Abp.AspNetCore.Uow.AbpUnitOfWorkMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at Volo.Abp.AspNetCore.ExceptionHandling.AbpExceptionHandlingMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Volo.Abp.AspNetCore.ExceptionHandling.AbpExceptionHandlingMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at Volo.Abp.AspNetCore.Serilog.AbpSerilogMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at Volo.Abp.AspNetCore.Auditing.AbpAuditingMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Volo.Abp.AspNetCore.Auditing.AbpAuditingMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at Volo.Abp.AspNetCore.MultiTenancy.MultiTenancyMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Volo.Abp.AspNetCore.Tracing.AbpCorrelationIdMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.RequestLocalization.AbpRequestLocalizationMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2021-09-03 15:39:20.930 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/recurring/remove application/x-www-form-urlencoded;+charset=UTF-8 32 - 500 - text/plain 30628.2865ms +2021-09-03 15:39:22.216 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:39:22.216 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:39:22.216 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:39:22.218 +08:00 [INF] Successfully validated the token. +2021-09-03 15:39:22.255 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:22.255 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:22.255 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 39.6201ms +2021-09-03 15:39:25.212 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:39:25.212 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:39:25.212 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:39:25.215 +08:00 [INF] Successfully validated the token. +2021-09-03 15:39:25.251 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:25.251 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:25.252 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 39.6752ms +2021-09-03 15:39:28.233 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:39:28.253 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:39:28.253 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:39:28.411 +08:00 [INF] Successfully validated the token. +2021-09-03 15:39:28.415 +08:00 [DBG] Execution loop Worker:0588a8a9 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:39:28.415 +08:00 [DBG] Execution loop Worker:0588a8a9 will be retried in 00:05:00... +2021-09-03 15:39:28.455 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:28.455 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:28.455 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 242.2404ms +2021-09-03 15:39:31.205 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:39:31.205 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:39:31.205 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:39:31.207 +08:00 [INF] Successfully validated the token. +2021-09-03 15:39:31.254 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:31.254 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:31.254 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 49.2982ms +2021-09-03 15:39:33.911 +08:00 [DBG] Server szqh003802a:30900:48a48eb9 heartbeat successfully sent +2021-09-03 15:39:34.203 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:39:34.203 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:39:34.203 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:39:34.205 +08:00 [INF] Successfully validated the token. +2021-09-03 15:39:34.251 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:34.251 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:34.251 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 47.9569ms +2021-09-03 15:39:37.212 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:39:37.212 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:39:37.212 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:39:37.215 +08:00 [INF] Successfully validated the token. +2021-09-03 15:39:37.252 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:37.252 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:37.252 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 40.6425ms +2021-09-03 15:39:40.216 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:39:40.216 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:39:40.216 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:39:40.220 +08:00 [INF] Successfully validated the token. +2021-09-03 15:39:40.261 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:40.261 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:40.262 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 45.7069ms +2021-09-03 15:39:43.206 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:39:43.206 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:39:43.206 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:39:43.209 +08:00 [INF] Successfully validated the token. +2021-09-03 15:39:43.466 +08:00 [DBG] Execution loop Worker:6a769982 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:39:43.466 +08:00 [DBG] Execution loop Worker:6a769982 will be retried in 00:05:00... +2021-09-03 15:39:43.483 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:43.483 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:43.483 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 276.7671ms +2021-09-03 15:39:46.210 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-03 15:39:46.210 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:39:46.210 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:39:46.212 +08:00 [INF] Successfully validated the token. +2021-09-03 15:39:46.249 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:46.249 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:46.249 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 39.0317ms +2021-09-03 15:39:50.257 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:39:50.257 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:39:50.257 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4488ms +2021-09-03 15:39:50.258 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:39:50.258 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:39:50.258 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.3693ms +2021-09-03 15:39:50.259 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-03 15:39:50.259 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:39:50.260 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:39:50.261 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:39:50.262 +08:00 [INF] Successfully validated the token. +2021-09-03 15:39:50.263 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:39:50.263 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:39:50.263 +08:00 [INF] Successfully validated the token. +2021-09-03 15:39:50.265 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:39:50.265 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:39:50.265 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:39:50.265 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 0.6344ms +2021-09-03 15:39:50.265 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:39:50.278 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 +2021-09-03 15:39:50.279 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:39:50.290 +08:00 [INF] Successfully validated the token. +2021-09-03 15:39:50.293 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:50.293 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:50.294 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 33.3080ms +2021-09-03 15:39:50.302 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:39:50.302 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:39:50.305 +08:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 415 +2021-09-03 15:39:50.305 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 2.0773ms +2021-09-03 15:39:50.306 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:39:50.320 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:39:50.320 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 56.8296ms +2021-09-03 15:39:50.320 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:39:50.337 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:50.343 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:50.343 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:50.344 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page - 0 - 415 0 - 65.6013ms +2021-09-03 15:39:50.370 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:50.371 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:39:50.371 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 111.7786ms +2021-09-03 15:40:00.293 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:40:00.294 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:40:00.294 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.6216ms +2021-09-03 15:40:00.318 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-03 15:40:00.345 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:40:00.457 +08:00 [INF] Successfully validated the token. +2021-09-03 15:40:00.480 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:40:00.480 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:40:00.482 +08:00 [DBG] Execution loop Worker:cd171810 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:40:00.482 +08:00 [DBG] Execution loop Worker:cd171810 will be retried in 00:05:00... +2021-09-03 15:40:00.526 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:40:00.527 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 46.1695ms +2021-09-03 15:40:00.527 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:40:00.532 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:40:00.583 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:40:00.583 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:40:00.583 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 264.9025ms +2021-09-03 15:40:03.967 +08:00 [DBG] Server szqh003802a:30900:48a48eb9 heartbeat successfully sent +2021-09-03 15:40:07.385 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:40:07.385 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:40:07.385 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.6165ms +2021-09-03 15:40:07.391 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 24 +2021-09-03 15:40:07.391 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:40:07.395 +08:00 [INF] Successfully validated the token. +2021-09-03 15:40:07.399 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:40:07.399 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:40:11.645 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 24 +2021-09-03 15:40:11.645 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:40:11.645 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:40:11.645 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5281ms +2021-09-03 15:40:11.648 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:40:11.648 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-03 15:40:11.650 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:40:11.655 +08:00 [INF] Successfully validated the token. +2021-09-03 15:40:11.658 +08:00 [INF] Successfully validated the token. +2021-09-03 15:40:11.720 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:40:11.720 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:40:14.858 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:40:14.882 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:40:15.598 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:40:15.600 +08:00 [DBG] Execution loop RecurringJobScheduler:93cac866 caught an exception and will be retried in 00:01:21 +System.InvalidOperationException: Connection must be Open; current state is Closed + at MySqlConnector.MySqlConnection.get_Session() in /_/src/MySqlConnector/MySqlConnection.cs:line 690 + at MySqlConnector.Core.ICancellableCommandExtensions.ResetCommandTimeout(ICancellableCommand command) in /_/src/MySqlConnector/Core/ICancellableCommand.cs:line 59 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 264 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at MySqlConnector.Core.XaEnlistedTransaction.ExecuteXaCommand(String statement) in /_/src/MySqlConnector/Core/XaEnlistedTransaction.cs:line 48 + at MySqlConnector.Core.XaEnlistedTransaction.OnRollback(Enlistment enlistment) in /_/src/MySqlConnector/Core/XaEnlistedTransaction.cs:line 40 + at MySqlConnector.Core.EnlistedTransactionBase.System.Transactions.IEnlistmentNotification.Rollback(Enlistment enlistment) in /_/src/MySqlConnector/Core/EnlistedTransactionBase.cs:line 38 + at System.Transactions.VolatileEnlistmentAborting.EnterState(InternalEnlistment enlistment) + at System.Transactions.VolatileEnlistmentActive.InternalAborted(InternalEnlistment enlistment) + at System.Transactions.TransactionStateAborted.EnterState(InternalTransaction tx) + at System.Transactions.TransactionStateActive.Rollback(InternalTransaction tx, Exception e) + at System.Transactions.Transaction.Rollback() + at System.Transactions.TransactionScope.InternalDispose() + at System.Transactions.TransactionScope.Dispose() + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:40:15.600 +08:00 [DBG] Execution loop RecurringJobScheduler:93cac866 will be retried in 00:01:21... +2021-09-03 15:40:15.603 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 8203.4702ms +2021-09-03 15:40:15.603 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:40:15.615 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:40:15.616 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 3896.4712ms +2021-09-03 15:40:15.616 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:40:15.617 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:40:15.625 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:40:15.645 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:40:15.646 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 763.8263ms +2021-09-03 15:40:15.646 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:40:15.670 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:40:15.677 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:40:15.677 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:40:15.677 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 24 - 200 - application/json;+charset=utf-8 8287.0256ms +2021-09-03 15:40:15.681 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:40:15.681 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:40:15.681 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 24 - 200 - application/json;+charset=utf-8 4036.9276ms +2021-09-03 15:40:15.707 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:40:15.707 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:40:15.707 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 4059.4151ms +2021-09-03 15:40:19.434 +08:00 [DBG] Execution loop Worker:138cd2e0 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:40:19.434 +08:00 [DBG] Execution loop Worker:138cd2e0 will be retried in 00:05:00... +2021-09-03 15:40:33.987 +08:00 [DBG] Server szqh003802a:30900:48a48eb9 heartbeat successfully sent +2021-09-03 15:40:41.883 +08:00 [DBG] Execution loop Worker:81f079fa caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:40:41.883 +08:00 [DBG] Execution loop Worker:81f079fa will be retried in 00:05:00... +2021-09-03 15:40:44.044 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/abp/Swashbuckle/SetCsrfCookie application/json - +2021-09-03 15:40:44.049 +08:00 [INF] Executing endpoint 'Volo.Abp.Swashbuckle.AbpSwashbuckleController.SetCsrfCookie (Volo.Abp.Swashbuckle)' +2021-09-03 15:40:44.049 +08:00 [INF] Route matched with {area = "Abp", action = "SetCsrfCookie", controller = "AbpSwashbuckle", page = ""}. Executing controller action with signature Void SetCsrfCookie() on controller Volo.Abp.Swashbuckle.AbpSwashbuckleController (Volo.Abp.Swashbuckle). +2021-09-03 15:40:44.050 +08:00 [WRN] The cookie 'XSRF-TOKEN' has set 'SameSite=None' and must also set 'Secure'. +2021-09-03 15:40:44.050 +08:00 [INF] Executed action Volo.Abp.Swashbuckle.AbpSwashbuckleController.SetCsrfCookie (Volo.Abp.Swashbuckle) in 1.3891ms +2021-09-03 15:40:44.050 +08:00 [INF] Executed endpoint 'Volo.Abp.Swashbuckle.AbpSwashbuckleController.SetCsrfCookie (Volo.Abp.Swashbuckle)' +2021-09-03 15:40:44.050 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/abp/Swashbuckle/SetCsrfCookie application/json - - 204 - - 5.9943ms +2021-09-03 15:40:44.176 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 3 +2021-09-03 15:40:44.176 +08:00 [INF] CORS policy execution failed. +2021-09-03 15:40:44.176 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-03 15:40:44.180 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:40:44.180 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:40:44.207 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:40:44.208 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 27.5694ms +2021-09-03 15:40:44.208 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:40:44.210 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:40:44.236 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:40:44.236 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:40:44.236 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 3 - 200 - application/json;+charset=utf-8 59.8338ms +2021-09-03 15:40:57.295 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:40:57.296 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:40:57.296 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.6116ms +2021-09-03 15:40:57.301 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 24 +2021-09-03 15:40:57.301 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:40:57.301 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:40:57.302 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:40:57.302 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4564ms +2021-09-03 15:40:57.304 +08:00 [INF] Successfully validated the token. +2021-09-03 15:40:57.305 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-03 15:40:57.305 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:40:57.307 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:40:57.307 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:40:57.308 +08:00 [INF] Successfully validated the token. +2021-09-03 15:40:57.310 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:40:57.310 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:40:57.359 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:40:57.359 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 52.3042ms +2021-09-03 15:40:57.359 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:40:57.373 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:40:57.380 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:40:57.381 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 70.5059ms +2021-09-03 15:40:57.381 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:40:57.389 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:40:57.437 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:40:57.437 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:40:57.438 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 24 - 200 - application/json;+charset=utf-8 137.1695ms +2021-09-03 15:40:57.442 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:40:57.442 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:40:57.443 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 137.4470ms +2021-09-03 15:40:58.276 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 24 +2021-09-03 15:40:58.276 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:40:58.279 +08:00 [INF] Successfully validated the token. +2021-09-03 15:40:58.280 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:40:58.280 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:40:58.311 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:40:58.311 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 30.6142ms +2021-09-03 15:40:58.311 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:40:58.314 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:40:58.343 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:40:58.343 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:40:58.343 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 24 - 200 - application/json;+charset=utf-8 67.0049ms +2021-09-03 15:41:03.454 +08:00 [DBG] Execution loop Worker:b96a4eee caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:41:03.454 +08:00 [DBG] Execution loop Worker:b96a4eee will be retried in 00:05:00... +2021-09-03 15:41:04.011 +08:00 [DBG] Server szqh003802a:30900:48a48eb9 heartbeat successfully sent +2021-09-03 15:41:08.635 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:41:08.635 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:41:08.635 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4766ms +2021-09-03 15:41:08.636 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 24 +2021-09-03 15:41:08.637 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:41:08.639 +08:00 [INF] Successfully validated the token. +2021-09-03 15:41:08.640 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:41:08.640 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:41:08.668 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:41:08.668 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 27.6291ms +2021-09-03 15:41:08.668 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:41:08.671 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:41:08.709 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:41:08.709 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:41:08.709 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 24 - 200 - application/json;+charset=utf-8 72.7474ms +2021-09-03 15:41:28.440 +08:00 [DBG] Execution loop Worker:bf205e36 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:41:28.440 +08:00 [DBG] Execution loop Worker:bf205e36 will be retried in 00:05:00... +2021-09-03 15:41:34.025 +08:00 [DBG] Server szqh003802a:30900:48a48eb9 heartbeat successfully sent +2021-09-03 15:41:55.405 +08:00 [DBG] Execution loop Worker:141b6630 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:41:55.405 +08:00 [DBG] Execution loop Worker:141b6630 will be retried in 00:05:00... +2021-09-03 15:42:03.379 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 15:42:04.065 +08:00 [DBG] Server szqh003802a:30900:48a48eb9 heartbeat successfully sent +2021-09-03 15:42:06.984 +08:00 [DBG] Execution loop RecurringJobScheduler:93cac866 caught an exception and will be retried in 00:01:40 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:42:06.984 +08:00 [DBG] Execution loop RecurringJobScheduler:93cac866 will be retried in 00:01:40... +2021-09-03 15:42:22.186 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:42:22.186 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:42:22.186 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4329ms +2021-09-03 15:42:22.188 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 24 +2021-09-03 15:42:22.188 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:42:22.191 +08:00 [INF] Successfully validated the token. +2021-09-03 15:42:22.192 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:42:22.192 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:42:22.221 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:42:22.222 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 29.1525ms +2021-09-03 15:42:22.222 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:42:22.225 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:42:22.266 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:42:22.266 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:42:22.266 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 24 - 200 - application/json;+charset=utf-8 78.2079ms +2021-09-03 15:42:24.461 +08:00 [DBG] Execution loop Worker:48aca99b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:42:24.461 +08:00 [DBG] Execution loop Worker:48aca99b will be retried in 00:05:00... +2021-09-03 15:42:34.091 +08:00 [DBG] Server szqh003802a:30900:48a48eb9 heartbeat successfully sent +2021-09-03 15:42:54.655 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:42:54.655 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:42:54.656 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4740ms +2021-09-03 15:42:54.657 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 24 +2021-09-03 15:42:54.657 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:42:54.660 +08:00 [INF] Successfully validated the token. +2021-09-03 15:42:54.661 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:42:54.661 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:44:01.698 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-09-03 15:44:07.093 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-09-03 15:44:07.210 +08:00 [INF] Loaded ABP modules: +2021-09-03 15:44:07.211 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-09-03 15:44:07.211 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-09-03 15:44:07.211 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-09-03 15:44:07.211 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-09-03 15:44:07.211 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-09-03 15:44:07.211 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-09-03 15:44:07.211 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-09-03 15:44:07.211 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-09-03 15:44:07.211 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule +2021-09-03 15:44:07.211 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-09-03 15:44:07.211 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-09-03 15:44:07.211 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-09-03 15:44:07.211 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-09-03 15:44:07.211 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-09-03 15:44:07.211 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-09-03 15:44:07.211 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-09-03 15:44:07.211 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-09-03 15:44:07.211 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-09-03 15:44:07.301 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-09-03 15:44:07.303 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-09-03 15:44:07.445 +08:00 [INF] DB tables already exist. Exit install +2021-09-03 15:44:07.469 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-09-03 15:44:07.469 +08:00 [INF] Using the following options for SQL Server job storage: +2021-09-03 15:44:07.469 +08:00 [INF] Queue poll interval: 00:00:15. +2021-09-03 15:44:07.469 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-09-03 15:44:07.493 +08:00 [DBG] Execution loop BackgroundServerProcess:bec2c329 has started in 6.0059 ms +2021-09-03 15:44:07.601 +08:00 [INF] Server szqh003802a:32672:20e38aab successfully announced in 100.0636 ms +2021-09-03 15:44:07.604 +08:00 [INF] Server szqh003802a:32672:20e38aab is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-09-03 15:44:07.605 +08:00 [DBG] Execution loop ServerHeartbeatProcess:84a23605 has started in 3.206 ms +2021-09-03 15:44:07.607 +08:00 [DBG] Execution loop ServerWatchdog:188149d2 has started in 2.9506 ms +2021-09-03 15:44:07.609 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:20440f56 has started in 3.8051 ms +2021-09-03 15:44:07.611 +08:00 [DBG] Execution loop ExpirationManager:98ba5c2d has started in 2.9446 ms +2021-09-03 15:44:07.613 +08:00 [DBG] Execution loop CountersAggregator:c623f633 has started in 3.867 ms +2021-09-03 15:44:07.615 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 15:44:07.615 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-09-03 15:44:07.617 +08:00 [DBG] Execution loop Worker:6d1d84d9 has started in 4.5176 ms +2021-09-03 15:44:07.618 +08:00 [DBG] Execution loop Worker:33ac362a has started in 6.4203 ms +2021-09-03 15:44:07.620 +08:00 [DBG] Execution loop Worker:5e124286 has started in 8.4101 ms +2021-09-03 15:44:07.622 +08:00 [DBG] Execution loop Worker:e4502465 has started in 10.8485 ms +2021-09-03 15:44:07.623 +08:00 [DBG] Execution loop Worker:df4fb1df has started in 11.9228 ms +2021-09-03 15:44:07.626 +08:00 [DBG] Execution loop Worker:e146ff55 has started in 14.3094 ms +2021-09-03 15:44:07.630 +08:00 [DBG] Execution loop Worker:547e88dd has started in 18.6108 ms +2021-09-03 15:44:07.630 +08:00 [DBG] Execution loop Worker:db2c5e0b has started in 18.6163 ms +2021-09-03 15:44:07.631 +08:00 [DBG] Execution loop Worker:ce698043 has started in 19.9928 ms +2021-09-03 15:44:07.633 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-03 15:44:07.635 +08:00 [DBG] Execution loop Worker:d26777a2 has started in 22.921 ms +2021-09-03 15:44:07.639 +08:00 [DBG] Execution loop Worker:60e12bab has started in 27.8487 ms +2021-09-03 15:44:07.641 +08:00 [DBG] Execution loop Worker:275ef276 has started in 29.7911 ms +2021-09-03 15:44:07.646 +08:00 [DBG] Execution loop Worker:62de0320 has started in 34.9423 ms +2021-09-03 15:44:07.650 +08:00 [DBG] Execution loop Worker:b3a76969 has started in 38.8135 ms +2021-09-03 15:44:07.656 +08:00 [DBG] Execution loop Worker:e4fed13c has started in 44.4291 ms +2021-09-03 15:44:07.663 +08:00 [DBG] Execution loop Worker:1b15f005 has started in 52.1801 ms +2021-09-03 15:44:07.669 +08:00 [DBG] Execution loop Worker:b1dc2e9f has started in 57.645 ms +2021-09-03 15:44:07.673 +08:00 [DBG] Execution loop Worker:2c4e3abf has started in 62.1211 ms +2021-09-03 15:44:07.680 +08:00 [DBG] Execution loop Worker:021c944c has started in 68.8679 ms +2021-09-03 15:44:07.688 +08:00 [DBG] Execution loop Worker:ab3373d5 has started in 76.2448 ms +2021-09-03 15:44:07.690 +08:00 [DBG] removed records count=0 +2021-09-03 15:44:07.695 +08:00 [DBG] Execution loop DelayedJobScheduler:4a232589 has started in 15.261 ms +2021-09-03 15:44:07.696 +08:00 [INF] Server szqh003802a:32672:20e38aab all the dispatchers started +2021-09-03 15:44:07.697 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-09-03 15:44:07.700 +08:00 [DBG] Execution loop RecurringJobScheduler:18c9f30e has started in 14.0239 ms +2021-09-03 15:44:07.712 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-09-03 15:44:08.073 +08:00 [INF] Initialized all ABP modules. +2021-09-03 15:44:08.141 +08:00 [INF] Now listening on: http://localhost:44315 +2021-09-03 15:44:08.141 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-09-03 15:44:08.141 +08:00 [INF] Hosting environment: Development +2021-09-03 15:44:08.141 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-09-03 15:44:08.365 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-09-03 15:44:09.947 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-03 15:44:10.005 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-09-03 15:44:10.038 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-09-03 15:44:10.044 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 35.2344ms +2021-09-03 15:44:10.044 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-03 15:44:10.063 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 1698.7125ms +2021-09-03 15:44:10.078 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-09-03 15:44:10.133 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 55.1240ms +2021-09-03 15:44:10.286 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-09-03 15:44:10.639 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 353.0454ms +2021-09-03 15:44:12.829 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:44:12.835 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:44:12.842 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 13.0502ms +2021-09-03 15:44:12.845 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 24 +2021-09-03 15:44:12.846 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:44:12.898 +08:00 [INF] Successfully validated the token. +2021-09-03 15:44:12.903 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:44:12.920 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:44:15.140 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:44:15.163 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 2242.7297ms +2021-09-03 15:44:15.164 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:44:15.170 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:44:15.409 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:44:15.409 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:44:15.413 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 24 - 200 - application/json;+charset=utf-8 2567.3395ms +2021-09-03 15:44:23.907 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-09-03 15:44:23.908 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:44:23.908 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.8817ms +2021-09-03 15:44:23.909 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 +2021-09-03 15:44:23.910 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:44:23.913 +08:00 [INF] Successfully validated the token. +2021-09-03 15:44:24.106 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-03 15:44:24.112 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-03 15:44:24.118 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-03 15:44:24.121 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-03 15:44:24.124 +08:00 [INF] Authorization was successful. +2021-09-03 15:44:24.127 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:44:24.130 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-09-03 15:44:25.066 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:44:25.076 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 946.8642ms +2021-09-03 15:44:25.077 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:44:25.092 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:44:25.122 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:44:25.122 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:44:25.124 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 - 200 - application/json;+charset=utf-8 1214.4573ms +2021-09-03 15:44:26.880 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-03 15:44:26.880 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:44:26.880 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.7672ms +2021-09-03 15:44:26.882 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-03 15:44:26.884 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:44:26.886 +08:00 [INF] Successfully validated the token. +2021-09-03 15:44:26.887 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:44:26.889 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:44:27.417 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:44:27.419 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 529.8058ms +2021-09-03 15:44:27.419 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:44:27.430 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:44:27.471 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:44:27.471 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:44:27.471 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 588.4672ms +2021-09-03 15:44:32.970 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/create - - +2021-09-03 15:44:32.970 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:44:32.970 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/create - - - 204 - - 0.4574ms +2021-09-03 15:44:32.972 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/create application/json 30 +2021-09-03 15:44:32.972 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:44:32.974 +08:00 [INF] Successfully validated the token. +2021-09-03 15:44:32.976 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:44:32.979 +08:00 [INF] Route matched with {action = "Create", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.CreateIdentityResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:44:33.028 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi) in 48.4917ms +2021-09-03 15:44:33.028 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:44:33.065 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:44:33.065 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:44:33.112 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:44:33.112 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:44:33.113 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/create application/json 30 - 204 - - 140.8243ms +2021-09-03 15:44:33.223 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-03 15:44:33.223 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:44:33.223 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.4595ms +2021-09-03 15:44:33.225 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-03 15:44:33.225 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:44:33.227 +08:00 [INF] Successfully validated the token. +2021-09-03 15:44:33.229 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:44:33.229 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:44:33.267 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:44:33.268 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 38.9263ms +2021-09-03 15:44:33.268 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:44:33.274 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:44:33.305 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:44:33.305 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:44:33.305 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 80.4106ms +2021-09-03 15:44:38.146 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/create - - +2021-09-03 15:44:38.166 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:44:38.166 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/create - - - 204 - - 20.2541ms +2021-09-03 15:44:38.168 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/create application/json 45 +2021-09-03 15:44:38.168 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:44:38.233 +08:00 [INF] Successfully validated the token. +2021-09-03 15:44:38.254 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:44:38.254 +08:00 [INF] Route matched with {action = "Create", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.CreateIdentityResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:44:41.035 +08:00 [DBG] Server szqh003802a:32672:20e38aab heartbeat successfully sent +2021-09-03 15:44:43.107 +08:00 [DBG] Execution Worker is in the Faulted state now due to an exception, execution will be retried no more than in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:44:43.107 +08:00 [DBG] Execution loop Worker:62de0320 caught an exception and will be retried in 00:00:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:44:43.107 +08:00 [DBG] Execution loop Worker:db2c5e0b caught an exception and will be retried in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:44:43.107 +08:00 [DBG] Execution loop Worker:6d1d84d9 caught an exception and will be retried in 00:00:09 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:44:43.107 +08:00 [DBG] Execution loop Worker:e4502465 caught an exception and will be retried in 00:00:25 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:44:43.107 +08:00 [DBG] Execution loop Worker:33ac362a caught an exception and will be retried in 00:00:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:44:43.107 +08:00 [DBG] Execution loop Worker:e146ff55 caught an exception and will be retried in 00:00:36 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:44:43.107 +08:00 [DBG] Execution loop Worker:d26777a2 caught an exception and will be retried in 00:00:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:44:43.107 +08:00 [DBG] Execution loop Worker:275ef276 caught an exception and will be retried in 00:01:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:44:43.107 +08:00 [DBG] Execution loop Worker:1b15f005 caught an exception and will be retried in 00:01:21 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:44:43.107 +08:00 [DBG] Execution loop Worker:b1dc2e9f caught an exception and will be retried in 00:01:40 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:44:43.107 +08:00 [DBG] Execution loop Worker:021c944c caught an exception and will be retried in 00:02:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:44:43.108 +08:00 [DBG] Execution loop Worker:62de0320 will be retried in 00:00:04... +2021-09-03 15:44:43.108 +08:00 [DBG] Execution loop Worker:db2c5e0b will be retried in 00:00:01... +2021-09-03 15:44:43.108 +08:00 [DBG] Execution loop Worker:6d1d84d9 will be retried in 00:00:09... +2021-09-03 15:44:43.108 +08:00 [DBG] Execution loop Worker:e4502465 will be retried in 00:00:25... +2021-09-03 15:44:43.108 +08:00 [DBG] Execution loop Worker:d26777a2 will be retried in 00:00:49... +2021-09-03 15:44:43.108 +08:00 [DBG] Execution loop Worker:33ac362a will be retried in 00:00:16... +2021-09-03 15:44:43.108 +08:00 [DBG] Execution loop Worker:e146ff55 will be retried in 00:00:36... +2021-09-03 15:44:43.108 +08:00 [DBG] Execution loop Worker:1b15f005 will be retried in 00:01:21... +2021-09-03 15:44:43.108 +08:00 [DBG] Execution loop Worker:021c944c will be retried in 00:02:01... +2021-09-03 15:44:43.108 +08:00 [DBG] Execution loop Worker:b1dc2e9f will be retried in 00:01:40... +2021-09-03 15:44:43.109 +08:00 [DBG] Execution loop Worker:275ef276 will be retried in 00:01:04... +2021-09-03 15:44:43.111 +08:00 [DBG] Execution loop Worker:547e88dd caught an exception and will be retried in 00:02:24 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:44:43.111 +08:00 [DBG] Execution loop Worker:ab3373d5 caught an exception and will be retried in 00:02:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:44:43.112 +08:00 [DBG] Execution loop Worker:ab3373d5 will be retried in 00:02:49... +2021-09-03 15:44:43.112 +08:00 [DBG] Execution loop Worker:60e12bab caught an exception and will be retried in 00:03:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:44:43.112 +08:00 [DBG] Execution loop Worker:547e88dd will be retried in 00:02:24... +2021-09-03 15:44:43.112 +08:00 [DBG] Execution loop Worker:60e12bab will be retried in 00:03:16... +2021-09-03 15:44:43.112 +08:00 [DBG] Execution loop Worker:b3a76969 caught an exception and will be retried in 00:03:45 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:44:43.113 +08:00 [DBG] Execution loop Worker:5e124286 caught an exception and will be retried in 00:04:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:44:43.113 +08:00 [DBG] Execution loop Worker:b3a76969 will be retried in 00:03:45... +2021-09-03 15:44:43.113 +08:00 [DBG] Execution loop Worker:5e124286 will be retried in 00:04:16... +2021-09-03 15:44:43.116 +08:00 [DBG] Execution loop Worker:df4fb1df caught an exception and will be retried in 00:04:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:44:43.117 +08:00 [DBG] Execution loop Worker:df4fb1df will be retried in 00:04:49... +2021-09-03 15:44:43.119 +08:00 [DBG] Execution loop Worker:e4fed13c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:44:43.119 +08:00 [DBG] Execution loop Worker:e4fed13c will be retried in 00:05:00... +2021-09-03 15:44:43.121 +08:00 [DBG] Execution loop Worker:ce698043 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:44:43.121 +08:00 [DBG] Execution loop Worker:ce698043 will be retried in 00:05:00... +2021-09-03 15:44:43.121 +08:00 [DBG] Execution loop Worker:2c4e3abf caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:44:43.122 +08:00 [DBG] Execution loop Worker:2c4e3abf will be retried in 00:05:00... +2021-09-03 15:44:43.134 +08:00 [DBG] Execution RecurringJobScheduler is in the Faulted state now due to an exception, execution will be retried no more than in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:44:43.134 +08:00 [DBG] Execution loop RecurringJobScheduler:18c9f30e caught an exception and will be retried in 00:00:01 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:44:43.134 +08:00 [DBG] Execution loop RecurringJobScheduler:18c9f30e will be retried in 00:00:01... +2021-09-03 15:44:43.167 +08:00 [WRN] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "a已存在", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-09-03 15:44:43.168 +08:00 [WRN] a已存在 +Volo.Abp.UserFriendlyException: a已存在 + at CompanyName.ProjectName.IdentityServer.IdentityResourceManager.CreateAsync(String name, String displayName, String description, Boolean enabled, Boolean required, Boolean emphasize, Boolean showInDiscoveryDocument) in D:\abp\aspnet-core\services\src\CompanyName.ProjectName.Domain\IdentityServer\IdentityResourceManager.cs:line 60 + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Auditing.AuditingInterceptor.ProceedByLoggingAsync(IAbpMethodInvocation invocation, IAuditingHelper auditingHelper, IAuditLogScope auditLogScope) + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at lambda_method2622(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-09-03 15:44:43.168 +08:00 [WRN] Code: +2021-09-03 15:44:43.168 +08:00 [WRN] Details: +2021-09-03 15:44:43.171 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-09-03 15:44:43.175 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi) in 4920.9332ms +2021-09-03 15:44:43.175 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:44:43.206 +08:00 [ERR] MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.ExpirationManager.<>c__DisplayClass9_1.b__0(MySqlConnection connection) +2021-09-03 15:44:43.207 +08:00 [DBG] Removing outdated records from table 'List'... +2021-09-03 15:44:43.208 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-09-03 15:44:43.219 +08:00 [DBG] removed records count=0 +2021-09-03 15:44:43.220 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-09-03 15:44:43.221 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-09-03 15:44:43.232 +08:00 [DBG] removed records count=0 +2021-09-03 15:44:43.233 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-09-03 15:44:43.234 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-09-03 15:44:43.287 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:44:43.287 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:44:43.288 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/create application/json 45 - 500 - application/json;+charset=utf-8 5119.5452ms +2021-09-03 15:44:46.286 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/create - - +2021-09-03 15:44:46.287 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:44:46.287 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/create - - - 204 - - 0.4916ms +2021-09-03 15:44:46.289 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/create application/json 46 +2021-09-03 15:44:46.289 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:44:46.291 +08:00 [INF] Successfully validated the token. +2021-09-03 15:44:46.293 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:44:46.293 +08:00 [INF] Route matched with {action = "Create", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.CreateIdentityResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:44:46.318 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi) in 24.2345ms +2021-09-03 15:44:46.318 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:44:46.329 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:44:46.329 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:44:46.362 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:44:46.362 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:44:46.362 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/create application/json 46 - 204 - - 73.4986ms +2021-09-03 15:44:46.478 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-03 15:44:46.478 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:44:46.478 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.5598ms +2021-09-03 15:44:46.480 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-03 15:44:46.480 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:44:46.483 +08:00 [INF] Successfully validated the token. +2021-09-03 15:44:46.485 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:44:46.485 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:44:46.520 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:44:46.521 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 35.7165ms +2021-09-03 15:44:46.521 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:44:46.525 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:44:46.556 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:44:46.556 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:44:46.556 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 76.2533ms +2021-09-03 15:44:49.441 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-03 15:44:49.441 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:44:49.443 +08:00 [INF] Successfully validated the token. +2021-09-03 15:44:49.444 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:44:49.444 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:44:49.478 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:44:49.479 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 34.465ms +2021-09-03 15:44:49.479 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:44:49.484 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:44:49.512 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:44:49.512 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:44:49.513 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 72.1878ms +2021-09-03 15:45:11.065 +08:00 [DBG] Server szqh003802a:32672:20e38aab heartbeat successfully sent +2021-09-03 15:45:13.500 +08:00 [ERR] MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.ExpirationManager.<>c__DisplayClass9_1.b__0(MySqlConnection connection) +2021-09-03 15:45:14.386 +08:00 [ERR] Execution Worker is in the Failed state now due to an exception, execution will be retried no more than in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:45:14.386 +08:00 [DBG] Execution loop Worker:db2c5e0b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:45:14.386 +08:00 [DBG] Execution loop Worker:db2c5e0b will be retried in 00:05:00... +2021-09-03 15:45:14.690 +08:00 [ERR] Execution RecurringJobScheduler is in the Failed state now due to an exception, execution will be retried no more than in 00:00:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:45:14.690 +08:00 [DBG] Execution loop RecurringJobScheduler:18c9f30e caught an exception and will be retried in 00:00:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:45:14.690 +08:00 [DBG] Execution loop RecurringJobScheduler:18c9f30e will be retried in 00:00:04... +2021-09-03 15:45:17.447 +08:00 [DBG] Execution loop Worker:62de0320 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:45:17.447 +08:00 [DBG] Execution loop Worker:62de0320 will be retried in 00:05:00... +2021-09-03 15:45:22.476 +08:00 [DBG] Execution loop Worker:6d1d84d9 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:45:22.476 +08:00 [DBG] Execution loop Worker:6d1d84d9 will be retried in 00:05:00... +2021-09-03 15:45:29.494 +08:00 [DBG] Execution loop Worker:33ac362a caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:45:29.494 +08:00 [DBG] Execution loop Worker:33ac362a will be retried in 00:05:00... +2021-09-03 15:45:38.365 +08:00 [DBG] Execution loop Worker:e4502465 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:45:38.365 +08:00 [DBG] Execution loop Worker:e4502465 will be retried in 00:05:00... +2021-09-03 15:45:41.098 +08:00 [DBG] Server szqh003802a:32672:20e38aab heartbeat successfully sent +2021-09-03 15:45:49.035 +08:00 [DBG] Execution loop RecurringJobScheduler:18c9f30e caught an exception and will be retried in 00:00:09 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:45:49.035 +08:00 [DBG] Execution loop RecurringJobScheduler:18c9f30e will be retried in 00:00:09... +2021-09-03 15:45:49.413 +08:00 [DBG] Execution loop Worker:e146ff55 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:45:49.413 +08:00 [DBG] Execution loop Worker:e146ff55 will be retried in 00:05:00... +2021-09-03 15:45:56.950 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-03 15:45:56.951 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:45:56.951 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.5135ms +2021-09-03 15:45:56.953 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-09-03 15:45:56.953 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:45:56.956 +08:00 [INF] Successfully validated the token. +2021-09-03 15:45:56.957 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:45:56.958 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:45:56.995 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:45:56.995 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 37.7058ms +2021-09-03 15:45:56.995 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:45:57.001 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:45:57.032 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:45:57.032 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:45:57.032 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 79.3943ms +2021-09-03 15:45:57.275 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:45:57.276 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:45:57.276 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:45:57.277 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 1.4039ms +2021-09-03 15:45:57.277 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:45:57.277 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4079ms +2021-09-03 15:45:57.279 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-09-03 15:45:57.280 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:45:57.281 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:45:57.281 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:45:57.283 +08:00 [INF] Successfully validated the token. +2021-09-03 15:45:57.283 +08:00 [INF] Successfully validated the token. +2021-09-03 15:45:57.284 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:45:57.285 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:45:57.285 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:45:57.287 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:46:05.765 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:46:05.766 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:46:05.770 +08:00 [INF] Successfully validated the token. +2021-09-03 15:46:05.775 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:46:05.776 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:46:05.989 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:46:06.164 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 8855.3658ms +2021-09-03 15:46:06.165 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:46:09.739 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:46:09.739 +08:00 [DBG] Execution loop Worker:d26777a2 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> System.IO.IOException: Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + ---> System.Net.Sockets.SocketException (10060): 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + --- End of inner exception stack trace --- + at System.Net.Sockets.NetworkStream.Read(Span`1 buffer) + at System.Net.Security.SyncReadWriteAdapter.ReadAsync(Memory`1 buffer) + at System.Net.Security.SslStream.ReadAsyncInternal[TIOAdapter](TIOAdapter adapter, Memory`1 buffer) + at System.Net.Security.SslStream.Read(Byte[] buffer, Int32 offset, Int32 count) + at System.IO.Stream.Read(Span`1 buffer) + at MySqlConnector.Utilities.Utility.Read(Stream stream, Memory`1 buffer) in /_/src/MySqlConnector/Utilities/Utility.cs:line 556 + at MySqlConnector.Protocol.Serialization.StreamByteHandler.g__DoReadBytesSync|6_0(Memory`1 buffer) in /_/src/MySqlConnector/Protocol/Serialization/StreamByteHandler.cs:line 37 + at MySqlConnector.Protocol.Serialization.BufferedByteReader.ReadBytesAsync(IByteHandler byteHandler, ArraySegment`1 buffer, Int32 totalBytesToRead, IOBehavior ioBehavior) in /_/src/MySqlConnector/Protocol/Serialization/BufferedByteReader.cs:line 36 + at MySqlConnector.Protocol.Serialization.ProtocolUtility.g__AddContinuation|1_0(ValueTask`1 headerBytes, BufferedByteReader bufferedByteReader, IByteHandler byteHandler, Func`1 getNextSequenceNumber, ProtocolErrorBehavior protocolErrorBehavior, IOBehavior ioBehavior) in /_/src/MySqlConnector/Protocol/Serialization/ProtocolUtility.cs:line 412 + at MySqlConnector.Protocol.Serialization.ProtocolUtility.g__AddContinuation|5_0(ValueTask`1 readPacketTask, BufferedByteReader bufferedByteReader, IByteHandler byteHandler, Func`1 getNextSequenceNumber, ArraySegmentHolder`1 previousPayloads, ProtocolErrorBehavior protocolErrorBehavior, IOBehavior ioBehavior) in /_/src/MySqlConnector/Protocol/Serialization/ProtocolUtility.cs:line 479 + at MySqlConnector.Core.ServerSession.ReceiveReplyAsyncAwaited(ValueTask`1 task) in /_/src/MySqlConnector/Core/ServerSession.cs:line 864 + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 135 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:46:09.739 +08:00 [DBG] Execution loop Worker:d26777a2 will be retried in 00:05:00... +2021-09-03 15:46:09.740 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:09.740 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 3964.3064ms +2021-09-03 15:46:09.740 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:46:09.755 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:09.806 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:09.806 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:09.809 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 12529.0180ms +2021-09-03 15:46:09.830 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:09.830 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:09.833 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 4068.3527ms +2021-09-03 15:46:10.041 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:46:10.046 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 12759.5723ms +2021-09-03 15:46:10.046 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:46:10.058 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:10.086 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:10.087 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:10.087 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 12807.9447ms +2021-09-03 15:46:11.153 +08:00 [DBG] Server szqh003802a:32672:20e38aab heartbeat successfully sent +2021-09-03 15:46:16.187 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:46:16.187 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:46:16.187 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4389ms +2021-09-03 15:46:16.189 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:46:16.189 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:46:16.191 +08:00 [INF] Successfully validated the token. +2021-09-03 15:46:16.192 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:46:16.193 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:46:16.231 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:46:16.231 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 38.1877ms +2021-09-03 15:46:16.231 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:46:16.234 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:16.261 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:16.261 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:16.262 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 72.8108ms +2021-09-03 15:46:17.393 +08:00 [DBG] Execution loop Worker:275ef276 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:46:17.393 +08:00 [DBG] Execution loop Worker:275ef276 will be retried in 00:05:00... +2021-09-03 15:46:18.217 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:46:18.217 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:46:18.219 +08:00 [INF] Successfully validated the token. +2021-09-03 15:46:18.221 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:46:18.221 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:46:18.253 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:46:18.253 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 32.1087ms +2021-09-03 15:46:18.253 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:46:18.255 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:18.284 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:18.284 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:18.285 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 67.6827ms +2021-09-03 15:46:18.924 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:46:18.924 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:46:18.926 +08:00 [INF] Successfully validated the token. +2021-09-03 15:46:18.928 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:46:18.928 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:46:18.958 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:46:18.958 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 30.2341ms +2021-09-03 15:46:18.958 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:46:18.961 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:19.000 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:19.000 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:19.000 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 75.9238ms +2021-09-03 15:46:19.717 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:46:19.717 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:46:19.720 +08:00 [INF] Successfully validated the token. +2021-09-03 15:46:19.721 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:46:19.721 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:46:19.751 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:46:19.751 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 30.4634ms +2021-09-03 15:46:19.752 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:46:19.754 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:19.782 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:19.782 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:19.782 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 65.2724ms +2021-09-03 15:46:20.463 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:46:20.463 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:46:20.465 +08:00 [INF] Successfully validated the token. +2021-09-03 15:46:20.467 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:46:20.467 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:46:20.497 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:46:20.498 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 30.6536ms +2021-09-03 15:46:20.498 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:46:20.500 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:20.541 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:20.541 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:20.541 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 78.2848ms +2021-09-03 15:46:20.851 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:46:20.851 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:46:20.854 +08:00 [INF] Successfully validated the token. +2021-09-03 15:46:20.855 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:46:20.855 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:46:20.886 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:46:20.886 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 31.3222ms +2021-09-03 15:46:20.887 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:46:20.889 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:20.920 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:20.920 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:20.921 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 69.4493ms +2021-09-03 15:46:21.186 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:46:21.187 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:46:21.189 +08:00 [INF] Successfully validated the token. +2021-09-03 15:46:21.190 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:46:21.190 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:46:21.220 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:46:21.221 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 30.5854ms +2021-09-03 15:46:21.221 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:46:21.224 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:21.253 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:21.253 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:21.253 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 66.6084ms +2021-09-03 15:46:22.351 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:46:22.351 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:46:22.351 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.5131ms +2021-09-03 15:46:22.353 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:46:22.353 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:46:22.355 +08:00 [INF] Successfully validated the token. +2021-09-03 15:46:22.356 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:46:22.356 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:46:22.388 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:46:22.388 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 31.5409ms +2021-09-03 15:46:22.388 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:46:22.391 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:22.419 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:22.419 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:22.420 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 66.9458ms +2021-09-03 15:46:24.136 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:46:24.136 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:46:24.138 +08:00 [INF] Successfully validated the token. +2021-09-03 15:46:24.140 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:46:24.140 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:46:24.170 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:46:24.171 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 31.2777ms +2021-09-03 15:46:24.171 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:46:24.174 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:24.202 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:24.202 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:24.203 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 66.9836ms +2021-09-03 15:46:31.742 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:46:31.742 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:46:31.742 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4391ms +2021-09-03 15:46:31.744 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:46:31.744 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:46:31.746 +08:00 [INF] Successfully validated the token. +2021-09-03 15:46:31.748 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:46:31.748 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:46:31.777 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:46:31.777 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 29.4272ms +2021-09-03 15:46:31.777 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:46:31.780 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:31.822 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:31.822 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:31.822 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 78.2931ms +2021-09-03 15:46:36.008 +08:00 [DBG] Execution loop Worker:1b15f005 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:46:36.008 +08:00 [DBG] Execution loop Worker:1b15f005 will be retried in 00:05:00... +2021-09-03 15:46:36.492 +08:00 [DBG] Execution loop RecurringJobScheduler:18c9f30e caught an exception and will be retried in 00:00:16 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:46:36.492 +08:00 [DBG] Execution loop RecurringJobScheduler:18c9f30e will be retried in 00:00:16... +2021-09-03 15:46:41.183 +08:00 [DBG] Server szqh003802a:32672:20e38aab heartbeat successfully sent +2021-09-03 15:46:53.664 +08:00 [DBG] Execution loop Worker:b1dc2e9f caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:46:53.664 +08:00 [DBG] Execution loop Worker:b1dc2e9f will be retried in 00:05:00... +2021-09-03 15:46:55.260 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:46:55.260 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:46:55.260 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4895ms +2021-09-03 15:46:55.262 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-09-03 15:46:55.263 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:46:55.263 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:46:55.264 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:46:55.264 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.3934ms +2021-09-03 15:46:55.265 +08:00 [INF] Successfully validated the token. +2021-09-03 15:46:55.267 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:46:55.268 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:46:55.268 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:46:55.268 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:46:55.271 +08:00 [INF] Successfully validated the token. +2021-09-03 15:46:55.273 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:46:55.273 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:46:55.278 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:46:55.278 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:46:55.282 +08:00 [INF] Successfully validated the token. +2021-09-03 15:46:55.300 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:46:55.300 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:46:55.330 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:46:55.330 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:46:55.330 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 57.1228ms +2021-09-03 15:46:55.330 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:46:55.330 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 62.1376ms +2021-09-03 15:46:55.330 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:46:55.333 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:55.338 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:55.380 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:46:55.382 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 81.9141ms +2021-09-03 15:46:55.382 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:46:55.389 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:55.404 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:55.404 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:55.404 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:55.404 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:55.404 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 136.9783ms +2021-09-03 15:46:55.404 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 141.9492ms +2021-09-03 15:46:55.425 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:55.425 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:46:55.425 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 147.8966ms +2021-09-03 15:47:11.241 +08:00 [DBG] Server szqh003802a:32672:20e38aab heartbeat successfully sent +2021-09-03 15:47:14.439 +08:00 [DBG] Execution loop Worker:021c944c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:47:14.439 +08:00 [DBG] Execution loop Worker:021c944c will be retried in 00:05:00... +2021-09-03 15:47:17.246 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:47:17.247 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:47:17.247 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.6303ms +2021-09-03 15:47:17.247 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:47:17.248 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:47:17.248 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4220ms +2021-09-03 15:47:17.249 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:47:17.250 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:47:17.250 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-09-03 15:47:17.251 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:47:17.252 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:47:17.252 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:47:17.253 +08:00 [INF] Successfully validated the token. +2021-09-03 15:47:17.253 +08:00 [INF] Successfully validated the token. +2021-09-03 15:47:17.254 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:47:17.254 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:47:17.254 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:47:17.254 +08:00 [INF] Successfully validated the token. +2021-09-03 15:47:17.254 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:47:17.256 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:47:17.256 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:47:17.315 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:47:17.317 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 62.4442ms +2021-09-03 15:47:17.317 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:47:17.326 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:47:17.326 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:47:17.326 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 70.745ms +2021-09-03 15:47:17.327 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:47:17.327 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 72.4226ms +2021-09-03 15:47:17.327 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:47:17.327 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:47:17.332 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:47:17.339 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:47:17.389 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:47:17.389 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:47:17.389 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:47:17.389 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:47:17.390 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 137.6763ms +2021-09-03 15:47:17.390 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 139.3230ms +2021-09-03 15:47:17.392 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:47:17.394 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:47:17.395 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 145.7178ms +2021-09-03 15:47:22.891 +08:00 [DBG] Execution loop RecurringJobScheduler:18c9f30e caught an exception and will be retried in 00:00:25 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:47:22.891 +08:00 [DBG] Execution loop RecurringJobScheduler:18c9f30e will be retried in 00:00:25... +2021-09-03 15:47:25.241 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:47:25.241 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:47:25.241 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4875ms +2021-09-03 15:47:25.242 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:47:25.242 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:47:25.242 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4118ms +2021-09-03 15:47:25.243 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:47:25.243 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:47:25.245 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:47:25.245 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:47:25.245 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:47:25.245 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5508ms +2021-09-03 15:47:25.246 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:47:25.246 +08:00 [INF] Successfully validated the token. +2021-09-03 15:47:25.247 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-09-03 15:47:25.248 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:47:25.248 +08:00 [INF] Successfully validated the token. +2021-09-03 15:47:25.248 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:47:25.248 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:47:25.249 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:47:25.249 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:47:25.251 +08:00 [INF] Successfully validated the token. +2021-09-03 15:47:25.253 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:47:25.253 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:47:25.293 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:47:25.295 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 46.6117ms +2021-09-03 15:47:25.295 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:47:25.299 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:47:25.299 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 49.9867ms +2021-09-03 15:47:25.299 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:47:25.300 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:47:25.308 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:47:25.340 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:47:25.345 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 92.2895ms +2021-09-03 15:47:25.346 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:47:25.362 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:47:25.380 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:47:25.380 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:47:25.380 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:47:25.380 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:47:25.381 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 135.2312ms +2021-09-03 15:47:25.381 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 137.6669ms +2021-09-03 15:47:25.393 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:47:25.394 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:47:25.394 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 146.5326ms +2021-09-03 15:47:37.433 +08:00 [DBG] Execution loop Worker:547e88dd caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:47:37.433 +08:00 [DBG] Execution loop Worker:547e88dd will be retried in 00:05:00... +2021-09-03 15:47:41.261 +08:00 [DBG] Server szqh003802a:32672:20e38aab heartbeat successfully sent +2021-09-03 15:47:57.242 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:47:57.242 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:47:57.242 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4993ms +2021-09-03 15:47:57.244 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:47:57.244 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:47:57.244 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4350ms +2021-09-03 15:47:57.245 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-09-03 15:47:57.245 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:47:57.246 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:47:57.246 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:47:57.248 +08:00 [INF] Successfully validated the token. +2021-09-03 15:47:57.249 +08:00 [INF] Successfully validated the token. +2021-09-03 15:47:57.249 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:47:57.250 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:47:57.250 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:47:57.250 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:47:57.250 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:47:57.250 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:47:57.252 +08:00 [INF] Successfully validated the token. +2021-09-03 15:47:57.253 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:47:57.254 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:47:57.301 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:47:57.302 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 52.3522ms +2021-09-03 15:47:57.303 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:47:57.319 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:47:57.325 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:47:57.327 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:47:57.327 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 77.4001ms +2021-09-03 15:47:57.327 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:47:57.327 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 73.8379ms +2021-09-03 15:47:57.327 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:47:57.331 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:47:57.336 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:47:57.367 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:47:57.367 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:47:57.367 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 121.5560ms +2021-09-03 15:47:57.386 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:47:57.386 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:47:57.386 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:47:57.386 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:47:57.386 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 141.6019ms +2021-09-03 15:47:57.386 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 136.6284ms +2021-09-03 15:48:01.524 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:48:01.524 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:48:01.527 +08:00 [INF] Successfully validated the token. +2021-09-03 15:48:01.530 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:01.530 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:48:01.565 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:48:01.566 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 35.6314ms +2021-09-03 15:48:01.566 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:01.569 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:01.613 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:01.613 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:01.613 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 89.1944ms +2021-09-03 15:48:02.255 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:48:02.276 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:48:02.276 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:48:02.276 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:48:02.276 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4592ms +2021-09-03 15:48:02.276 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 20.9133ms +2021-09-03 15:48:02.298 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:48:02.298 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-09-03 15:48:02.318 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:48:02.318 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:48:02.421 +08:00 [INF] Successfully validated the token. +2021-09-03 15:48:02.442 +08:00 [INF] Successfully validated the token. +2021-09-03 15:48:02.443 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:02.443 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:48:02.444 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:02.445 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:48:02.446 +08:00 [DBG] Execution loop Worker:ab3373d5 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:48:02.446 +08:00 [DBG] Execution loop Worker:ab3373d5 will be retried in 00:05:00... +2021-09-03 15:48:02.492 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:48:02.494 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 51.0208ms +2021-09-03 15:48:02.494 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:02.500 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:48:02.500 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 55.0446ms +2021-09-03 15:48:02.500 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:02.501 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:02.509 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:02.538 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:02.538 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:02.538 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 240.2393ms +2021-09-03 15:48:02.550 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:02.550 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:02.551 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 252.8419ms +2021-09-03 15:48:11.312 +08:00 [DBG] Server szqh003802a:32672:20e38aab heartbeat successfully sent +2021-09-03 15:48:14.034 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:48:14.034 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:48:14.034 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4585ms +2021-09-03 15:48:14.037 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:48:14.037 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:48:14.040 +08:00 [INF] Successfully validated the token. +2021-09-03 15:48:14.042 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:14.042 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:48:14.076 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:48:14.077 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 34.3903ms +2021-09-03 15:48:14.077 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:14.081 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:14.114 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:14.114 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:14.114 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 77.4609ms +2021-09-03 15:48:14.221 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:48:14.221 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:48:14.224 +08:00 [INF] Successfully validated the token. +2021-09-03 15:48:14.225 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:14.226 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:48:14.259 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:48:14.259 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 33.4028ms +2021-09-03 15:48:14.259 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:14.262 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:14.294 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:14.294 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:14.294 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 73.0086ms +2021-09-03 15:48:18.199 +08:00 [DBG] Execution loop RecurringJobScheduler:18c9f30e caught an exception and will be retried in 00:00:36 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:48:18.200 +08:00 [DBG] Execution loop RecurringJobScheduler:18c9f30e will be retried in 00:00:36... +2021-09-03 15:48:29.424 +08:00 [DBG] Execution loop Worker:60e12bab caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:48:29.424 +08:00 [DBG] Execution loop Worker:60e12bab will be retried in 00:05:00... +2021-09-03 15:48:30.065 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:48:30.065 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:48:30.065 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4862ms +2021-09-03 15:48:30.067 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:48:30.068 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:48:30.071 +08:00 [INF] Successfully validated the token. +2021-09-03 15:48:30.073 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:30.073 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:48:30.112 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:48:30.112 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 38.6483ms +2021-09-03 15:48:30.112 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:30.115 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:30.150 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:30.150 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:30.150 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 83.3288ms +2021-09-03 15:48:31.239 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:48:31.239 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:48:31.242 +08:00 [INF] Successfully validated the token. +2021-09-03 15:48:31.243 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:31.244 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:48:31.244 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:48:31.244 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:48:31.244 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4151ms +2021-09-03 15:48:31.247 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-09-03 15:48:31.247 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:48:31.249 +08:00 [INF] Successfully validated the token. +2021-09-03 15:48:31.251 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:31.251 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:48:31.275 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:48:31.276 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 31.9255ms +2021-09-03 15:48:31.276 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:31.279 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:31.319 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:48:31.320 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 69.6372ms +2021-09-03 15:48:31.320 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:31.329 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:31.335 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:31.335 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:31.335 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 95.8621ms +2021-09-03 15:48:31.362 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:31.362 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:31.362 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 115.5326ms +2021-09-03 15:48:36.010 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:48:36.010 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:48:36.011 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.5030ms +2021-09-03 15:48:36.015 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:48:36.015 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:48:36.018 +08:00 [INF] Successfully validated the token. +2021-09-03 15:48:36.020 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:36.020 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:48:36.056 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:48:36.056 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 36.0963ms +2021-09-03 15:48:36.056 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:36.060 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:36.096 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:36.096 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:36.097 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 81.7193ms +2021-09-03 15:48:37.233 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:48:37.234 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:48:37.237 +08:00 [INF] Successfully validated the token. +2021-09-03 15:48:37.239 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:37.239 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:48:37.239 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:48:37.239 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:48:37.240 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.3601ms +2021-09-03 15:48:37.241 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-09-03 15:48:37.241 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:48:37.243 +08:00 [INF] Successfully validated the token. +2021-09-03 15:48:37.245 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:37.245 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:48:37.268 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:48:37.268 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 28.818ms +2021-09-03 15:48:37.268 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:37.272 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:37.302 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:48:37.302 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 57.5039ms +2021-09-03 15:48:37.302 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:37.316 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:37.322 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:37.322 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:37.323 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 89.2910ms +2021-09-03 15:48:37.345 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:37.345 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:37.346 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 104.5599ms +2021-09-03 15:48:41.477 +08:00 [DBG] Server szqh003802a:32672:20e38aab heartbeat successfully sent +2021-09-03 15:48:46.551 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:48:46.551 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:48:46.551 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.5563ms +2021-09-03 15:48:46.554 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:48:46.554 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:48:46.557 +08:00 [INF] Successfully validated the token. +2021-09-03 15:48:46.559 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:46.559 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:48:46.597 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:48:46.598 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 38.3498ms +2021-09-03 15:48:46.598 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:46.601 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:46.637 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:46.637 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:46.637 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 83.9140ms +2021-09-03 15:48:48.229 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:48:48.229 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:48:48.230 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:48:48.230 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:48:48.230 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.3343ms +2021-09-03 15:48:48.232 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-09-03 15:48:48.232 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:48:48.232 +08:00 [INF] Successfully validated the token. +2021-09-03 15:48:48.234 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:48.234 +08:00 [INF] Successfully validated the token. +2021-09-03 15:48:48.234 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:48:48.235 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:48.235 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:48:48.281 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:48:48.283 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 48.6529ms +2021-09-03 15:48:48.283 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:48.286 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:48:48.287 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 51.5255ms +2021-09-03 15:48:48.287 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:48.288 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:48.295 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:48.320 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:48.320 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:48.321 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 92.2999ms +2021-09-03 15:48:48.332 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:48.332 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:48.332 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 100.7882ms +2021-09-03 15:48:57.227 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:48:57.227 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:48:57.227 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:48:57.227 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.5060ms +2021-09-03 15:48:57.227 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:48:57.228 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.3056ms +2021-09-03 15:48:57.229 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:48:57.230 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:48:57.230 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:48:57.230 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:48:57.232 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:48:57.232 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:48:57.232 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5534ms +2021-09-03 15:48:57.233 +08:00 [INF] Successfully validated the token. +2021-09-03 15:48:57.233 +08:00 [INF] Successfully validated the token. +2021-09-03 15:48:57.234 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-09-03 15:48:57.234 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:48:57.234 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:57.234 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:57.235 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:48:57.235 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:48:57.236 +08:00 [INF] Successfully validated the token. +2021-09-03 15:48:57.238 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:57.238 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:48:57.292 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:48:57.293 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 58.6487ms +2021-09-03 15:48:57.294 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:57.298 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:48:57.299 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 64.4467ms +2021-09-03 15:48:57.300 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:57.302 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:57.308 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:57.314 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:48:57.315 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 76.8203ms +2021-09-03 15:48:57.315 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:48:57.325 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:57.347 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:57.348 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:57.349 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 118.6146ms +2021-09-03 15:48:57.358 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:57.358 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:57.358 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 129.0230ms +2021-09-03 15:48:57.369 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:57.369 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:48:57.369 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 135.4150ms +2021-09-03 15:48:58.379 +08:00 [DBG] Execution loop Worker:b3a76969 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:48:58.379 +08:00 [DBG] Execution loop Worker:b3a76969 will be retried in 00:05:00... +2021-09-03 15:49:01.236 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:49:01.236 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:49:01.239 +08:00 [INF] Successfully validated the token. +2021-09-03 15:49:01.240 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:01.241 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:49:01.243 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:49:01.244 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:49:01.246 +08:00 [INF] Successfully validated the token. +2021-09-03 15:49:01.248 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:01.248 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:49:01.250 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-09-03 15:49:01.250 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:49:01.255 +08:00 [INF] Successfully validated the token. +2021-09-03 15:49:01.772 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:01.772 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:49:02.106 +08:00 [ERR] An error occurred using the connection to database 'CompanyNameProjectNameDB' on server 'localhost'. +2021-09-03 15:49:02.148 +08:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "对不起,在处理你的请求期间,产生了一个服务器内部错误!", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-09-03 15:49:02.218 +08:00 [ERR] Unexpected end of request content. +Microsoft.AspNetCore.Server.Kestrel.Core.BadHttpRequestException: Unexpected end of request content. + at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelBadHttpRequestException.Throw(RequestRejectionReason reason) + at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1MessageBody.ThrowUnexpectedEndOfRequestContent() + at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1ContentLengthMessageBody.ReadAsyncInternal(CancellationToken cancellationToken) + at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpRequestStream.ReadAsyncInternal(Memory`1 destination, CancellationToken cancellationToken) + at System.Text.Json.JsonSerializer.ReadAsync[TValue](Stream utf8Json, Type returnType, JsonSerializerOptions options, CancellationToken cancellationToken) + at Microsoft.AspNetCore.Mvc.Formatters.SystemTextJsonInputFormatter.ReadRequestBodyAsync(InputFormatterContext context, Encoding encoding) + at Microsoft.AspNetCore.Mvc.Formatters.SystemTextJsonInputFormatter.ReadRequestBodyAsync(InputFormatterContext context, Encoding encoding) + at Volo.Abp.AspNetCore.Mvc.Json.AbpHybridJsonInputFormatter.ReadRequestBodyAsync(InputFormatterContext context, Encoding encoding) + at Microsoft.AspNetCore.Mvc.ModelBinding.Binders.BodyModelBinder.BindModelAsync(ModelBindingContext bindingContext) + at Microsoft.AspNetCore.Mvc.ModelBinding.ParameterBinder.BindModelAsync(ActionContext actionContext, IModelBinder modelBinder, IValueProvider valueProvider, ParameterDescriptor parameter, ModelMetadata metadata, Object value, Object container) + at Microsoft.AspNetCore.Mvc.Controllers.ControllerBinderDelegateProvider.<>c__DisplayClass0_0.<g__Bind|0>d.MoveNext() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-09-03 15:49:02.219 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-09-03 15:49:02.360 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 587.3578ms +2021-09-03 15:49:02.436 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:02.722 +08:00 [ERR] An error occurred using the connection to database 'CompanyNameProjectNameDB' on server 'localhost'. +2021-09-03 15:49:02.865 +08:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "对不起,在处理你的请求期间,产生了一个服务器内部错误!", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-09-03 15:49:02.866 +08:00 [ERR] The operation was canceled. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.ConnectionPool.GetSessionAsync(MySqlConnection connection, Int32 startTickCount, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ConnectionPool.cs:line 24 + at MySqlConnector.MySqlConnection.CreateSessionAsync(ConnectionPool pool, Int32 startTickCount, Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 863 + at MySqlConnector.MySqlConnection.OpenAsync(Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 414 + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenInternalAsync(Boolean errorsExpected, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenInternalAsync(Boolean errorsExpected, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenAsync(CancellationToken cancellationToken, Boolean errorsExpected) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlRelationalConnection.OpenAsync(CancellationToken cancellationToken, Boolean errorsExpected) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.BeginTransactionAsync(IsolationLevel isolationLevel, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.BeginTransactionAsync(CancellationToken cancellationToken) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextWithTransactionAsync(IUnitOfWork unitOfWork) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork, String connectionStringName, String connectionString) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.GetDbContextAsync() + at Volo.Abp.Domain.Repositories.EntityFrameworkCore.EfCoreRepository`2.GetDbSetAsync() + at Volo.Abp.AuditLogging.EntityFrameworkCore.EfCoreAuditLogRepository.GetListQueryAsync(Nullable`1 startTime, Nullable`1 endTime, String httpMethod, String url, Nullable`1 userId, String userName, String applicationName, String correlationId, Nullable`1 maxExecutionDuration, Nullable`1 minExecutionDuration, Nullable`1 hasException, Nullable`1 httpStatusCode, Boolean includeDetails) + at Volo.Abp.AuditLogging.EntityFrameworkCore.EfCoreAuditLogRepository.GetListAsync(String sorting, Int32 maxResultCount, Int32 skipCount, Nullable`1 startTime, Nullable`1 endTime, String httpMethod, String url, Nullable`1 userId, String userName, String applicationName, String correlationId, Nullable`1 maxExecutionDuration, Nullable`1 minExecutionDuration, Nullable`1 hasException, Nullable`1 httpStatusCode, Boolean includeDetails, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at CompanyName.ProjectName.AuditLogs.AuditLogAppService.GetListAsync(PagingAuditLogListInput input) in D:\abp\aspnet-core\services\src\CompanyName.ProjectName.Application\AuditLogs\AuditLogAppService.cs:line 24 + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Auditing.AuditingInterceptor.ProceedByLoggingAsync(IAbpMethodInvocation invocation, IAuditingHelper auditingHelper, IAuditLogScope auditLogScope) + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at lambda_method1615(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-09-03 15:49:02.867 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-09-03 15:49:02.867 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 1626.5149ms +2021-09-03 15:49:02.868 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:02.877 +08:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "对不起,在处理你的请求期间,产生了一个服务器内部错误!", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-09-03 15:49:02.878 +08:00 [ERR] The operation was canceled. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.ConnectionPool.GetSessionAsync(MySqlConnection connection, Int32 startTickCount, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ConnectionPool.cs:line 24 + at MySqlConnector.MySqlConnection.CreateSessionAsync(ConnectionPool pool, Int32 startTickCount, Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 863 + at MySqlConnector.MySqlConnection.OpenAsync(Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 414 + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenInternalAsync(Boolean errorsExpected, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenInternalAsync(Boolean errorsExpected, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenAsync(CancellationToken cancellationToken, Boolean errorsExpected) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlRelationalConnection.OpenAsync(CancellationToken cancellationToken, Boolean errorsExpected) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.BeginTransactionAsync(IsolationLevel isolationLevel, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.BeginTransactionAsync(CancellationToken cancellationToken) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextWithTransactionAsync(IUnitOfWork unitOfWork) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork, String connectionStringName, String connectionString) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.GetDbContextAsync() + at Volo.Abp.Domain.Repositories.EntityFrameworkCore.EfCoreRepository`2.GetDbSetAsync() + at Volo.Abp.AuditLogging.EntityFrameworkCore.EfCoreAuditLogRepository.GetListQueryAsync(Nullable`1 startTime, Nullable`1 endTime, String httpMethod, String url, Nullable`1 userId, String userName, String applicationName, String correlationId, Nullable`1 maxExecutionDuration, Nullable`1 minExecutionDuration, Nullable`1 hasException, Nullable`1 httpStatusCode, Boolean includeDetails) + at Volo.Abp.AuditLogging.EntityFrameworkCore.EfCoreAuditLogRepository.GetListAsync(String sorting, Int32 maxResultCount, Int32 skipCount, Nullable`1 startTime, Nullable`1 endTime, String httpMethod, String url, Nullable`1 userId, String userName, String applicationName, String correlationId, Nullable`1 maxExecutionDuration, Nullable`1 minExecutionDuration, Nullable`1 hasException, Nullable`1 httpStatusCode, Boolean includeDetails, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at CompanyName.ProjectName.AuditLogs.AuditLogAppService.GetListAsync(PagingAuditLogListInput input) in D:\abp\aspnet-core\services\src\CompanyName.ProjectName.Application\AuditLogs\AuditLogAppService.cs:line 24 + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Auditing.AuditingInterceptor.ProceedByLoggingAsync(IAbpMethodInvocation invocation, IAuditingHelper auditingHelper, IAuditLogScope auditLogScope) + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at lambda_method1615(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-09-03 15:49:02.878 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-09-03 15:49:02.878 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 1629.6789ms +2021-09-03 15:49:02.878 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:02.893 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:02.893 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:02.893 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 500 - application/json;+charset=utf-8 1643.9436ms +2021-09-03 15:49:03.005 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:03.005 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:03.005 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:03.005 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:03.005 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 500 - application/json;+charset=utf-8 1769.8040ms +2021-09-03 15:49:03.005 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 500 - application/json;+charset=utf-8 1762.1817ms +2021-09-03 15:49:04.171 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:49:04.172 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:49:04.172 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.6524ms +2021-09-03 15:49:04.177 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:49:04.178 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:49:04.181 +08:00 [INF] Successfully validated the token. +2021-09-03 15:49:04.183 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:04.183 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:49:04.223 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:49:04.226 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 42.6896ms +2021-09-03 15:49:04.226 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:04.230 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:04.274 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:04.274 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:04.274 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 96.8971ms +2021-09-03 15:49:05.245 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:49:05.245 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:49:05.245 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4617ms +2021-09-03 15:49:05.247 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-09-03 15:49:05.248 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:49:05.251 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:49:05.251 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:49:05.251 +08:00 [INF] Successfully validated the token. +2021-09-03 15:49:05.253 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:05.253 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:49:05.254 +08:00 [INF] Successfully validated the token. +2021-09-03 15:49:05.255 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:05.255 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:49:05.305 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:49:05.310 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 54.8375ms +2021-09-03 15:49:05.310 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:05.310 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:49:05.311 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 57.446ms +2021-09-03 15:49:05.311 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:05.313 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:05.318 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:05.349 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:05.349 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:05.350 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 98.9942ms +2021-09-03 15:49:05.360 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:05.360 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:05.360 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 113.0322ms +2021-09-03 15:49:07.713 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-03 15:49:07.731 +08:00 [INF] 1 servers were removed due to timeout +2021-09-03 15:49:11.571 +08:00 [DBG] Server szqh003802a:32672:20e38aab heartbeat successfully sent +2021-09-03 15:49:17.556 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:49:17.556 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:49:17.556 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.6209ms +2021-09-03 15:49:17.565 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-09-03 15:49:17.566 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:49:17.571 +08:00 [INF] Successfully validated the token. +2021-09-03 15:49:17.574 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:17.574 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:49:17.621 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:49:17.622 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 47.1311ms +2021-09-03 15:49:17.622 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:17.628 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:17.665 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:17.665 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:17.666 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 100.2888ms +2021-09-03 15:49:18.229 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:49:18.229 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:49:18.230 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4763ms +2021-09-03 15:49:18.232 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:49:18.232 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:49:18.233 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:49:18.233 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:49:18.235 +08:00 [INF] Successfully validated the token. +2021-09-03 15:49:18.235 +08:00 [INF] Successfully validated the token. +2021-09-03 15:49:18.236 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:18.236 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:18.237 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:49:18.237 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:49:18.627 +08:00 [ERR] Failed executing DbCommand (341ms) [Parameters=[@__ef_filter__p_0='?' (DbType = Boolean), @__p_1='?' (DbType = Int32), @__p_0='?' (DbType = Int32)], CommandType='"Text"', CommandTimeout='30'] +SELECT `a`.`Id`, `a`.`ApplicationName`, `a`.`BrowserInfo`, `a`.`ClientId`, `a`.`ClientIpAddress`, `a`.`ClientName`, `a`.`Comments`, `a`.`ConcurrencyStamp`, `a`.`CorrelationId`, `a`.`Exceptions`, `a`.`ExecutionDuration`, `a`.`ExecutionTime`, `a`.`ExtraProperties`, `a`.`HttpMethod`, `a`.`HttpStatusCode`, `a`.`ImpersonatorTenantId`, `a`.`ImpersonatorUserId`, `a`.`TenantId`, `a`.`TenantName`, `a`.`Url`, `a`.`UserId`, `a`.`UserName` +FROM `AbpAuditLogs` AS `a` +WHERE @__ef_filter__p_0 OR (`a`.`TenantId` IS NULL) +ORDER BY `a`.`ExecutionTime` DESC +LIMIT @__p_1 OFFSET @__p_0 +2021-09-03 15:49:19.096 +08:00 [ERR] Failed executing DbCommand (465ms) [Parameters=[@__ef_filter__p_0='?' (DbType = Boolean)], CommandType='"Text"', CommandTimeout='30'] +SELECT COUNT(*) +FROM `AbpAuditLogs` AS `a` +WHERE @__ef_filter__p_0 OR (`a`.`TenantId` IS NULL) +2021-09-03 15:49:19.098 +08:00 [ERR] An exception occurred while iterating over the results of a query for context type 'Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingDbContext'. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 314 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 307 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.InitializeReaderAsync(DbContext _, Boolean result, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 314 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 307 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.InitializeReaderAsync(DbContext _, Boolean result, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() +2021-09-03 15:49:19.098 +08:00 [ERR] An exception occurred while iterating over the results of a query for context type 'Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingDbContext'. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 314 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 307 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.InitializeReaderAsync(DbContext _, Boolean result, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 314 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 307 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.InitializeReaderAsync(DbContext _, Boolean result, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() + at Microsoft.EntityFrameworkCore.EntityFrameworkQueryableExtensions.ToListAsync[TSource](IQueryable`1 source, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.EntityFrameworkQueryableExtensions.ToListAsync[TSource](IQueryable`1 source, CancellationToken cancellationToken) + at Volo.Abp.AuditLogging.EntityFrameworkCore.EfCoreAuditLogRepository.GetListAsync(String sorting, Int32 maxResultCount, Int32 skipCount, Nullable`1 startTime, Nullable`1 endTime, String httpMethod, String url, Nullable`1 userId, String userName, String applicationName, String correlationId, Nullable`1 maxExecutionDuration, Nullable`1 minExecutionDuration, Nullable`1 hasException, Nullable`1 httpStatusCode, Boolean includeDetails, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult() +2021-09-03 15:49:20.489 +08:00 [ERR] An error occurred using a transaction. +2021-09-03 15:49:20.489 +08:00 [ERR] An error occurred using a transaction. +2021-09-03 15:49:20.492 +08:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "对不起,在处理你的请求期间,产生了一个服务器内部错误!", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-09-03 15:49:20.492 +08:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "对不起,在处理你的请求期间,产生了一个服务器内部错误!", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-09-03 15:49:20.492 +08:00 [ERR] The operation was canceled. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 314 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 307 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.InitializeReaderAsync(DbContext _, Boolean result, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() + at Microsoft.EntityFrameworkCore.EntityFrameworkQueryableExtensions.ToListAsync[TSource](IQueryable`1 source, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.EntityFrameworkQueryableExtensions.ToListAsync[TSource](IQueryable`1 source, CancellationToken cancellationToken) + at Volo.Abp.AuditLogging.EntityFrameworkCore.EfCoreAuditLogRepository.GetListAsync(String sorting, Int32 maxResultCount, Int32 skipCount, Nullable`1 startTime, Nullable`1 endTime, String httpMethod, String url, Nullable`1 userId, String userName, String applicationName, String correlationId, Nullable`1 maxExecutionDuration, Nullable`1 minExecutionDuration, Nullable`1 hasException, Nullable`1 httpStatusCode, Boolean includeDetails, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at CompanyName.ProjectName.AuditLogs.AuditLogAppService.GetListAsync(PagingAuditLogListInput input) in D:\abp\aspnet-core\services\src\CompanyName.ProjectName.Application\AuditLogs\AuditLogAppService.cs:line 24 + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Auditing.AuditingInterceptor.ProceedByLoggingAsync(IAbpMethodInvocation invocation, IAuditingHelper auditingHelper, IAuditLogScope auditLogScope) + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at lambda_method1615(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-09-03 15:49:20.492 +08:00 [ERR] The operation was canceled. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 314 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 307 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.InitializeReaderAsync(DbContext _, Boolean result, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() + at Microsoft.EntityFrameworkCore.Query.ShapedQueryCompilingExpressionVisitor.SingleAsync[TSource](IAsyncEnumerable`1 asyncEnumerable, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.ShapedQueryCompilingExpressionVisitor.SingleAsync[TSource](IAsyncEnumerable`1 asyncEnumerable, CancellationToken cancellationToken) + at Volo.Abp.AuditLogging.EntityFrameworkCore.EfCoreAuditLogRepository.GetCountAsync(Nullable`1 startTime, Nullable`1 endTime, String httpMethod, String url, Nullable`1 userId, String userName, String applicationName, String correlationId, Nullable`1 maxExecutionDuration, Nullable`1 minExecutionDuration, Nullable`1 hasException, Nullable`1 httpStatusCode, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at CompanyName.ProjectName.AuditLogs.AuditLogAppService.GetListAsync(PagingAuditLogListInput input) in D:\abp\aspnet-core\services\src\CompanyName.ProjectName.Application\AuditLogs\AuditLogAppService.cs:line 40 + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Auditing.AuditingInterceptor.ProceedByLoggingAsync(IAbpMethodInvocation invocation, IAuditingHelper auditingHelper, IAuditLogScope auditLogScope) + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at lambda_method1615(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-09-03 15:49:20.493 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-09-03 15:49:20.493 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-09-03 15:49:20.493 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 2256.3061ms +2021-09-03 15:49:20.493 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 2256.2376ms +2021-09-03 15:49:20.493 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:20.493 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:20.583 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:49:20.584 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:49:20.586 +08:00 [INF] Successfully validated the token. +2021-09-03 15:49:20.588 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:20.588 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:49:20.630 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:20.630 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:20.630 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:20.630 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:20.630 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 500 - application/json;+charset=utf-8 2398.7723ms +2021-09-03 15:49:20.630 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 500 - application/json;+charset=utf-8 2398.1160ms +2021-09-03 15:49:20.637 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:49:20.640 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 52.0598ms +2021-09-03 15:49:20.640 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:20.643 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:20.679 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:20.679 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:20.679 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 95.7068ms +2021-09-03 15:49:21.226 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:49:21.226 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:49:21.229 +08:00 [INF] Successfully validated the token. +2021-09-03 15:49:21.230 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:21.230 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:49:21.237 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-09-03 15:49:21.238 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:49:21.240 +08:00 [INF] Successfully validated the token. +2021-09-03 15:49:21.242 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:21.243 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:49:21.262 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:49:21.264 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 34.4379ms +2021-09-03 15:49:21.265 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:21.267 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:21.307 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:49:21.307 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 63.4778ms +2021-09-03 15:49:21.307 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:21.316 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:21.322 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:21.322 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:21.322 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 96.0862ms +2021-09-03 15:49:21.346 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:21.346 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:21.346 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 108.5805ms +2021-09-03 15:49:24.824 +08:00 [DBG] Execution loop RecurringJobScheduler:18c9f30e caught an exception and will be retried in 00:00:49 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:49:24.824 +08:00 [DBG] Execution loop RecurringJobScheduler:18c9f30e will be retried in 00:00:49... +2021-09-03 15:49:28.404 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:49:28.404 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:49:28.404 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.6622ms +2021-09-03 15:49:28.408 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:49:28.408 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:49:28.411 +08:00 [INF] Successfully validated the token. +2021-09-03 15:49:28.413 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:28.413 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:49:28.451 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:49:28.454 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 40.5973ms +2021-09-03 15:49:28.454 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:28.458 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:28.500 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:28.501 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:28.501 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 92.8678ms +2021-09-03 15:49:29.384 +08:00 [DBG] Execution loop Worker:5e124286 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:49:29.384 +08:00 [DBG] Execution loop Worker:5e124286 will be retried in 00:05:00... +2021-09-03 15:49:29.440 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:49:29.440 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:49:29.443 +08:00 [INF] Successfully validated the token. +2021-09-03 15:49:29.444 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:29.445 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:49:29.474 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:49:29.474 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:49:29.475 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.6561ms +2021-09-03 15:49:29.479 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:49:29.479 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-09-03 15:49:29.479 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:49:29.480 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 35.7241ms +2021-09-03 15:49:29.480 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:29.482 +08:00 [INF] Successfully validated the token. +2021-09-03 15:49:29.483 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:29.486 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:29.487 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:49:29.518 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:29.518 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:29.521 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 80.4970ms +2021-09-03 15:49:29.545 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:49:29.546 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 58.5177ms +2021-09-03 15:49:29.546 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:29.550 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:29.582 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:29.582 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:29.582 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 103.2273ms +2021-09-03 15:49:37.453 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:49:37.454 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:49:37.454 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.8192ms +2021-09-03 15:49:37.461 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:49:37.462 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:49:37.465 +08:00 [INF] Successfully validated the token. +2021-09-03 15:49:37.468 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:37.469 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:49:37.515 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:49:37.517 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 47.7818ms +2021-09-03 15:49:37.517 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:37.521 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:37.568 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:37.568 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:37.569 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 107.5823ms +2021-09-03 15:49:38.227 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:49:38.227 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:49:38.230 +08:00 [INF] Successfully validated the token. +2021-09-03 15:49:38.231 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:38.231 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:49:38.233 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:49:38.233 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:49:38.233 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.3842ms +2021-09-03 15:49:38.236 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-09-03 15:49:38.236 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:49:38.239 +08:00 [INF] Successfully validated the token. +2021-09-03 15:49:38.241 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:38.241 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:49:38.264 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:49:38.265 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 33.7097ms +2021-09-03 15:49:38.265 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:38.268 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:38.309 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:49:38.311 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 69.9047ms +2021-09-03 15:49:38.311 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:38.319 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:38.319 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:38.319 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:38.319 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 92.2765ms +2021-09-03 15:49:38.347 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:38.348 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:38.348 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 112.2292ms +2021-09-03 15:49:41.595 +08:00 [DBG] Server szqh003802a:32672:20e38aab heartbeat successfully sent +2021-09-03 15:49:45.032 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:49:45.032 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:49:45.032 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.5229ms +2021-09-03 15:49:45.038 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:49:45.038 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:49:45.041 +08:00 [INF] Successfully validated the token. +2021-09-03 15:49:45.043 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:45.043 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:49:45.077 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:49:45.078 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 34.4995ms +2021-09-03 15:49:45.078 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:45.081 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:45.115 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:45.115 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:45.115 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 77.3826ms +2021-09-03 15:49:46.224 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:49:46.224 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:49:46.225 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:49:46.225 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:49:46.226 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.3669ms +2021-09-03 15:49:46.226 +08:00 [INF] Successfully validated the token. +2021-09-03 15:49:46.227 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:46.228 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:49:46.228 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-09-03 15:49:46.228 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:49:46.230 +08:00 [INF] Successfully validated the token. +2021-09-03 15:49:46.231 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:46.232 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:49:46.258 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:49:46.259 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 31.2287ms +2021-09-03 15:49:46.259 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:46.278 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:46.290 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:49:46.291 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 59.1446ms +2021-09-03 15:49:46.291 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:49:46.300 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:46.317 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:46.318 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:46.321 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 97.6227ms +2021-09-03 15:49:46.334 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:46.334 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:49:46.334 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 106.0984ms +2021-09-03 15:50:02.405 +08:00 [DBG] Execution loop Worker:df4fb1df caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:50:02.406 +08:00 [DBG] Execution loop Worker:df4fb1df will be retried in 00:05:00... +2021-09-03 15:50:11.621 +08:00 [DBG] Server szqh003802a:32672:20e38aab heartbeat successfully sent +2021-09-03 15:50:13.818 +08:00 [DBG] Execution loop Worker:e4fed13c caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:50:13.818 +08:00 [DBG] Execution loop Worker:e4fed13c will be retried in 00:05:00... +2021-09-03 15:50:13.821 +08:00 [DBG] Execution loop Worker:2c4e3abf caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:50:13.821 +08:00 [DBG] Execution loop Worker:2c4e3abf will be retried in 00:05:00... +2021-09-03 15:50:13.823 +08:00 [DBG] Execution loop Worker:ce698043 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:50:13.823 +08:00 [DBG] Execution loop Worker:ce698043 will be retried in 00:05:00... +2021-09-03 15:50:17.449 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:50:17.449 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:50:17.450 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.6130ms +2021-09-03 15:50:17.454 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-09-03 15:50:17.454 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:50:17.454 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:50:17.455 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:50:17.455 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.3269ms +2021-09-03 15:50:17.457 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:50:17.457 +08:00 [INF] Successfully validated the token. +2021-09-03 15:50:17.457 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:50:17.458 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:50:17.458 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:50:17.460 +08:00 [INF] Successfully validated the token. +2021-09-03 15:50:17.461 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:50:17.462 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:50:17.514 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:50:17.514 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:50:17.514 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 52.4641ms +2021-09-03 15:50:17.514 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:50:17.514 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 55.9251ms +2021-09-03 15:50:17.514 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:50:17.518 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:50:17.523 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:50:17.558 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:50:17.558 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:50:17.559 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 102.2376ms +2021-09-03 15:50:17.567 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:50:17.567 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:50:17.567 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 113.1038ms +2021-09-03 15:50:19.813 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 44 +2021-09-03 15:50:19.813 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:50:19.815 +08:00 [INF] Successfully validated the token. +2021-09-03 15:50:19.817 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:50:19.817 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:50:19.880 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:50:19.880 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 63.7086ms +2021-09-03 15:50:19.880 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:50:19.883 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:50:19.909 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:50:19.909 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:50:19.910 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 44 - 200 - application/json;+charset=utf-8 96.7377ms +2021-09-03 15:50:25.258 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:50:25.259 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:50:25.259 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4735ms +2021-09-03 15:50:25.261 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 44 +2021-09-03 15:50:25.261 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:50:25.264 +08:00 [INF] Successfully validated the token. +2021-09-03 15:50:25.265 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:50:25.265 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:50:25.300 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:50:25.300 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 34.4512ms +2021-09-03 15:50:25.300 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:50:25.303 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:50:25.331 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:50:25.331 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:50:25.331 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 44 - 200 - application/json;+charset=utf-8 69.8044ms +2021-09-03 15:50:34.070 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:50:34.070 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:50:34.071 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.5253ms +2021-09-03 15:50:34.072 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 48 +2021-09-03 15:50:34.072 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:50:34.076 +08:00 [INF] Successfully validated the token. +2021-09-03 15:50:34.077 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:50:34.077 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:50:34.109 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:50:34.109 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 31.6877ms +2021-09-03 15:50:34.109 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:50:34.111 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:50:34.149 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:50:34.149 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:50:34.149 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 48 - 200 - application/json;+charset=utf-8 77.1556ms +2021-09-03 15:50:39.269 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:50:39.270 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:50:39.270 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4199ms +2021-09-03 15:50:39.271 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:50:39.271 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:50:39.273 +08:00 [INF] Successfully validated the token. +2021-09-03 15:50:39.274 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:50:39.275 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:50:39.303 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:50:39.303 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 28.8723ms +2021-09-03 15:50:39.304 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:50:39.306 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:50:39.333 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:50:39.333 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:50:39.333 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 62.0082ms +2021-09-03 15:50:41.673 +08:00 [DBG] Server szqh003802a:32672:20e38aab heartbeat successfully sent +2021-09-03 15:50:44.152 +08:00 [DBG] Execution loop RecurringJobScheduler:18c9f30e caught an exception and will be retried in 00:01:04 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 552 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.MySqlWriteOnlyTransaction.<>c__DisplayClass27_0.b__0(MySqlConnection x) + at Hangfire.MySql.MySqlWriteOnlyTransaction.b__30_0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.<>c__DisplayClass18_0.b__0(MySqlConnection connection) + at Hangfire.MySql.MySqlStorage.UseTransaction[T](Func`2 func, Nullable`1 isolationLevel) + at Hangfire.MySql.MySqlStorage.UseTransaction(Action`1 action) + at Hangfire.MySql.MySqlWriteOnlyTransaction.Commit() + at Hangfire.Server.RecurringJobScheduler.ScheduleRecurringJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, RecurringJobEntity recurringJob, DateTime now) + at Hangfire.Server.RecurringJobScheduler.TryEnqueueBackgroundJob(BackgroundProcessContext context, IStorageConnection connection, String recurringJobId, DateTime now) + at Hangfire.Server.RecurringJobScheduler.<>c__DisplayClass18_0.b__0(IStorageConnection connection) + at Hangfire.Server.RecurringJobScheduler.UseConnectionDistributedLock[T](JobStorage storage, Func`2 action) + at Hangfire.Server.RecurringJobScheduler.EnqueueNextRecurringJobs(BackgroundProcessContext context) + at Hangfire.Server.RecurringJobScheduler.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:50:44.152 +08:00 [DBG] Execution loop RecurringJobScheduler:18c9f30e will be retried in 00:01:04... +2021-09-03 15:50:44.637 +08:00 [DBG] Execution loop Worker:db2c5e0b caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:50:44.638 +08:00 [DBG] Execution loop Worker:db2c5e0b will be retried in 00:05:00... +2021-09-03 15:50:47.703 +08:00 [DBG] Execution loop Worker:62de0320 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:50:47.704 +08:00 [DBG] Execution loop Worker:62de0320 will be retried in 00:05:00... +2021-09-03 15:50:48.582 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-09-03 15:50:48.582 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:50:48.583 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5065ms +2021-09-03 15:50:48.585 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-09-03 15:50:48.585 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:50:48.587 +08:00 [INF] Successfully validated the token. +2021-09-03 15:50:48.588 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-03 15:50:48.592 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-03 15:50:48.592 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-03 15:50:48.595 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-03 15:50:48.595 +08:00 [INF] Authorization was successful. +2021-09-03 15:50:48.596 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:50:48.596 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-09-03 15:50:48.628 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:50:48.632 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 35.9007ms +2021-09-03 15:50:48.632 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:50:48.636 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:50:48.663 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:50:48.663 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:50:48.664 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 78.9771ms +2021-09-03 15:50:52.728 +08:00 [DBG] Execution loop Worker:6d1d84d9 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:50:52.729 +08:00 [DBG] Execution loop Worker:6d1d84d9 will be retried in 00:05:00... +2021-09-03 15:50:59.772 +08:00 [DBG] Execution loop Worker:33ac362a caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:50:59.772 +08:00 [DBG] Execution loop Worker:33ac362a will be retried in 00:05:00... +2021-09-03 15:51:08.608 +08:00 [DBG] Execution loop Worker:e4502465 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:51:08.608 +08:00 [DBG] Execution loop Worker:e4502465 will be retried in 00:05:00... +2021-09-03 15:51:11.706 +08:00 [DBG] Server szqh003802a:32672:20e38aab heartbeat successfully sent +2021-09-03 15:51:19.286 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:51:19.286 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:51:19.287 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5425ms +2021-09-03 15:51:19.289 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-09-03 15:51:19.289 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:51:19.292 +08:00 [INF] Successfully validated the token. +2021-09-03 15:51:19.293 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:51:19.293 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:51:19.338 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:51:19.339 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 45.6979ms +2021-09-03 15:51:19.339 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:51:19.345 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:51:19.349 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-09-03 15:51:19.349 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:51:19.350 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 1.1572ms +2021-09-03 15:51:19.355 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-09-03 15:51:19.355 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:51:19.358 +08:00 [INF] Successfully validated the token. +2021-09-03 15:51:19.361 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-03 15:51:19.367 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-03 15:51:19.367 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-03 15:51:19.373 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-03 15:51:19.373 +08:00 [INF] Authorization was successful. +2021-09-03 15:51:19.376 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:51:19.377 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-09-03 15:51:19.389 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:51:19.389 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:51:19.390 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 100.5849ms +2021-09-03 15:51:19.417 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:51:19.422 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 45.3029ms +2021-09-03 15:51:19.422 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:51:19.426 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:51:19.639 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:51:19.639 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:51:19.681 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 325.5955ms +2021-09-03 15:51:19.723 +08:00 [DBG] Execution loop Worker:e146ff55 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:51:19.723 +08:00 [DBG] Execution loop Worker:e146ff55 will be retried in 00:05:00... +2021-09-03 15:51:27.221 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:51:27.221 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:51:27.222 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5833ms +2021-09-03 15:51:27.223 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-09-03 15:51:27.224 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:51:27.227 +08:00 [INF] Successfully validated the token. +2021-09-03 15:51:27.229 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:51:27.229 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:51:27.236 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-09-03 15:51:27.237 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:51:27.237 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5155ms +2021-09-03 15:51:27.239 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-09-03 15:51:27.239 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:51:27.243 +08:00 [INF] Successfully validated the token. +2021-09-03 15:51:27.250 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-03 15:51:27.256 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-03 15:51:27.256 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-03 15:51:27.262 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-03 15:51:27.262 +08:00 [INF] Authorization was successful. +2021-09-03 15:51:27.265 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:51:27.267 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-09-03 15:51:27.271 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:51:27.272 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 42.5039ms +2021-09-03 15:51:27.272 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:51:27.277 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:51:27.308 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:51:27.318 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 50.9644ms +2021-09-03 15:51:27.318 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:51:27.323 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:51:27.323 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:51:27.323 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 99.6461ms +2021-09-03 15:51:27.324 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:51:27.352 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:51:27.352 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:51:27.353 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 113.9460ms +2021-09-03 15:51:32.227 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-03 15:51:32.228 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:51:32.228 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4618ms +2021-09-03 15:51:32.230 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-09-03 15:51:32.230 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:51:32.233 +08:00 [INF] Successfully validated the token. +2021-09-03 15:51:32.234 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:51:32.234 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:51:32.234 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-09-03 15:51:32.235 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:51:32.237 +08:00 [INF] Successfully validated the token. +2021-09-03 15:51:32.237 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-03 15:51:32.241 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-03 15:51:32.241 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-03 15:51:32.244 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-03 15:51:32.244 +08:00 [INF] Authorization was successful. +2021-09-03 15:51:32.245 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:51:32.245 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-09-03 15:51:32.282 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:51:32.283 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 48.294ms +2021-09-03 15:51:32.283 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:51:32.288 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:51:32.309 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:51:32.320 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 74.8472ms +2021-09-03 15:51:32.320 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:51:32.327 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:51:32.332 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:51:32.332 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:51:32.333 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 102.8430ms +2021-09-03 15:51:32.359 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:51:32.359 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:51:32.360 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 125.2287ms +2021-09-03 15:51:39.977 +08:00 [DBG] Execution loop Worker:d26777a2 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:51:39.977 +08:00 [DBG] Execution loop Worker:d26777a2 will be retried in 00:05:00... +2021-09-03 15:51:41.734 +08:00 [DBG] Server szqh003802a:32672:20e38aab heartbeat successfully sent +2021-09-03 15:51:46.740 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-09-03 15:51:46.741 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:51:46.741 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5128ms +2021-09-03 15:51:46.742 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-09-03 15:51:46.742 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:51:46.744 +08:00 [INF] Successfully validated the token. +2021-09-03 15:51:46.745 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-03 15:51:46.749 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-03 15:51:46.749 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-03 15:51:46.752 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-03 15:51:46.752 +08:00 [INF] Authorization was successful. +2021-09-03 15:51:46.753 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:51:46.753 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-09-03 15:51:46.787 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:51:46.790 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 37.207ms +2021-09-03 15:51:46.790 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:51:46.794 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:51:46.824 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:51:46.824 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:51:46.825 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 82.4175ms +2021-09-03 15:51:47.634 +08:00 [DBG] Execution loop Worker:275ef276 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:51:47.634 +08:00 [DBG] Execution loop Worker:275ef276 will be retried in 00:05:00... +2021-09-03 15:51:50.022 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:51:50.022 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:51:50.022 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4407ms +2021-09-03 15:51:50.024 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 +2021-09-03 15:51:50.024 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:51:50.026 +08:00 [INF] Successfully validated the token. +2021-09-03 15:51:50.027 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:51:50.028 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:51:50.056 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:51:50.057 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 28.8525ms +2021-09-03 15:51:50.057 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:51:50.059 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:51:50.097 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:51:50.097 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:51:50.097 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 29 - 200 - application/json;+charset=utf-8 73.0693ms +2021-09-03 15:51:57.103 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:51:57.103 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:51:57.103 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4351ms +2021-09-03 15:51:57.104 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 113 +2021-09-03 15:51:57.105 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:51:57.107 +08:00 [INF] Successfully validated the token. +2021-09-03 15:51:57.108 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:51:57.108 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:51:57.138 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:51:57.138 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 29.8152ms +2021-09-03 15:51:57.138 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:51:57.141 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:51:57.179 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:51:57.179 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:51:57.179 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 113 - 200 - application/json;+charset=utf-8 74.4409ms +2021-09-03 15:52:02.163 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - +2021-09-03 15:52:02.163 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:52:02.163 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/AuditLogs/page - - - 204 - - 0.4309ms +2021-09-03 15:52:02.165 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 113 +2021-09-03 15:52:02.166 +08:00 [INF] CORS policy execution successful. +2021-09-03 15:52:02.168 +08:00 [INF] Successfully validated the token. +2021-09-03 15:52:02.169 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:52:02.169 +08:00 [INF] Route matched with {action = "List", controller = "AuditLog", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput]] ListAsync(CompanyName.ProjectName.AuditLogs.PagingAuditLogListInput) on controller CompanyName.ProjectName.Controllers.Systems.AuditLogController (CompanyName.ProjectName.HttpApi). +2021-09-03 15:52:02.199 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.AuditLogs.GetAuditLogPageListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-03 15:52:02.199 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi) in 29.9138ms +2021-09-03 15:52:02.199 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AuditLogController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-03 15:52:02.202 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:52:02.239 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:52:02.239 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-03 15:52:02.239 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/AuditLogs/page application/json 113 - 200 - application/json;+charset=utf-8 73.7027ms +2021-09-03 15:52:06.327 +08:00 [DBG] Execution loop Worker:1b15f005 caught an exception and will be retried in 00:05:00 +MySqlConnector.MySqlException (0x80004005): The Command Timeout expired before the operation completed. + ---> MySqlConnector.MySqlException (0x80004005): Query execution was interrupted + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 132 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-03 15:52:06.327 +08:00 [DBG] Execution loop Worker:1b15f005 will be retried in 00:05:00... +2021-09-03 15:52:11.757 +08:00 [DBG] Server szqh003802a:32672:20e38aab heartbeat successfully sent diff --git a/aspnet-core/services/src/CompanyName.ProjectName.HttpApi.Host/ProjectNameHttpApiHostModule.cs b/aspnet-core/services/src/CompanyName.ProjectName.HttpApi.Host/ProjectNameHttpApiHostModule.cs index d491ba5f..0f3d72f3 100644 --- a/aspnet-core/services/src/CompanyName.ProjectName.HttpApi.Host/ProjectNameHttpApiHostModule.cs +++ b/aspnet-core/services/src/CompanyName.ProjectName.HttpApi.Host/ProjectNameHttpApiHostModule.cs @@ -63,7 +63,7 @@ namespace CompanyName.ProjectName public override void OnPostApplicationInitialization(ApplicationInitializationContext context) { - context.CreateRecurringJob(); + // context.CreateRecurringJob(); base.OnPostApplicationInitialization(context); } diff --git a/aspnet-core/services/src/CompanyName.ProjectName.HttpApi/Controllers/Systems/AuditLogController.cs b/aspnet-core/services/src/CompanyName.ProjectName.HttpApi/Controllers/Systems/AuditLogController.cs index aa5ea664..4bd443ec 100644 --- a/aspnet-core/services/src/CompanyName.ProjectName.HttpApi/Controllers/Systems/AuditLogController.cs +++ b/aspnet-core/services/src/CompanyName.ProjectName.HttpApi/Controllers/Systems/AuditLogController.cs @@ -11,7 +11,7 @@ using Volo.Abp.Identity; namespace CompanyName.ProjectName.Controllers.Systems { [Route("AuditLogs")] - [Authorize] + //[Authorize] public class AuditLogController:ProjectNameController { private readonly IAuditLogAppService _auditLogAppService; @@ -22,7 +22,7 @@ namespace CompanyName.ProjectName.Controllers.Systems } [HttpPost("page")] - [Authorize(ProjectNamePermissions.AbpIdentityExtend.AuditLogQuery)] + //[Authorize(ProjectNamePermissions.AbpIdentityExtend.AuditLogQuery)] [SwaggerOperation(summary: "分页获取用户信息", Tags = new[] { "AuditLogs" })] public Task> ListAsync(PagingAuditLogListInput input) { diff --git a/vben271/src/router/routes/modules/admin.ts b/vben271/src/router/routes/modules/admin.ts index 5b858fed..d856db35 100644 --- a/vben271/src/router/routes/modules/admin.ts +++ b/vben271/src/router/routes/modules/admin.ts @@ -37,6 +37,16 @@ const admin: AppRouteModule = { icon: 'ant-design:lock-outlined', }, }, + { + path: 'abpAuditLogs', + name: 'AuditLogs', + component: () => import('/@/views/admin/auditLog/AuditLog.vue'), + meta: { + title: '审计日志', + //policy: 'AbpIdentity.Roles.Query', + icon: 'ant-design:snippets-twotone', + }, + }, { path: 'hangfire', name: '后台任务', diff --git a/vben271/src/settings/componentSetting.ts b/vben271/src/settings/componentSetting.ts index 8b3ba8e7..9611af8f 100644 --- a/vben271/src/settings/componentSetting.ts +++ b/vben271/src/settings/componentSetting.ts @@ -9,13 +9,13 @@ export default { // support xxx.xxx.xxx fetchSetting: { // The field name of the current page passed to the background - pageField: 'page', + pageField: 'pageIndex', // The number field name of each page displayed in the background sizeField: 'pageSize', // Field name of the form data returned by the interface listField: 'items', // Total number of tables returned by the interface field name - totalField: 'total', + totalField: 'totalCount', }, // Number of pages that can be selected pageSizeOptions: ['10', '50', '80', '100'], diff --git a/vben271/src/views/admin/auditLog/AuditLog.ts b/vben271/src/views/admin/auditLog/AuditLog.ts new file mode 100644 index 00000000..b2547c90 --- /dev/null +++ b/vben271/src/views/admin/auditLog/AuditLog.ts @@ -0,0 +1,75 @@ +import { FormSchema } from '/@/components/Table'; +import { BasicColumn } from '/@/components/Table'; +import { useI18n } from '/@/hooks/web/useI18n'; +const { t } = useI18n(); +import moment from 'moment'; +import { AuditLogsServiceProxy, PagingAuditLogListInput } from '/@/services/ServiceProxies'; +export const searchFormSchema: FormSchema[] = [ + { + field: 'userName', + label: '用户', + component: 'Input', + colProps: { span: 8 }, + }, + { + field: 'time', + component: 'RangePicker', + label: '执行时间', + colProps: { + span: 6, + }, + }, +]; + +export const tableColumns: BasicColumn[] = [ + { + title: '租户', + dataIndex: 'tenantName', + width: 100, + }, + { + title: '用户', + dataIndex: 'userName', + width: 100, + }, + { + title: 'HttpMethod', + dataIndex: 'httpMethod', + width: 100, + }, + { + title: 'HttpStatusCode', + dataIndex: 'httpStatusCode', + width: 120, + }, + { + title: 'Url', + dataIndex: 'url', + width: 250, + }, + { + title: 'ExecutionTime', + dataIndex: 'executionTime', + width: 150, + customRender: ({ text }) => { + return moment(text).format('YYYY-MM-DD HH:mm:ss'); + }, + }, + { + title: 'BrowserInfo', + dataIndex: 'browserInfo', + }, + { + title: 'Exceptions', + dataIndex: 'exceptions', + }, +]; +/** + * 分页列表 + * @param params + * @returns + */ +export async function getTableListAsync(params: PagingAuditLogListInput) { + const _auditLogsServiceProxy = new AuditLogsServiceProxy(); + return _auditLogsServiceProxy.page(params); +} diff --git a/vben271/src/views/admin/auditLog/AuditLog.vue b/vben271/src/views/admin/auditLog/AuditLog.vue new file mode 100644 index 00000000..ecac8bfe --- /dev/null +++ b/vben271/src/views/admin/auditLog/AuditLog.vue @@ -0,0 +1,47 @@ + + +