ShardingCore

`ShardingCore` 是一个支持efcore 2.x 3.x 5.x的一个对于数据库分表的一个简易扩展, 目前该库暂未支持分库(未来会支持),仅支持分表,该项目的理念是让你可以已最少的代码量来实现自动分表的实现,经过多个开源项目的摸索参考目前正式开源本项目 项目地址 [github](https://github.com/xuejmnet/sharding-core) 喜欢的朋友可以点下star Thanks♪(・ω・)ノ ### 依赖 Release | EF Core | .NET Standard | .NET (Core) | Sql Server | Pomelo.EntityFrameworkCore.MySql --- | --- | --- | --- | --- | --- [5.x.x.x](https://www.nuget.org/packages/ShardingCore/5.0.0.3) | >= 5.0.x | 2.1 | 3.0+ | >= 2012 | 5.0.0-alpha.2 [3.x.x.x](https://www.nuget.org/packages/ShardingCore/3.0.0.3) | 3.1.10 | 2.0 | 2.0+ | >= 2012 | 3.2.4 [2.x.x.x](https://www.nuget.org/packages/ShardingCore/2.0.0.3) | 2.2.6 | 2.0 | 2.0+ | >= 2008 | 2.2.6 - [开始](#开始) - [简介](#简介) - [概念](#概念) - [优点](#优点) - [缺点](#缺点) - [安装](#安装) - [配置](#配置) - [使用](#使用) - [默认路由](#默认路由) - [Api](#Api) - [高级配置](#高级配置) - [手动路由](#手动路由) - [自动建表](#自动建表) - [事务](#事务) - [批量操作](#批量操作) - [注意事项](#注意事项) - [计划(Future)](#计划) - [最后](#最后) # 开始 以下所有例子都以Sql Server为例 MySql亦如此 ## 简介 目前该库处于初期阶段,有很多bug也希望各位多多理解,一起努力为.net生态做出一份微薄之力,目前该库支持的分页可以进行完全的自定义,基本上可以满足95%以上的 业务需求,唯一的限制就是分表规则必须满足 x+y+z,x表示固定的表名,y表示固定的表名和表后缀之间的联系(可以为空),z表示表后缀,可以按照你自己的任意业务逻辑进行切分, 如:user_0,user_1或者user202101,user202102...当然该库同样适用于多租户模式下的隔离,该库为了支持之后的分库已经重写了之前的union all查询模式,并且支持多种api, 支持多种查询包括join group by max count min avg sum ...等一系列查询,之后可能会添加更多支持,目前该库的使用非常简单,基本上就是针对IQueryable的扩展,为了保证 该库的简介目前仅使用该库无法或者说难以实现自动建表,但是只需要配合定时任务该库即可完成24小时无人看管自动管理。该库提供了 [IShardingTableCreator](https://github.com/xuejmnet/sharding-core/blob/main/src/ShardingCore/TableCreator/IShardingTableCreator.cs) 作为建表的依赖,如果需要可以参考 [按天自动建表](https://github.com/xuejmnet/sharding-core/tree/main/samples/Samples.AutoByDate.SqlServer) ## 概念 本库的几个简单的核心概念: - [Tail] 尾巴、后缀物理表的后缀 - [TailPrefix] 尾巴前缀虚拟表和物理表的后缀中间的字符 - [物理表] 顾名思义就是数据库对应的实际表信息,表名(tablename+ tailprefix+ tail) [IPhysicTable](https://github.com/xuejmnet/sharding-core/blob/main/src/ShardingCore/Core/PhysicTables/IPhysicTable.cs) - [虚拟表] 虚拟表就是系统将所有的物理表在系统里面进行抽象的一个总表对应到程序就是一个entity[IVirtualTable](https://github.com/xuejmnet/sharding-core/blob/main/src/ShardingCore/Core/VirtualTables/IVirtualTable.cs) - [虚拟路由] 虚拟路由就是联系虚拟表和物理表的中间介质,虚拟表在整个程序中只有一份,那么程序如何知道要查询系统哪一张表呢,最简单的方式就是通过虚拟表对应的路由[IVirtualRoute](https://github.com/xuejmnet/sharding-core/blob/main/src/ShardingCore/Core/VirtualRoutes/IVirtualRoute.cs) ,由于基本上所有的路由都是和业务逻辑相关的所以虚拟路由由用户自己实现,该框架提供一个高级抽象 ## 优点 - [支持自定义分表规则] - [支持任意类型分表key] - [针对iqueryable的扩展方便使用] - [支持分表下的连表] ```join``` - [支持针对批处理的使用] ``` BulkInsert、BulkUpdate、BulkDelete``` - [提供多种默认分表规则路由] 按时间按取模 - [针对分页进行优化] 大页数跳转支持低内存流式处理 ## 缺点 - [暂不支持分库(不久后会支持)] - [消耗连接]出现分表与分表对象进行join如果条件没法索引到具体表会生成```笛卡尔积```导致连接数爆炸,后期会进行针对该情况的配置 - [该库比较年轻] 可能会有一系列bug或者单元测试不到位的情况,但是只要你在群里或者提了issues我会尽快解决 ## 安装 ```xml ``` ## 配置 配置entity 推荐 [fluent api](https://docs.microsoft.com/en-us/ef/core/modeling/) 可以实现自动建表功能 `IShardingEntity`数据库对象必须继承该接口 `ShardingKey`分表字段需要使用该特性 ```c# public class SysUserMod:IShardingEntity { /// /// 用户Id用于分表 /// [ShardingKey] public string Id { get; set; } /// /// 用户名称 /// public string Name { get; set; } /// /// 用户姓名 /// public int Age { get; set; } } public class SysUserModMap:IEntityTypeConfiguration { public void Configure(EntityTypeBuilder builder) { builder.HasKey(o => o.Id); builder.Property(o => o.Id).IsRequired().HasMaxLength(128); builder.Property(o => o.Name).HasMaxLength(128); builder.ToTable(nameof(SysUserMod)); } } ``` 创建virtual route 实现 `AbstractShardingOperatorVirtualRoute` 抽象,或者实现系统默认的虚拟路由 框架默认有提供几个简单的路由 [默认路由](#默认路由) ```c# public class SysUserModVirtualRoute : AbstractSimpleShardingModKeyStringVirtualRoute { public SysUserModVirtualRoute() : base(3) { } public override List GetAllTails() { return new() { "0","1","2"}; } } ``` - `GetAllTails` 现在数据库已存在的尾巴有哪些 `Startup.cs` 下的 `ConfigureServices(IServiceCollection services)` ```c# services.AddShardingSqlServer(o => { o.ConnectionString = ""; o.AddSharding(); o.UseShardingCoreConfig((provider, config) => { //如果是development就判断并且新建数据库如果不存在的话(ishardingentity不会被创建) config.EnsureCreated = provider.GetService().IsDevelopment(); //ishardingentity表是否需要在启动时创建(如果已创建可以选择不创建) config.CreateShardingTableOnStart = true; }); }); ``` `Startup.cs` 下的 ` Configure(IApplicationBuilder app, IWebHostEnvironment env)` 你也可以自行封装[app.UseShardingCore()](https://github.com/xuejmnet/sharding-core/blob/main/samples/Sample.SqlServer/DIExtension.cs) ```c# var shardingBootstrapper = app.ApplicationServices.GetRequiredService(); shardingBootstrapper.Start(); ``` ## 使用 ```c# private readonly IVirtualDbContext _virtualDbContext; public ctor(IVirtualDbContext virtualDbContext) { _virtualDbContext = virtualDbContext; } public async Task ToList_All() { var all=await _virtualDbContext.Set().ToShardingListAsync(); var list = await (from u in _virtualDbContext.Set() join salary in _virtualDbContext.Set() on u.Id equals salary.UserId select new { Salary = salary.Salary, DateOfMonth = salary.DateOfMonth, Name = u.Name }).ToShardingListAsync(); var ids = new[] {"200", "300"}; var dateOfMonths = new[] {202111, 202110}; var group = await (from u in _virtualDbContext.Set() .Where(o => ids.Contains(o.UserId) && dateOfMonths.Contains(o.DateOfMonth)) group u by new { UId = u.UserId } into g select new { GroupUserId = g.Key.UId, Count = g.Count(), TotalSalary = g.Sum(o => o.Salary), AvgSalary = g.Average(o => o.Salary), MinSalary = g.Min(o => o.Salary), MaxSalary = g.Max(o => o.Salary) }).ToShardingListAsync(); } ``` 更多操作可以参考单元测试 ## Api 方法 | Method | [SqlServer Unit Test](https://github.com/xuejmnet/sharding-core/blob/main/test/ShardingCore.Test50/ShardingTest.cs) | [MySql Unit Test](https://github.com/xuejmnet/sharding-core/blob/main/test/ShardingCore.Test50.MySql/ShardingTest.cs) --- |--- |--- |--- 获取集合 |ToShardingListAsync |yes |yes 第一条 |ShardingFirstOrDefaultAsync |yes |yes 最大 |ShardingMaxAsync |yes |yes 最小 |ShardingMinAsync |yes |yes 是否存在 |ShardingAnyAsync |yes |yes 分页 |ToShardingPageResultAsync |yes |yes 数目 |ShardingCountAsync |yes |yes 求和 |ShardingSumAsync |yes |yes 分组 |ShardingGroupByAsync |yes |yes ## 默认路由 抽象abstract | 路由规则 | tail | 索引 --- |--- |--- |--- AbstractSimpleShardingModKeyIntVirtualRoute |取模 |0,1,2... | `=` AbstractSimpleShardingModKeyStringVirtualRoute |取模 |0,1,2... | `=` AbstractSimpleShardingDayKeyDateTimeVirtualRoute |按时间 |yyyyMMdd | `>,>=,<,<=,=,contains` AbstractSimpleShardingDayKeyLongVirtualRoute |按时间戳 |yyyyMMdd | `>,>=,<,<=,=,contains` AbstractSimpleShardingWeekKeyDateTimeVirtualRoute |按时间 |yyyyMMdd_dd | `>,>=,<,<=,=,contains` AbstractSimpleShardingWeekKeyLongVirtualRoute |按时间戳 |yyyyMMdd_dd | `>,>=,<,<=,=,contains` AbstractSimpleShardingMonthKeyDateTimeVirtualRoute |按时间 |yyyyMM | `>,>=,<,<=,=,contains` AbstractSimpleShardingMonthKeyLongVirtualRoute |按时间戳 |yyyyMM | `>,>=,<,<=,=,contains` AbstractSimpleShardingYearKeyDateTimeVirtualRoute |按时间 |yyyy | `>,>=,<,<=,=,contains` AbstractSimpleShardingYearKeyLongVirtualRoute |按时间戳 |yyyy | `>,>=,<,<=,=,contains` 注:`contains`表示为`o=>ids.contains(o.shardingkey)` #高级 ## 批量操作 批量操作将对应的dbcontext和数据进行分离由用户自己选择第三方框架比如zzz进行批量操作或者batchextension ```c# virtualDbContext.BulkInsert(new List()) .BatchGroups.ForEach(pair => { ///zzz or other pair.Key.BlukInsert(pair.Value); }); var shardingBatchUpdateEntry = virtualDbContext.BulkUpdate(o => o.Id == "1", o => new SysUserMod() { Name = "name_01" }); shardingBatchUpdateEntry.DbContexts.ForEach(context => { //zzz or other context.Where(shardingBatchUpdateEntry.Where).Update(shardingBatchUpdateEntry.UpdateExp); }); ``` ## 手动路由 ```c# var shardingQueryable = _virtualDbContext.Set().AsSharding(); //禁用自动路由 shardingQueryable.DisableAutoRouteParse(); //添加路由直接查询尾巴0的表 shardingQueryable.AddManualRoute("0"); //添加路由针对该条件的路由 shardingQueryable.AddManualRoute(o=>o.Id=="100"); var list=await shardingQueryable.ToListAsync(); ``` ## 自动建表 [参考](https://github.com/xuejmnet/sharding-core/tree/main/samples/Samples.AutoByDate.SqlServer) ## 事务 默认savechanges支持事务如果需要where.update需要手动开启事务 ```c# _virtualDbContext.BeginTransaction(); var shardingBatchUpdateEntry = _virtualDbContext.BulkUpdate(o=>o.Id=="123",o=>new SysUserMod() { Name = "name_modify" }); foreach (var dbContext in shardingBatchUpdateEntry.DbContexts) { //zzz or other batch } await _virtualDbContext.SaveChangesAsync(); ``` # 注意事项 该库的IVirtualDbContext.Set使用asnotracking所以基本不支持跟踪,目前框架采用AppDomain.CurrentDomain.GetAssemblies(); 可能会导致程序集未被加载所以尽可能在api层加载所需要的dll # 计划 - [提供官网如果该项目比较成功的话] - [开发更完善的文档] - [支持分库] - [支持更多数据库查询] # 最后 该框架借鉴了大部分分表组件的思路,目前提供的接口都已经实现,并且支持跨表查询,基于分页查询该框架也使用了流式查询保证不会再skip大数据的时候内存会爆炸,至于groupby目前已经在开发支持了,相信不久后就会发布新版本,目前这个库只是一个刚刚成型的库还有很多不完善的地方希望大家多多包涵,如果喜欢的话也希望大家给个star. 该文档是我晚上赶工赶出来的也想趁热打铁希望更多的人关注,也希望更多的人可以交流。 凭借各大开源生态圈提供的优秀代码和思路才有的这个框架,希望可以为.Net生态提供一份微薄之力,该框架本人会一直长期维护,有大神技术支持可以联系下方方式欢迎star :) QQ群:771630778 个人QQ:326308290(欢迎技术支持提供您宝贵的意见) 个人邮箱:326308290@qq.com