Giter Club home page Giter Club logo

eventsourcing.sql's Introduction

A simplistic implementation of an event store using SQL databases based on the eventuous library for .NET (https://github.com/Eventuous/eventuous). Subscriptions (all stream, single stream) are done using polling. As of now it support only Postgresql, but it can be easily modified to support any SQL database.

The events are stored in a single table, indexed by stream and gobal position.

CREATE TABLE IF NOT EXISTS events (
    eventId VARCHAR PRIMARY KEY,
    eventType VARCHAR NOT NULL,
    stream VARCHAR NOT NULL,
    streamPosition INT NOT NULL,
    globalPosition BIGSERIAL, 
    payload VARCHAR NOT NULL,
    metadata VARCHAR,
    created TIMESTAMP DEFAULT NOW(),
    UNIQUE(stream, streamPosition)
);

CREATE INDEX IF NOT EXISTS events_stream_idx ON events (stream);    
CREATE INDEX IF NOT EXISTS events_globalposition_idx ON events (globalPosition);    

For subscriptions, checkpoints are stored in a checkpoints table:

CREATE TABLE IF NOT EXISTS checkpoints (
    id varchar,
    position bigint,
    PRIMARY KEY(id)
);

There are tests that cover the event store, the aggregate store and subscriptions (single stream, all stream).

eventsourcing.sql's People

Contributors

claudiuchis avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.