OrleansContrib / Orleans.Providers.MongoDB

A MongoDb implementation of the Orleans Providers: Membership, Storage and Reminders.
MIT License
105 stars 44 forks source link

Extended Membership Protocol #72

Closed SebastianStehle closed 4 years ago

SebastianStehle commented 4 years ago

The membership provider supports three different strategies now:

  1. Single: 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.

I have also copied the newest binaries to the repo to use the TesterInternal tools.