Relational database schema for event sourcing

前端 未结 1 1515
忘了有多久
忘了有多久 2021-02-05 23:56

I am trying to store domain events in a postgres database. I am not sure in many things, and I don\'t want to redesign this structure later, so I am seeking for guidance from pe

相关标签:
1条回答
  • 2021-02-06 00:41

    1.Should I store the promoter of the domain event?

    I think it's more flex if you store the promoter as part of the event payload instead of meta data. The security concerns should be handled outside the domain. Not every event is raised by a user, although you could make a fake one for them(a SysAdmin for CronJob).

    For example:

    ManualPaymentMadeEvent { //store this object as details in your schema
        amount,
        by_user//In this case, developers can determine whether store the promoter case by case
    }
    

    2.what format should I store the event type?
    Should I add a table with event types, or are the class names enough? Should I add event groups?

    I think class names is enough. Adding another table complicates event read(by join tables), and I think it only adds value when the class names is renamed(Update one row in event type table). But I think it does not add much trouble by using

    update domain_events set 
        aggregate_type = 'new class name'
    where aggregate_type = 'origin class name'
    

    I'm not sure that I understand event groups, could you add more explanation?

    3.What I am unsure, that a domain event can have multiple bounded contexts, or just a single one, so should I store event contexts as well?

    Sometimes the events are used to integrate multiple contexts. But each event is raised only in one context. For example, A ManualPaymentMadeEvent is raised in ordering context, and an event listner in shipping context also consumes it, regards it as the trigger of start shipping.

    I prefer to use per database user(oracle term) per context. shipping.domain_events for shipping context and ordering.domain_events for ordering context.

    Here is the schema in axon-framework which might help

    create table DomainEventEntry (
        aggregateIdentifier varchar2(255) not null,
        sequenceNumber number(19,0) not null,
        type varchar2(255) not null,  --aggregate class name
        eventIdentifier varchar2(255) not null,
        metaData blob,   
        payload blob not null, -- details
        payloadRevision varchar2(255),
        payloadType varchar2(255) not null, --event class name
        timeStamp varchar2(255) not null
    );
    
    alter table DomainEventEntry
        add constraint PK_DomainEventEntry primary key (aggregateIdentifier, sequenceNumber, type);
    
    0 讨论(0)
提交回复
热议问题