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

Posted dotNET跨平台

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MASA Framework 事件总线 - 跨进程事件总线相关的知识,希望对你有一定的参考价值。

概述

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

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

  • IntegrationEvents: 提供了发件箱模式 (https://www.kamilgrzybek.com/design/the-outbox-pattern/)

    • IntegrationEvents.Dapr: 借助Dapr (https://docs.dapr.io/zh-hans/developing-applications/building-blocks/pubsub/pubsub-overview/)实现了消息的发布

    • EventLogs.EFCore: 基于EFCore实现的集成事件日志的提供者, 提供消息的记录与状态更新、失败日志重试、删除过期的日志记录等

入门

跨进程事件与Dapr (https://docs.dapr.io/zh-hans/concepts/overview/)并不是强绑定的, MASA Framework使用了Dapr提供的pub/sub (https://docs.dapr.io/zh-hans/developing-applications/building-blocks/pubsub/pubsub-overview/)的能力, 如果你不想使用它, 你也可以更换为其它实现, 但目前Masa Framwork中仅提供了Dapr的实现

  • 安装 .NET 6.0 (https://dotnet.microsoft.com/zh-cn/download/dotnet/6.0)

  • 安装 Dapr (https://docs.dapr.io/zh-hans/getting-started/install-dapr-cli)

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迁移数据库

2.新建用户上下文类UserDbContext,并继承MasaDbContext

public class UserDbContext : MasaDbContext

    public UserDbContext(MasaDbContextOptions<UserDbContext> options) : base(options)
    
    

3.注册DaprStarter, 协助管理Dapr Sidecar, 修改Program.cs

if (builder.Environment.IsDevelopment())

    builder.Services.AddDaprStarter();

通过Dapr发布集成事件需要运行Dapr, 线上环境可通过Kubernetes来运行, 开发环境可借助Dapr Starter (https://www.cnblogs.com/zhenlei520/p/16157625.html) 运行Dapr, 因此仅需要在开发环境使用它

4.注册跨进程事件总线,修改类Program

builder.Services.AddIntegrationEventBus(option =>

    option.UseDapr()
        .UseEventLog<UserDbContext>()
        .UseUoW<UserDbContext>(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

5.新增用户注册事件的集成事件 RegisterUserEvent

public record RegisterUserEvent : IntegrationEvent

    public override string Topic  get; set;  = nameof(RegisterUserEvent);

    public string Account  get; set; 

    public string Mobile  get; set; 

6.打开Assignment.IntegrationEventBus所在文件夹,打开cmd或Powershell执行

dotnet ef migrations add init //创建迁移
dotnet ef database update //更新数据库

7.发送跨进程事件,修改Program

app.MapPost("/register", async (IIntegrationEventBus eventBus) =>

    //todo: 模拟注册用户并发布注册用户事件
    await eventBus.PublishAsync(new RegisterUserEvent()
    
        Account = "Tom",
        Mobile = "19999999999"
    );
);

8.订阅事件,修改Program

app.MapPost("/IntegrationEvent/RegisterUser", [Topic("pubsub", nameof(RegisterUserEvent))](RegisterUserEvent @event) =>

    Console.WriteLine($"注册用户成功: @event.Account");
);

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

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

  1. 手把手教你学Dapr (https://www.cnblogs.com/doddgu/p/dapr-learning-1.html)

  2. PubSub代理 (https://docs.dapr.io/zh-hans/reference/components-reference/supported-pubsub/)

源码解读

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

  • IIntegrationEvent: 集成事件接口, 继承 IEvent (本地事件接口)、ITopic (订阅接口, 发布订阅的主题)、ITransaction (事务接口)

  • IIntegrationEventBus: 集成事件总线接口、用于提供发送集成事件的功能

  • IIntegrationEventLogService: 集成事件日志服务的接口 (提供保存本地日志、修改状态为进行中、成功、失败、删除过期日志、获取等待重试日志列表的功能)

  • IntegrationEventLog: 集成事件日志, 提供本地消息表的模型

  • IHasConcurrencyStamp: 并发标记接口 (实现此接口的类会自动为RowVersion赋值)

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(https://github.com/dotnetcore/CAP)为例, 由于它本身已经完成了发件箱模式, 我们不需要再处理本地消息表, 也无需考虑本地消息记录的管理, 那我们可以这样做

1.新建类库Masa.Contrib.Dispatcher.IntegrationEvents.Cap, 添加Masa.BuildingBlocks.Dispatcher.IntegrationEvents的引用, 并安装DotNetCore.CAP

dotnet add package DotNetCore.CAP

2.新增类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>(TEvent @event) where TEvent : IEvent
    
        // 如果使用事务
        // _publisher.Transaction.Value.DbTransaction = unitOfWork.Transaction;
        // _publisher.Publish(@event.Topic, @event);
        throw new NotImplementedException();
    

    public IEnumerable<Type> GetAllEventTypes()
    
        throw new NotImplementedException();
    

    public Task CommitAsync(CancellationToken cancellationToken = default)
    
        throw new NotImplementedException();
    

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

3.新建类ServiceCollectionExtensions, 将自定义Publisher注册到服务集合

public static class ServiceCollectionExtensions

    public static DispatcherOptions UseRabbitMq(this IServiceCollection services)
    
         //todo: 注册RabbitMq信息
         services.TryAddScoped<IIntegrationEventBus, IntegrationEventBus>();
         return dispatcherOptions;
    

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

  • 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

2.新增类Publisher,并实现IPublisher

public class Publisher : IPublisher

    public async Task PublishAsync<T>(string topicName, T @event, CancellationToken stoppingToken = default) where T : IIntegrationEvent
    
        //todo: 通过 RabbitMQ.Client 发送消息到RabbitMq
        throw new NotImplementedException();
    

3.新建类DispatcherOptionsExtensions, 将自定义Publisher注册到服务集合

public static class DispatcherOptionsExtensions

    public static DispatcherOptions UseRabbitMq(this Masa.Contrib.Dispatcher.IntegrationEvents.Options.DispatcherOptions options)
    
         //todo: 注册RabbitMq信息
         dispatcherOptions.Services.TryAddSingleton<IPublisher, Publisher>();
         return dispatcherOptions;
    

4.如何使用自定义实现RabbitMq

builder.Services.AddIntegrationEventBus(option =>

    option.UseRabbitMq();//修改为使用RabbitMq
    option.UseUoW<UserDbContext>(optionBuilder => optionBuilder.UseSqlite($"Data Source=./Db/Guid.NewGuid():N.db;"));
    option.UseEventLog<UserDbContext>();
);

本章源码

Assignment12

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

开源地址

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


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

《MASA Framework实战课程》已开课

点击“阅读原文”查看课程安排

以上是关于MASA Framework 事件总线 - 跨进程事件总线的主要内容,如果未能解决你的问题,请参考以下文章

千里马Android Framework实战开发-跨进程通信专题博客总结

Android Framework实战开发视频--跨进程通信之课程介绍

Android Framework实战开发视频--跨进程通信之课程介绍

Android Framework实战开发视频--跨进程通信之Socket通信

Android Framework实战开发视频--跨进程通信之Socket通信

《Android Framework-跨进程通信高级实战课》笔记