Orleans.Providers.MongoDB Save

A MongoDb implementation of the Orleans Providers: Membership, Storage and Reminders.

Project README

Orleans.Providers.MongoDB

Nuget

Feedback would be appreciated.

A MongoDb implementation of the Orleans Providers.

This includes

  • Membership (IMembershipTable & IGatewayListProvider)
  • Reminders (IReminderTable)
  • Storage (IStoragePRovider)

Installation

install-package Orleans.Providers.MongoDB

Setup

Install MongoDB (BREAKING CHANGE)

From 3.1 onwards you have to register the IMongoClient in the service locator.

### Server side

# via Silo Host Builder (ISiloHostBuilder)
var silo = new SiloHostBuilder()
    .UseMongoDBClient("mongodb://localhost")
    ...
    .Build();

# via Generic Host + Silo Builder (ISiloBuilder)
var host = Host.CreateDefaultBuilder(args)
	.UseOrleans((context, siloBuilder) => {
		siloBuilder.UseMongoDBClient("mongodb://localhost")
		...
	});

### Client side
var client = new ClientBuilder()
    .UseMongoDBClient("mongodb://localhost")
    ...
    .Build();

as an alternative you can also implement the IMongoClientFactory interface and override the client names with options.

There is also an overload of UseMongoDBClient() that takes a Func<IServiceProvider, MongoClientSettings> which allows you specify all MongoDB connection settings individually. This is especially useful, if you need to separate network settings and credentials into different configuration variables, or if you want to bind to an IOptions<T> configuration as shown below.

[...]
  .UseMongoDBClient(provider =>
    {
      var cfg = provider.GetRequiredService<IOptions<MyMongoDbConfiguration>>();

      var settings = MongoClientSettings.FromConnectionString(cfg.Value.ConnectionString);
      settings.Credential = MongoCredential.CreateCredential(cfg.Value.AuthDatabase, cfg.Value.UserName, cfg.Value.Password);

      return settings;
    })
[...]

Membership

Use the client builder to setup mongo db:

var client = new ClientBuilder()
    .UseMongoDBClustering(options =>
    {
        options.DatabaseName = dbName;
        options.Strategy = MongoDBMembershipStrategy.Multiple;
    })
    ...
    .Build();

and the same for the silo builder:

var silo = new SiloHostBuilder()
     .UseMongoDBClustering(options =>
    {
        options.DatabaseName = dbName;
        options.Strategy = MongoDBMembershipStrategy.Multiple;
    })
    ...
    .Build();

The provider supports three different strategies for membership management:

  1. SingleDocument: A single document per deployment. Fastest for small clusters.
  2. Multiple: One document per silo and an extra document for the table version. Needs a replica set and transaction support to work properly.
  3. MultipleDeprecated: One document per silo but no support for the extended membership protocol. Not recommended.

Reminders

Just use the silo builder:

var silo = new SiloHostBuilder()
    .UseMongoDBReminders(options =>
    {
        options.DatabaseName = dbName;
        options.CreateShardKeyForCosmos = createShardKey;
    })
    ...
    .Build();

Storage

Just use the silo builder:

var silo = new SiloHostBuilder()
    .AddMongoDBGrainStorage("grains-storage-provider-name",
    options =>
    {
        options.DatabaseName = dbName;
        options.CreateShardKeyForCosmos = createShardKey;
    })
    ...
    .Build();

Storage Serializers

Mongo provider supports the following serializers:

  • JsonGrainStateSerializer (Default): uses Newtonsoft.JSON
  • BinaryGrainStateSerializer: uses Orleans binary serializer
  • BsonGrainStateSerializer: uses BsonSerializer

How to configure JsonGrainStateSerializer

services.Configure<JsonGrainStateSerializerOptions>(options =>
{
    options.ConfigureJsonSerializerSettings = settings =>
    {
        settings.NullValueHandling = NullValueHandling.Include;
        settings.DefaultValueHandling = DefaultValueHandling.Populate;
        settings.ObjectCreationHandling = ObjectCreationHandling.Replace;
    });
});

How to change default serializer

For example, in order to change the default from JsonGrainStateSerializer to BsonGrainStateSerializer

services.AddSingleton<IGrainStateSerializer, BsonGrainStateSerializer>();

How to configure serializer for a specific storage provider

For example in order to use binary serializer for PubSubStore

services.AddSingletonNamedService<IGrainStateSerializer, BinaryGrainStateSerializer>("PubSubStore");
...
var silo = new SiloHostBuilder()
    .AddMongoDBGrainStorage("PubSubStore", options => options.DatabaseName = dbName)
    ...
    .Build();

Remarks

As you can see you have to pass in the connection string to each provider. But we will only create one MongoDB client for each unique connection string to keep the number of connections to your cluster or server as low as possible.

Building the unit tests

In order to make use of many tests already defined in Orleans, the unit test project of this module depends on TesterInternal, which is added as a project reference from the local path ./libs where the whole Orleans source code is mirrored as a git submodule.

This comes with two caveats:

  • Depending on your git client, the submodules are sometimes not pulled automatically. If you find the ./libs subdirectory to be empty, execute git pull --recurse-submodules manually from the command shell
  • some of the projects in the ./libs subfolder need F# support to be present in your VisualStudio installation, otherwise you will receive an error message about an unsupported language. This may apply to other IDEs as well
Open Source Agenda is not affiliated with "Orleans.Providers.MongoDB" Project. README Source: OrleansContrib/Orleans.Providers.MongoDB
Stars
98
Open Issues
0
Last Commit
2 months ago
License
MIT

Open Source Agenda Badge

Open Source Agenda Rating