MySQL Integration
INFO
Wolverine can use the MySQL durability options with any mix of Entity Framework Core as a higher level persistence framework
Wolverine supports a MySQL/MariaDB backed message persistence strategy and even a MySQL backed messaging transport option. To get started, add the WolverineFx.MySql dependency to your application:
dotnet add package WolverineFx.MySqlMessage Persistence
To enable MySQL to serve as Wolverine's transactional inbox and outbox, you just need to use the WolverineOptions.PersistMessagesWithMySql() extension method as shown below in a sample:
var builder = WebApplication.CreateBuilder(args);
var connectionString = builder.Configuration.GetConnectionString("mysql");
builder.Host.UseWolverine(opts =>
{
// Setting up MySQL-backed message storage
// This requires a reference to Wolverine.MySql
opts.PersistMessagesWithMySql(connectionString);
// Other Wolverine configuration
});
// This is rebuilding the persistent storage database schema on startup
// and also clearing any persisted envelope state
builder.Host.UseResourceSetupOnStartup();
var app = builder.Build();
// Other ASP.Net Core configuration...
// Using JasperFx opens up command line utilities for managing
// the message storage
return await app.RunJasperFxCommands(args);MySQL Messaging Transport
INFO
All MySQL queues are built into a wolverine_queues schema at this point.
The WolverineFx.MySql Nuget also contains a simple messaging transport that was mostly meant to be usable for teams who want asynchronous queueing without introducing more specialized infrastructure. To enable this transport in your code, use this option which also activates MySQL backed message persistence:
var builder = Host.CreateApplicationBuilder();
builder.UseWolverine(opts =>
{
var connectionString = builder.Configuration.GetConnectionString("mysql");
opts.UseMySqlPersistenceAndTransport(
connectionString,
// This argument is the database schema for the envelope storage
// If separate logical services are targeting the same physical database,
// you should use a separate schema name for each logical application
// to make basically *everything* run smoother
"myapp",
// This schema name is for the actual MySQL queue tables. If using
// the MySQL transport between two logical applications, make sure
// to use the same transportSchema!
transportSchema:"queues")
// Tell Wolverine to build out all necessary queue or scheduled message
// tables on demand as needed
.AutoProvision()
// Optional that may be helpful in testing, but probably bad
// in production!
.AutoPurgeOnStartup();
// Use this extension method to create subscriber rules
opts.PublishAllMessages().ToMySqlQueue("outbound");
// Use this to set up queue listeners
opts.ListenToMySqlQueue("inbound")
.CircuitBreaker(cb =>
{
// fine tune the circuit breaker
// policies here
})
// Optionally specify how many messages to
// fetch into the listener at any one time
.MaximumMessagesToReceive(50);
});
using var host = builder.Build();
await host.StartAsync();The MySQL transport is strictly queue-based at this point. The queues are configured as durable by default, meaning that they are utilizing the transactional inbox and outbox. The MySQL queues can also be buffered:
opts.ListenToMySqlQueue("sender").BufferedInMemory();Using this option just means that the MySQL queues can be used for both sending or receiving with no integration with the transactional inbox or outbox. This is a little more performant, but less safe as messages could be lost if held in memory when the application shuts down unexpectedly.
Polling
Wolverine has a number of internal polling operations, and any MySQL queues will be polled on a configured interval. The default polling interval is set in the DurabilitySettings class and can be configured at runtime as below:
var builder = Host.CreateApplicationBuilder();
builder.UseWolverine(opts =>
{
// Health check message queue/dequeue
opts.Durability.HealthCheckPollingTime = TimeSpan.FromSeconds(10);
// Node reassigment checks
opts.Durability.NodeReassignmentPollingTime = TimeSpan.FromSeconds(5);
// User queue poll frequency
opts.Durability.ScheduledJobPollingTime = TimeSpan.FromSeconds(5);
}Control queue
Wolverine has an internal control queue (dbcontrol) used for internal operations. This queue is hardcoded to poll every second and should not be changed to ensure the stability of the application.
Multi-Tenancy
As of Wolverine 5.x, you can use multi-tenancy through separate databases per tenant with MySQL:
To utilize Wolverine managed multi-tenancy, you have a couple main options. The simplest is just using a static configured set of tenant id to database connections like so:
var builder = Host.CreateApplicationBuilder();
var configuration = builder.Configuration;
builder.UseWolverine(opts =>
{
// First, you do have to have a "main" MySQL database for messaging persistence
// that will store information about running nodes, agents, and non-tenanted operations
opts.PersistMessagesWithMySql(configuration.GetConnectionString("main"))
// Add known tenants at bootstrapping time
.RegisterStaticTenants(tenants =>
{
// Add connection strings for the expected tenant ids
tenants.Register("tenant1", configuration.GetConnectionString("tenant1"));
tenants.Register("tenant2", configuration.GetConnectionString("tenant2"));
tenants.Register("tenant3", configuration.GetConnectionString("tenant3"));
});
opts.Services.AddDbContextWithWolverineManagedMultiTenancy<ItemsDbContext>((builder, connectionString, _) =>
{
builder.UseMySql(connectionString.Value, ServerVersion.AutoDetect(connectionString.Value),
b => b.MigrationsAssembly("MultiTenantedEfCoreWithMySql"));
}, AutoCreate.CreateOrUpdate);
});Since the underlying MySqlConnector library supports the MySqlDataSource concept, and you might need to use this for a variety of reasons, you can also directly configure MySqlDataSource objects for each tenant. This one might be a little more involved, but let's start by saying that you might be using Aspire to configure MySQL and both the main and tenant databases. In this usage, Aspire will register MySqlDataSource services as Singleton scoped in your IoC container. We can build an IWolverineExtension that utilizes the IoC container to register Wolverine like so:
public class OurFancyMySQLMultiTenancy : IWolverineExtension
{
private readonly IServiceProvider _provider;
public OurFancyMySQLMultiTenancy(IServiceProvider provider)
{
_provider = provider;
}
public void Configure(WolverineOptions options)
{
options.PersistMessagesWithMySql(_provider.GetRequiredService<MySqlDataSource>())
.RegisterStaticTenantsByDataSource(tenants =>
{
tenants.Register("tenant1", _provider.GetRequiredKeyedService<MySqlDataSource>("tenant1"));
tenants.Register("tenant2", _provider.GetRequiredKeyedService<MySqlDataSource>("tenant2"));
tenants.Register("tenant3", _provider.GetRequiredKeyedService<MySqlDataSource>("tenant3"));
});
}
}And add that to the greater application like so:
var host = Host.CreateDefaultBuilder()
.UseWolverine()
.ConfigureServices(services =>
{
services.AddSingleton<IWolverineExtension, OurFancyMySQLMultiTenancy>();
}).StartAsync();WARNING
Wolverine is not able to dynamically tear down tenants yet. That's long planned, and honestly probably only happens when an outside company sponsors that work.
If you need to be able to add new tenants at runtime or just have more tenants than is comfortable living in static configuration or plenty of other reasons I could think of, you can also use Wolverine's "master table tenancy" approach where tenant id to database connection string information is kept in a separate database table.
Here's a possible usage of that model:
var builder = Host.CreateApplicationBuilder();
var configuration = builder.Configuration;
builder.UseWolverine(opts =>
{
// You need a main database no matter what that will hold information about the Wolverine system itself
// and..
opts.PersistMessagesWithMySql(configuration.GetConnectionString("wolverine"))
// ...also a table holding the tenant id to connection string information
.UseMasterTableTenancy(seed =>
{
// These registrations are 100% just to seed data for local development
// Maybe you want to omit this during production?
// Or do something programmatic by looping through data in the IConfiguration?
seed.Register("tenant1", configuration.GetConnectionString("tenant1"));
seed.Register("tenant2", configuration.GetConnectionString("tenant2"));
seed.Register("tenant3", configuration.GetConnectionString("tenant3"));
});
});Here's some more important background on the multi-tenancy support:
- Wolverine is spinning up a completely separate "durability agent" across the application to recover stranded messages in the transactional inbox and outbox, and that's done automatically for you
- The lightweight saga support for MySQL absolutely works with this model of multi-tenancy
- Wolverine is able to manage all of its database tables including the tenant table itself (
wolverine_tenants) across both the main database and all the tenant databases including schema migrations - Wolverine's transactional middleware is aware of the multi-tenancy and can connect to the correct database based on the
IMesageContext.TenantIdor utilize the tenant id detection in Wolverine.HTTP as well - You can "plug in" a custom implementation of
ITenantSource<string>to manage tenant id to connection string assignments in whatever way works for your deployed system
Lightweight Saga Usage
See the details on Lightweight Saga Storage for more information.
MySQL saga storage uses the native JSON column type for saga state and supports optimistic concurrency with version tracking.
MySQL-Specific Considerations
Advisory Locks
Wolverine uses MySQL's GET_LOCK() and RELEASE_LOCK() functions for distributed locking. These locks are session-scoped and automatically released when the connection is closed. Lock names follow the pattern wolverine_{lockId}.
Data Types
The MySQL persistence uses the following data type mappings:
| Purpose | MySQL Type |
|---|---|
| Message body | LONGBLOB |
| Saga state | JSON |
| Timestamps | DATETIME(6) |
| GUIDs | CHAR(36) |
Compatibility
The MySQL persistence is compatible with:
- MySQL 8.0+
- MariaDB 10.5+
The implementation uses the MySqlConnector driver via Weasel.MySql.

