jonsequitur / Alluvial

Stream your data from any source. Build projections and aggregations. Parallelize. Distribute. Replay.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Alluvial

Build Status NuGet Status Join the chat at https://gitter.im/jonsequitur/Alluvial

Alluvial provides a programming model for aggregating and transforming streams of data and parallelizing and distributing workloads. The model isn't specific to any server technology. It's intended to address both aggregation of historical data and also processing of new data in realtime using the same code. You can use Alluvial to catch up and stay caught up, or replay a stream from any point.

Here are some of the things it can be used for:

  • Building projections from event stores (for event-sourced models).
  • Keep projections updated as new events appear.
  • Distriburing heavy workloads, such as analyzing logs.
  • Migrating large volumes of data.

If you can define a query that returns your data as an ordered stream, Alluvial does the rest.

Here's what it can do currently:

  • Define data from any source as a data stream
  • Query those data streams.
  • Derive streams from other streams.
  • Create persisted projections based on existing data.
  • Update persisted projections as new data appears.
  • Create projections on demand.
  • Track cursors that allow you to resume consumption of a stream at a later point and on a different node.
  • Restart streams queries from any past position.
  • Distributing stream query work across instances of your application.

About

Stream your data from any source. Build projections and aggregations. Parallelize. Distribute. Replay.

License:MIT License


Languages

Language:C# 100.0%