• MASA Framework 事件总线 - 跨进程事件总线


    概述

    跨进程事件总线允许发布和订阅跨服务传输的消息, 服务的发布与订阅不在同一个进程中

    在Masa Framework中, 跨进程总线事件提供了一个可以被开箱即用的程序

    入门

    跨进程事件与Dapr并不是强绑定的, Masa Framework使用了Dapr提供的pub/sub的能力, 如果你不想使用它, 你也可以更换为其它实现, 但目前Masa Framwork中仅提供了Dapr的实现

    1. 新建ASP.NET Core 空项目Assignment.IntegrationEventBus,并安装Masa.Contrib.Dispatcher.IntegrationEvents.DaprMasa.Contrib.Dispatcher.IntegrationEvents.EventLogs.EFCoreMasa.Contrib.Data.EFCore.SqliteMasa.Contrib.Data.UoW.EFCoreMasa.Contrib.Development.DaprStarter.AspNetCoreMicrosoft.EntityFrameworkCore.Design
    dotnet new web -o Assignment.IntegrationEventBus
    cd Assignment.IntegrationEventBus
    
    dotnet add package Masa.Contrib.Dispatcher.IntegrationEvents.Dapr --version 0.7.0-preview.8 // 使用dapr提供的pubsub能力
    dotnet add package Masa.Contrib.Dispatcher.IntegrationEvents.EventLogs.EFCore --version 0.7.0-preview.8 //本地消息表
    dotnet add package Masa.Contrib.Data.EFCore.Sqlite --version 0.7.0-preview.8 //使用EfCore.Sqlite
    dotnet add package Masa.Contrib.Data.UoW.EFCore --version 0.7.0-preview.8 //使用工作单元
    dotnet add package Masa.Contrib.Development.DaprStarter.AspNetCore --version 0.7.0-preview.8 //开发环境使用DaprStarter协助管理Dapr Sidecar
    dotnet add package Microsoft.EntityFrameworkCore.Design --version 6.0.6 //方便后续通过CodeFirst迁移数据库
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    1. 新建用户上下文类UserDbContext,并继承MasaDbContext
    public class UserDbContext : MasaDbContext
    {
        public UserDbContext(MasaDbContextOptions options) : base(options)
        {
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    1. 注册DaprStarter, 协助管理Dapr Sidecar, 修改Program.cs
    if (builder.Environment.IsDevelopment())
    {
        builder.Services.AddDaprStarter();
    }
    
    • 1
    • 2
    • 3
    • 4

    通过Dapr发布集成事件需要运行Dapr, 线上环境可通过Kubernetes来运行, 开发环境可借助Dapr Starter运行Dapr, 因此仅需要在开发环境使用它

    1. 注册跨进程事件总线,修改类Program
    builder.Services.AddIntegrationEventBus(option =>
    {
        option.UseDapr()
            .UseEventLog()
            .UseUoW(optionBuilder => optionBuilder.UseSqlite($"Data Source=./Db/{Guid.NewGuid():N}.db;"));
    });
    var app = builder.Build();
    
    #region dapr 订阅集成事件使用
    app.UseRouting();
    
    app.UseCloudEvents();
    app.UseEndpoints(endpoints =>
    {
        endpoints.MapSubscribeHandler();
    });
    #endregion
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    1. 新增用户注册事件的集成事件 RegisterUserEvent
    public record RegisterUserEvent : IntegrationEvent
    {
        public override string Topic { get; set; } = nameof(RegisterUserEvent);
    
        public string Account { get; set; }
    
        public string Mobile { get; set; }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    1. 打开Assignment.IntegrationEventBus所在文件夹,打开cmd或Powershell执行
    dotnet ef migrations add init //创建迁移
    dotnet ef database update //更新数据库
    
    • 1
    • 2
    1. 发送跨进程事件,修改Program
    app.MapPost("/register", async (IIntegrationEventBus eventBus) =>
    {
        //todo: 模拟注册用户并发布注册用户事件
        await eventBus.PublishAsync(new RegisterUserEvent()
        {
            Account = "Tom",
            Mobile = "19999999999"
        });
    });
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    1. 订阅事件,修改Program
    app.MapPost("/IntegrationEvent/RegisterUser", [Topic("pubsub", nameof(RegisterUserEvent))](RegisterUserEvent @event) =>
    {
        Console.WriteLine($"注册用户成功: {@event.Account}");
    });
    
    • 1
    • 2
    • 3
    • 4

    订阅事件暂时未抽象,目前使用的是Dapr原生的订阅方式,后续我们会支持Bind,届时不会由于更换pubsub的实现而导致订阅方式的改变

    尽管跨进程事件目前仅支持了Dapr,但这不代表你与RabbitMqKafka等无缘,发布/订阅是Dapr抽象出的能力,实现发布订阅的组件有很多种,RabbitMqKafka是其中一种实现,如果你想深入了解他们之间的关系,可以参考:

    1. 手把手教你学Dapr
    2. PubSub代理

    源码解读

    首先我们先要知道的基础知识点:

    • IIntegrationEvent: 集成事件接口, 继承 IEvent (本地事件接口)、ITopic (订阅接口, 发布订阅的主题)、ITransaction (事务接口)
    • IIntegrationEventBus: 集成事件总线接口、用于提供发送集成事件的功能
    • IIntegrationEventLogService: 集成事件日志服务的接口 (提供保存本地日志、修改状态为进行中、成功、失败、删除过期日志、获取等待重试日志列表的功能)
    • IntegrationEventLog: 集成事件日志, 提供本地消息表的模型
    • IHasConcurrencyStamp: 并发标记接口 (实现此接口的类会自动为RowVersion赋值)

    IntegrationEvent

    Masa.Contrib.Dispatcher.IntegrationEvents

    提供了集成事件接口的实现类, 并支持了发件箱模式, 其中:

    • IPublisher: 集成事件的发送者
    • IProcessingServer: 后台服务接口
    • IProcessor: 处理程序接口 (后台处理程序中会获取所有的程序程序)
      • DeleteLocalQueueExpiresProcessor: 删除过期程序 (从本地队列删除)
      • DeletePublishedExpireEventProcessor: 删除已过期的发布成功的本地消息程序 (从Db删除)
      • RetryByLocalQueueProcessor: 重试本地消息记录 (从本地队列中获取, 条件: 发送状态为失败或进行中且重试次数小于最大重试次数且重试间隔大于最小重试间隔)
      • RetryByDataProcessor: 重试本地消息记录 (从Db获取, 条件: 发送状态为失败或进行中且重试次数小于最大重试次数且重试间隔大于最小重试间隔, 且不在本地重试队列中)
    • IntegrationEventBus: IIntegrationEvent的实现

    Masa.Contrib.Dispatcher.IntegrationEvents中仅提供了发件箱的功能, 但集成事件的发布是由 IPublisher的实现类来提供, 由Db获取本地消息表的功能是由IIntegrationEventLogService的实现类来提供, 它们分别属于Masa.Contrib.Dispatcher.IntegrationEvents.DaprMasa.Contrib.Dispatcher.IntegrationEvents.EventLogs.EFCore的功能, 这也是为什么使用集成事件需要引用包

    • Masa.Contrib.Dispatcher.IntegrationEvents
    • Masa.Contrib.Dispatcher.IntegrationEvents.Dapr
    • Masa.Contrib.Dispatcher.IntegrationEvents.EventLogs.EFCore

    如何快速接入其它实现

    那会有小伙伴问了, 我现在没有使用Dapr, 未来一段时间暂时也还不希望接入Dapr, 我想自己接入, 以实现集成事件的发布可以吗?

    当然是可以的, 如果你希望自行实现集成事件, 那么这个时候你会遇到两种情况

    接入方支持发件箱模式

    以社区用的较多的库CAP为例, 由于它本身已经完成了发件箱模式, 我们不需要再处理本地消息表, 也无需考虑本地消息记录的管理, 那我们可以这样做

    1. 新建类库Masa.Contrib.Dispatcher.IntegrationEvents.Cap, 添加Masa.BuildingBlocks.Dispatcher.IntegrationEvents的引用, 并安装DotNetCore.CAP
    dotnet add package DotNetCore.CAP
    
    • 1
    1. 新增类IntegrationEventBus, 并实现IIntegrationEventBus
    public class IntegrationEventBus : IIntegrationEventBus
    {
        private readonly ICapPublisher _publisher;
        private readonly ICapTransaction _capTransaction;
        private readonly IUnitOfWork? _unitOfWork;
        public IntegrationEventBus(ICapPublisher publisher, ICapTransaction capTransaction, IUnitOfWork? unitOfWork = null)
        {
            _publisher = publisher;
            _capTransaction = capTransaction;
            _unitOfWork = unitOfWork;
        }
        
        public Task PublishAsync(TEvent @event) where TEvent : IEvent
        {
            // 如果使用事务
            // _publisher.Transaction.Value.DbTransaction = unitOfWork.Transaction;
            // _publisher.Publish(@event.Topic, @event);
            throw new NotImplementedException();
        }
    
        public IEnumerable GetAllEventTypes()
        {
            throw new NotImplementedException();
        }
    
        public Task CommitAsync(CancellationToken cancellationToken = default)
        {
            throw new NotImplementedException();
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30

    CAP已支持本地事务, 使用当前IUnitOfWork提供的事务, 确保数据的原子性

    1. 新建类ServiceCollectionExtensions, 将自定义Publisher注册到服务集合
    public static class ServiceCollectionExtensions
    {
        public static DispatcherOptions UseRabbitMq(this IServiceCollection services)
        {
             //todo: 注册RabbitMq信息
             services.TryAddScoped();
             return dispatcherOptions;
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

    已经实现发件箱模式的可以直接使用, 而不需要引用

    • Masa.Contrib.Dispatcher.IntegrationEvents
    • Masa.Contrib.Dispatcher.IntegrationEvents.Dapr
    • Masa.Contrib.Dispatcher.IntegrationEvents.EventLogs.EFCore

    以上未经过实际验证, 感兴趣的可以尝试下, 欢迎随时提pr

    接入方不支持发件箱模式

    我希望直接接入RabbitMq, 但我自己没有做发件箱模式, 那我可以怎么做呢?

    由于Masa.Contrib.Dispatcher.IntegrationEvents已提供发件箱模式, 如果仅仅希望更换一个发布事件的实现者, 那我们仅需要实现IPublisher即可

    1. 新建类库Masa.Contrib.Dispatcher.IntegrationEvents.RabbitMq, 添加Masa.Contrib.Dispatcher.IntegrationEvents项目引用, 并安装RabbitMQ.Client
    dotnet add package RabbitMQ.Client //使用RabbitMq
    
    • 1
    1. 新增类Publisher,并实现IPublisher
    public class Publisher : IPublisher
    {
        public async Task PublishAsync(string topicName, T @event, CancellationToken stoppingToken = default) where T : IIntegrationEvent
        {
            //todo: 通过 RabbitMQ.Client 发送消息到RabbitMq
            throw new NotImplementedException();
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    1. 新建类DispatcherOptionsExtensions, 将自定义Publisher注册到服务集合
    public static class DispatcherOptionsExtensions
    {
        public static DispatcherOptions UseRabbitMq(this Masa.Contrib.Dispatcher.IntegrationEvents.Options.DispatcherOptions options)
        {
             //todo: 注册RabbitMq信息
             dispatcherOptions.Services.TryAddSingleton();
             return dispatcherOptions;
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    1. 如何使用自定义实现RabbitMq
    builder.Services.AddIntegrationEventBus(option =>
    {
        option.UseRabbitMq();//修改为使用RabbitMq
        option.UseUoW(optionBuilder => optionBuilder.UseSqlite($"Data Source=./Db/{Guid.NewGuid():N}.db;"));
        option.UseEventLog();
    });
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    本章源码

    Assignment12

    https://github.com/zhenlei520/MasaFramework.Practice

    开源地址

    MASA.Framework:https://github.com/masastack/MASA.Framework

    如果你对我们的 MASA Framework 感兴趣,无论是代码贡献、使用、提 Issue,欢迎联系我们

    • WeChat:MasaStackTechOps
    • QQ:7424099
  • 相关阅读:
    真题磨练-20220903美团笔试算法反思学习(持续更新中)
    微信小程序基础加强总结
    【用户画像】标签任务开发流程(源码之动态建表、常量类、配置信息、本地调试、发布运行、任务调度)
    go map fatal errorconcurrent map read and map write
    聊聊 RocketMQ 消息轨迹
    技术派Spring事件监听机制及原理
    国庆周《Linux学习第三课》
    ssm手机销售网站
    java基础01
    MySQL 服务正在启动.MySQL 服务无法启动.服务没有报告任何错误。请键入 NET HELPMSG 3534 以获得更多的帮助。总结较全 (已解决)
  • 原文地址:https://blog.csdn.net/MASAteam/article/details/128128000