Beckett 0.9.16

There is a newer version of this package available.
See the version list below for details.
dotnet add package Beckett --version 0.9.16                
NuGet\Install-Package Beckett -Version 0.9.16                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Beckett" Version="0.9.16" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Beckett --version 0.9.16                
#r "nuget: Beckett, 0.9.16"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Beckett as a Cake Addin
#addin nuget:?package=Beckett&version=0.9.16

// Install Beckett as a Cake Tool
#tool nuget:?package=Beckett&version=0.9.16                

Beckett

Event sourcing is a powerful pattern for building applications but reading and writing events to an event store is only half of the equation. Beckett aims to fill in the gaps:

  • Subscriptions - subscribe to messages and process them in order by stream
    • Horizontal scalability - use auto-scaling to have as many workers as needed processing messages in parallel where the work is distributed automatically across all available nodes without needing to manage the distribution by way of consumer groups or similar mechanisms
    • Retries - built-in retry support for failed messages - since messages are processed in order by stream per subscription, a failed message only blocks a single stream for a subscription at a time and the rest of the streams can continue processing for that subscription
  • Scheduled / recurring messages - schedule messages to be sent at a future time with cancellation support, or create a recurring schedule to send messages at a regular interval using cron expressions for scheduled jobs, etc...
  • Open Telemetry - built-in support to provide tracing and metrics
  • Dashboard - browse messages, retry failed subscriptions
  • Bring Your Own Event Store - Beckett provides a simple Postgres-based message store or use your own by implementing the IMessageStorage interface

Example

We are building a warehouse management system and we need to allocate inventory to orders. The requirements are that allocation occurs when an item is added to an order:

using Beckett;
using Beckett.Database;

var builder = Host.CreateApplicationBuilder(args);

var connectionString = builder.Configuration.GetConnectionString("InventoryAllocation")!;

await PostgresMigrator.UpgradeSchema(connectionString);

builder.Services.AddNpgsqlDataSource(connectionString, options => options.AddBeckett());

builder.Services.AddTransient<OrderItemAddedHandler>();

var beckett = builder.AddBeckett(
    options => { options.WithSubscriptionGroup("InventoryAllocation"); }
);

beckett.AddSubscription("order-item-inventory-allocation")
    .Message<OrderItemAdded>()
    .Handler<OrderItemAddedHandler>((handler, message, token) => handler.Handle(message, token));

var host = builder.Build();

host.Run();

public record OrderItemAdded(Guid OrderId, Guid ProductId, int Quantity);

public record InventoryAllocated(Guid ProductId, Guid OrderId, int Quantity);

public class OrderItemAddedHandler(IMessageStore messageStore)
{
    public async Task Handle(OrderItemAdded message, CancellationToken cancellationToken)
    {
        await messageStore.AppendToStream(
            $"Inventory-{message.ProductId}",
            ExpectedVersion.Any,
            new InventoryAllocated(message.ProductId, message.OrderId, message.Quantity),
            cancellationToken
        );
    }
}

In this example application we are handling the OrderItemAdded event with the OrderItemAddedHandler class. The handler will receive all OrderItemAdded messages written to the message store since it is subscribed to that type in the AddSubscription call. The host has been configured to use the InventoryAllocation subscription group, and there can be as many instances of this host running as necessary and the work will be divided among them automatically allowing you to take advantage of auto scaling without limits.

One of the guiding design principles of Beckett is keeping a minimal footprint - there should be as few references to Beckett-provided types in application code as possible. Subscription handlers are registered as lambdas, and can be instances that are resolved from the container or static functions. The only type from Beckett used in the application code in this sample is IMessageStore which itself is optional if you're using your own message store.

The call to PostgresMigrator.UpgradeSchema in the example is applying any outstanding migrations to the database that are required by Beckett. If you wish to run the migrations separately using Flyway or similar tools then you can use the dump-migrations shell script supplied in the root of the directory to create a single SQL file:

./dump-migrations.sh beckett 001.sql

In this case beckett is the schema you'd like to use in your database for the tables, functions, and types that Beckett uses and 001.sql is the path of the file you'd like to create.

How It Works

sequenceDiagram
    participant Message Store
    participant Global Stream Consumer
    participant Subscription Checkpoints
    participant Global Checkpoint
    participant Checkpoint Consumer
    participant Subscription Handler
    Global Stream Consumer->>Message Store: poll for new messages
    Message Store-->>Global Stream Consumer: message batch
    Global Stream Consumer->>Subscription Checkpoints: create or update checkpoints
    Global Stream Consumer->>Global Checkpoint: update global checkpoint
    Checkpoint Consumer->>Subscription Checkpoints: poll for available checkpoints
    Subscription Checkpoints-->>Checkpoint Consumer: checkpoints to process
    Checkpoint Consumer->>Message Store: read stream at checkpoint position
    Message Store-->>Checkpoint Consumer: stream messages
    Checkpoint Consumer->>Subscription Handler: dispatch messages to handler
    alt is Error
        Checkpoint Consumer->>Subscription Checkpoints: mark checkpoint as pending retry
    else is Success
        Checkpoint Consumer->>Subscription Checkpoints: update checkpoint to latest processed position
    end
  • Subscriptions subscribe to stream categories and/or message types
  • Subscriptions belong to subscription groups - InventoryAllocation
  • Each host is assigned to a subscription group - options.WithSubscriptionGroup("InventoryAllocation")
  • Global checkpoints keep track of what messages Beckett has read from the message store per subscription group
  • The global stream consumer reads new messages from the message store based on the global checkpoint
  • Using the subscription configuration registered in the host it determines what checkpoints to create or update in terms of work to be done per subscription
  • Checkpoints are per group + subscription + stream
  • Checkpoints track the stream version - the current version of the stream being tracked - as well as the stream position, which is the position in the stream that Beckett has processed up to
  • If the stream version of a checkpoint is greater than the stream position it is considered to be "lagging"
  • The checkpoint consumer watches for lagging checkpoints - once it sees one it attempts to reserve it so it can be processed
  • Checkpoint reservations last a configurable amount of time (default 5 minutes) and if they are not processed before then (process killed, etc...) then the reservations can expire at which point they can be recovered and processed again
  • Checkpoint expired reservation recovery runs every minute by default
  • Checkpoints are processed by handling the messages in stream order, dispatching them to the handler for the subscription one at a time
  • Checkpoints are processed in parallel, with the allowed concurrency configured via options.Subscriptions.Concurrency (defaults to the number of CPUs in the host * 5 or 20, whichever number is smaller)
  • If a subscription handler encounters an error processing a message the checkpoint will be retried in a separate process up to a max number of retries using exponential backoff, at which point it changes to the failed status
  • Once a checkpoint is failed it can be manually retried at any point in time
  • If a retry succeeds at any point the checkpoint becomes active again and can process new messages
  • Deleting checkpoints means that checkpoint will not be processed again - it is a means by which you can clear failed checkpoints from the dashboard that you do not care about any more

Dashboard

Beckett comes batteries-included with a dashboard to provide visibility into your system while it's running, retry failed checkpoints, and so on:

<img width="1583" alt="Beckett Dashboard" src="https://github.com/user-attachments/assets/b1534284-a980-4894-8045-78f555d1ee5b">

Adding the Beckett dashboard to an ASP.NET Core application is simple:

var builder = WebApplication.CreateBuilder(args);

var app = builder.Build();

app.MapBeckettDashboard("/beckett");

app.Run();

In this example, the dashboard will be available at http://localhost:<port>/beckett and can be further configured using standard ASP.NET Core route group configuration options - authorization, etc...

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Beckett:

Package Downloads
Beckett.Dashboard

Messaging and event sourcing library

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.9.17 1,037 9/14/2024
0.9.16 112 9/14/2024
0.9.15 196 9/13/2024
0.9.14 99 9/13/2024
0.9.13 272 9/7/2024
0.9.12 89 9/6/2024
0.9.11 238 9/5/2024
0.9.10 338 9/4/2024
0.9.9 388 8/29/2024
0.9.8 86 8/29/2024
0.9.7 221 8/28/2024
0.9.6 186 8/27/2024
0.9.5 93 8/27/2024
0.9.4 559 8/16/2024
0.9.3 577 8/14/2024
0.9.2 394 8/12/2024
0.9.1 258 8/8/2024
0.9.0 289 8/5/2024
0.8.13 55 8/2/2024
0.8.12 54 8/2/2024
0.8.11 427 7/26/2024
0.8.10 96 7/25/2024
0.8.9 96 7/25/2024
0.8.8 278 7/21/2024
0.8.7 135 7/19/2024
0.8.6 84 7/19/2024
0.8.5 179 7/16/2024
0.8.4 108 7/16/2024
0.8.3 98 7/16/2024
0.8.2 184 7/13/2024
0.8.1 94 7/13/2024
0.8.0 88 7/13/2024
0.7.9 109 7/12/2024
0.7.8 93 7/12/2024
0.7.7 109 7/11/2024
0.7.6 97 7/10/2024
0.7.5 88 7/10/2024
0.7.4 114 7/10/2024
0.7.3 98 7/10/2024
0.7.2 88 7/9/2024
0.7.1 96 7/9/2024
0.7.0 96 7/9/2024