NServiceBus.Storage.MongoDB

NServiceBus.Storage.MongoDB


Keywords
messaging, nservicebus
License
Other
Install
Install-Package NServiceBus.Storage.MongoDB -Version 3.0.0

Documentation

NServiceBus.Storage.MongoDB

NServiceBus.Storage.MongoDB is the official NServiceBus persistence implementation for MongoDB.

It is part of the Particular Service Platform, which includes NServiceBus and tools to build, monitor, and debug distributed systems.

See the MongoDB Persistence documentation for more details on how to use it.

Running tests locally

Both test projects utilize NUnit. The test projects can be executed using the test runner included in Visual Studio or using the dotnet test command from the command line.

The tests in the AcceptanceTesting project and many of the tests in the Testing project require an active MongoDB server in order for the test to pass.

MongoDB

By default, both the AcceptanceTests and Tests projects will connect to any MongoDB server running at the default address of mongodb://localhost:27017.

To use a different Mongo URL, you can set the NServiceBusStorageMongoDB_ConnectionString environment variable.

Instructions for installing MongoDB can be found on the MongoDB website.

Docker

For developers using Docker containers, the following docker command will quickly setup a container configured to use the default port:

docker run -d -p 27017:27017 --name TestMongoDB mongo:latest --replSet tr0

Once started, initialize the replication set (required for transaction support) by connecting to the database using a mongo shell. You can use the following docker command to start a mongo shell inside the container and initialize the replication set:

docker exec -it TestMongoDB mongosh --eval 'rs.initiate()'

Local installation

  • Install the MongoDB server using the installer from the MongoDB website.
  • Install the MongoDB shell (mongosh) from the MongoDB website
  • In the server configuration file (mongod.cfg) add followinng lines to enable replica set mode:
replication:
  replSetName: rs0
  • Restart the MongoDB Windows service (if installed as a service) or start the MongoDB server from the command line
  • Open the mongosh and type in rs.initiate()