首页 > 解决方案 > .net core 2.1 MVC for MySQL 数据库中的瞬态故障处理

问题描述

services.AddDbContext<MyContext>(options =>
{
    options.UseSqlServer(mysqlConnection,
    sqlServerOptionsAction: sqlOptions =>
    {
        sqlOptions.EnableRetryOnFailure(
        maxRetryCount: 10,
        maxRetryDelay: TimeSpan.FromSeconds(30),
        errorNumbersToAdd: null);
    });
});

我在以下位置找到了此代码段:

https://docs.microsoft.com/en-us/dotnet/standard/microservices-architecture/implement-resilient-applications/implement-resilient-entity-framework-core-sql-connections

我的数据库是 MySQL 5.7

我将上面的代码更改为:

在此处输入图像描述

这意味着 EnableRetryOnFailure 不适用于 MySQL DB。我现在如何设置重试、延迟等策略?

另外,如果我尝试设置 ExecutionStrategy 功能,我会得到:

在此处输入图像描述

然后我尝试使用以下方法创建我自己的策略:

public class MyStrategy: ExecutionStrategy
{
   ......
}

但是现在如何使用这个类?

标签: mysqlasp.net-core.net-coreentity-framework-core

解决方案


有一个库: https ://github.com/PomeloFoundation/Pomelo.EntityFrameworkCore.MySql

设置步骤:

  1. 从NuGet 下载Pomelo.EntityFrameworkCore.MySql

  2. 将此使用添加到您的课程中:

    using Pomelo.EntityFrameworkCore.MySql.Infrastructure;

  3. 将此添加到您的ConfigureServices方法中:

    services.AddDbContextPool<ApplicationDbContext>( 
    options => options.UseMySql("Server=localhost;Database=ef;User=root;Password=123456;",
    
        mySqlOptions =>
        {
            mySqlOptions.ServerVersion(new Version(5, 7, 17), ServerType.MySql)
            .EnableRetryOnFailure(
            maxRetryCount: 10,
            maxRetryDelay: TimeSpan.FromSeconds(30),
            errorNumbersToAdd: null); 
        }
    ));
    

推荐阅读