sharding/samples/Sample.MySql/Startup.cs

285 lines
14 KiB
C#
Raw Normal View History

using System.Diagnostics;
2022-01-18 11:22:12 +08:00
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
2022-07-04 22:47:03 +08:00
using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.Extensions.Caching.Memory;
2022-01-18 11:22:12 +08:00
using Sample.MySql.DbContexts;
using Sample.MySql.Domain.Entities;
using Sample.MySql.multi;
2022-01-18 11:22:12 +08:00
using Sample.MySql.Shardings;
using ShardingCore;
using ShardingCore.Bootstrappers;
using ShardingCore.Core;
using ShardingCore.Core.ModelCacheLockerProviders;
using ShardingCore.Core.RuntimeContexts;
2023-03-30 15:37:54 +08:00
using ShardingCore.DynamicDataSources;
2022-07-04 22:47:03 +08:00
using ShardingCore.EFCores;
using ShardingCore.Extensions;
using ShardingCore.Helpers;
2022-12-13 17:36:51 +08:00
using ShardingCore.Sharding.ParallelTables;
using ShardingCore.Sharding.ReadWriteConfigurations;
using ShardingCore.TableExists;
using ShardingCore.TableExists.Abstractions;
namespace Sample.MySql
{
2022-07-04 22:47:03 +08:00
// public class AutoStart : IHostedService
// {
//
// public AutoStart(IShardingBootstrapper shardingBootstrapper)
// {
// shardingBootstrapper.Start();
// }
// public Task StartAsync(CancellationToken cancellationToken)
// {
// return Task.CompletedTask;
// }
//
// public Task StopAsync(CancellationToken cancellationToken)
// {
// return Task.CompletedTask;
// }
// }
2023-08-25 22:17:54 +08:00
// public interface ITenant
// {
// string GetTenantId();
// }
//
// public class DefaultTenant :ITenant
// {
// private readonly string _tenantId;
//
// public DefaultTenant(string tenantId)
// {
// _tenantId = tenantId;
// }
// public string GetTenantId()
// {
// return _tenantId;
// }
// }
public class Startup
{
2022-01-18 11:22:12 +08:00
public static readonly ILoggerFactory efLogger = LoggerFactory.Create(builder =>
{
builder.AddFilter((category, level) =>
category == DbLoggerCategory.Database.Command.Name && level == LogLevel.Information).AddConsole();
2022-01-18 11:22:12 +08:00
});
public Startup(IConfiguration configuration)
{
Configuration = configuration;
}
public IConfiguration Configuration { get; }
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
2022-07-04 22:47:03 +08:00
// services.AddHostedService<AutoStart>();
services.AddControllers();
services.AddSingleton<IMemoryCache>(sp => new MemoryCache(new MemoryCacheOptions { SizeLimit = 102400 }));
2022-12-09 21:02:52 +08:00
//
// Action<IServiceProvider, DbContextOptionsBuilder> optionsBuilder = null;
// services.AddDbContext<DefaultShardingDbContext>(optionsBuilder);
// services.AddDbContext<DefaultShardingDbContext>((sp,builder) =>
// {
// optionsBuilder(sp, builder);
// });
//
2023-08-25 22:17:54 +08:00
var type = typeof(MyUserRoute);
2023-03-30 15:37:54 +08:00
2023-06-28 21:51:29 +08:00
services.AddDbContext<UnShardingDbContext>(o =>
o.UseMySql(
"server=127.0.0.1;port=3306;database=dbdbdxx;userid=root;password=root;",new MySqlServerVersion(
new Version())));
2022-09-19 10:42:10 +08:00
services.AddShardingDbContext<DefaultShardingDbContext>()
2023-03-30 15:37:54 +08:00
.UseRouteConfig((sp, o) =>
{
// AppDomain.CurrentDomain.GetAssemblies().
o.AddShardingTableRoute<DynamicTableRoute>();
2023-03-30 15:37:54 +08:00
o.AddShardingTableRoute<SysUserLogByMonthRoute>();
o.AddShardingTableRoute<SysUserModVirtualTableRoute>();
2022-09-19 10:42:10 +08:00
o.AddShardingDataSourceRoute<SysUserModVirtualDataSourceRoute>();
2022-12-13 17:36:51 +08:00
o.AddShardingTableRoute<TestModRoute>();
o.AddShardingTableRoute<TestModItemRoute>();
2023-03-16 18:23:23 +08:00
o.AddShardingTableRoute<TestTableRoute>();
2022-12-13 17:36:51 +08:00
o.AddParallelTableGroupNode(new ParallelTableGroupNode(new List<ParallelTableComparerType>()
{
new ParallelTableComparerType(typeof(TestMod)),
new ParallelTableComparerType(typeof(TestModItem)),
}));
2023-03-30 15:37:54 +08:00
}).UseConfig((sp, o) =>
{
2023-02-23 21:11:24 +08:00
// var memoryCache = sp.ApplicationServiceProvider.GetRequiredService<IMemoryCache>();
// o.UseExecutorDbContextConfigure(b =>
// {
// b.UseMemoryCache(memoryCache);
// });
o.CheckShardingKeyValueGenerated = false;
2023-04-27 17:09:33 +08:00
o.IgnoreCreateTableError = false;
2022-12-09 21:02:52 +08:00
o.UseEntityFrameworkCoreProxies = true;
2022-11-27 00:08:36 +08:00
o.CacheModelLockConcurrencyLevel = 1024;
o.CacheEntrySize = 1;
o.CacheModelLockObjectSeconds = 10;
2022-11-26 10:06:46 +08:00
o.CheckShardingKeyValueGenerated = false;
2023-03-30 15:37:54 +08:00
var loggerFactory1 = sp.GetService<ILoggerFactory>();
var loggerFactory2 = sp.ApplicationServiceProvider.GetService<ILoggerFactory>();
// o.UseEntityFrameworkCoreProxies = true;
2023-03-30 15:37:54 +08:00
o.ThrowIfQueryRouteNotMatch = false;
2022-09-19 10:42:10 +08:00
o.AutoUseWriteConnectionStringAfterWriteDb = true;
o.MaxQueryConnectionsLimit = 10;
o.UseExecutorDbContextConfigure(op =>
{
});
o.UseShardingQuery((conStr, builder) =>
{
// var logger = sp.ApplicationServiceProvider.GetService<ILogger<Startup>>();
// logger.LogInformation(conStr);
builder.UseMySql(conStr, new MySqlServerVersion(new Version()));
2023-07-19 15:13:48 +08:00
// .UseQueryTrackingBehavior(QueryTrackingBehavior.NoTracking)
// .UseLoggerFactory(loggerFactory1)
// .EnableSensitiveDataLogging();
2022-12-09 21:02:52 +08:00
//.UseQueryTrackingBehavior(QueryTrackingBehavior.NoTracking);
});
o.UseShardingTransaction((connection, builder) =>
{
builder
.UseMySql(connection, new MySqlServerVersion(new Version()));
// .UseQueryTrackingBehavior(QueryTrackingBehavior.NoTracking)
// .UseLoggerFactory(loggerFactory1)
// .EnableSensitiveDataLogging();
2023-03-30 15:37:54 +08:00
//.UseQueryTrackingBehavior(QueryTrackingBehavior.NoTracking);
});
2022-09-19 10:42:10 +08:00
o.AddDefaultDataSource("ds0",
"server=127.0.0.1;port=3306;database=dbdbd0;userid=root;password=root;");
2022-09-19 10:42:10 +08:00
o.AddExtraDataSource(sp => new Dictionary<string, string>()
{
{ "ds1", "server=127.0.0.1;port=3306;database=dbdbd1;userid=root;password=root;" },
{ "ds2", "server=127.0.0.1;port=3306;database=dbdbd2;userid=root;password=root;" }
2022-09-19 10:42:10 +08:00
});
o.UseShardingMigrationConfigure(b =>
{
b.ReplaceService<IMigrationsSqlGenerator, ShardingMySqlMigrationsSqlGenerator>();
});
2023-03-30 15:37:54 +08:00
}).ReplaceService<IModelCacheLockerProvider, DicModelCacheLockerProvider>()
.ReplaceService<IDataSourceInitializer, DataSourceInitializer>()
2022-09-19 10:42:10 +08:00
.AddShardingCore();
// services.AddDbContext<DefaultShardingDbContext>(ShardingCoreExtension
// .UseMutliDefaultSharding<DefaultShardingDbContext>);
// services.AddShardingDbContext<DefaultShardingDbContext>()
// .AddEntityConfig(o =>
// {
// o.CreateDataBaseOnlyOnStart = true;
// o.CreateShardingTableOnStart = true;
// o.EnsureCreatedWithOutShardingTable = true;
// o.IgnoreCreateTableError = true;
// o.AddShardingTableRoute<SysUserLogByMonthRoute>();
// o.AddShardingTableRoute<SysUserModVirtualTableRoute>();
// o.AddShardingDataSourceRoute<SysUserModVirtualDataSourceRoute>();
// o.UseShardingQuery((conStr, builder) =>
// {
// builder.UseMySql(conStr, new MySqlServerVersion(new Version())
// ,b=>b.EnableRetryOnFailure()
// )
// .UseQueryTrackingBehavior(QueryTrackingBehavior.NoTracking).UseLoggerFactory(efLogger);
// //builder.UseMySql(conStr, new MySqlServerVersion(new Version()));
// });
// o.UseShardingTransaction((connection, builder) =>
// {
// builder.UseMySql(connection, new MySqlServerVersion(new Version())
// ,b=>b.EnableRetryOnFailure()
// )
// .UseQueryTrackingBehavior(QueryTrackingBehavior.NoTracking).UseLoggerFactory(efLogger);
// });
// })
// .AddConfig(op =>
// {
// op.ConfigId = "c0";
// op.AddDefaultDataSource("ds0",
// "server=127.0.0.1;port=3306;database=dbdbd0;userid=root;password=root;");
//
// //op.AddDefaultDataSource("ds0", "server=127.0.0.1;port=3306;database=db2;userid=root;password=L6yBtV6qNENrwBy7;")
// op.ReplaceTableEnsureManager(sp=>new MySqlTableEnsureManager<DefaultShardingDbContext>());
// }).EnsureConfig();
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
app.ApplicationServices.UseAutoTryCompensateTable();
2023-06-28 21:51:29 +08:00
using (var scope = app.ApplicationServices.CreateScope())
{
var unShardingDbContext = scope.ServiceProvider.GetService<UnShardingDbContext>();
unShardingDbContext.Database.EnsureCreated();
// var shardingRuntimeContext = defaultShardingDbContext.GetShardingRuntimeContext();
// var tableRouteManager = shardingRuntimeContext.GetTableRouteManager();
// var virtualTableRoute = (SysUserLogByMonthRoute)tableRouteManager.GetRoute(typeof(SysUserLogByMonth));
// virtualTableRoute.Append("2021");
}
// var shardingRuntimeContext = app.ApplicationServices.GetRequiredService<IShardingRuntimeContext>();
// var entityMetadataManager = shardingRuntimeContext.GetEntityMetadataManager();
// var entityMetadata = entityMetadataManager.TryGet<SysUserMod>();
2023-03-30 15:37:54 +08:00
// using (var scope = app.ApplicationServices.CreateScope())
// {
// var defaultShardingDbContext = scope.ServiceProvider.GetService<DefaultShardingDbContext>();
// // if (defaultShardingDbContext.Database.GetPendingMigrations().Any())
// {
// defaultShardingDbContext.Database.GenerateCreateScript();
// }
// }
// app.ApplicationServices.UseAutoTryCompensateTable();
// using (var scope = app.ApplicationServices.CreateScope())
// {
2023-05-11 12:25:46 +08:00
// var defaultShardingDbContext = scope.ServiceProvider.GetService<DefaultShardingDbContext>();
// // if (defaultShardingDbContext.Database.GetPendingMigrations().Any())
// {
// try
// {
//
// defaultShardingDbContext.Database.Migrate();
// }
// catch (Exception e)
// {
// }
// }
2023-05-11 12:25:46 +08:00
// // var shardingRuntimeContext = defaultShardingDbContext.GetShardingRuntimeContext();
// // var tableRouteManager = shardingRuntimeContext.GetTableRouteManager();
// // var virtualTableRoute = (SysUserLogByMonthRoute)tableRouteManager.GetRoute(typeof(SysUserLogByMonth));
// // virtualTableRoute.Append("2021");
// }
//
// app.ApplicationServices.UseAutoTryCompensateTable(12);
app.UseRouting();
app.UseAuthorization();
app.UseEndpoints(endpoints => { endpoints.MapControllers(); });
// for (int i = 1; i < 500; i++)
// {
// using (var conn = new MySqlConnection(
// $"server=127.0.0.1;port=3306;database=dbdbd1;userid=root;password=root;"))
// {
// conn.Open();
// }
// DynamicShardingHelper.DynamicAppendDataSource<DefaultShardingDbContext>($"c0",$"ds{i}",$"server=127.0.0.1;port=3306;database=dbdbd{i};userid=root;password=root;");
//
// }
2023-07-19 15:13:48 +08:00
// using (var scope = app.ApplicationServices.CreateScope())
// {
// var defaultShardingDbContext = scope.ServiceProvider.GetRequiredService<DefaultShardingDbContext>();
// var addMonths = DateTime.Now.AddMonths(-5);
// defaultShardingDbContext.Set<SysUserLogByMonth>().Where(o => o.Time >= addMonths).Any();
// }
app.DbSeed();
}
}
}