MongoDBQ 1.2.1

dotnet add package MongoDBQ --version 1.2.1
NuGet\Install-Package MongoDBQ -Version 1.2.1
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="MongoDBQ" Version="1.2.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MongoDBQ --version 1.2.1
#r "nuget: MongoDBQ, 1.2.1"
#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 MongoDBQ as a Cake Addin
#addin nuget:?package=MongoDBQ&version=1.2.1

// Install MongoDBQ as a Cake Tool
#tool nuget:?package=MongoDBQ&version=1.2.1

MongoDBQ

A MongoDB message queue that supports locking, retries, scheduling, deduplication, and CosmosDB

NuGet Version

Usage

Server

using MongoDBQ;

record TestData(Guid Data);

var client = new MongoClient("mongodb://localhost:27017");
var db = client.GetDatabase("test");
var collection = db.GetCollection<Message<TestData>>("messages");
var mongoDBQ = new MongoDBQ<TestData>(collection, 5, TimeSpan.FromSeconds(5), TimeSpan.FromMinutes(1));
var testData = new TestData(Guid.NewGuid());
var message = new Message<TestData>(testData);
await mongoDBQ.Enqueue(message);

Client

using MongoDBQ;
using MongoDB.Driver;

record TestData(Guid Data);

var client = new MongoClient("mongodb://localhost:27017");
var db = client.GetDatabase("test");
var collection = db.GetCollection<Message<TestData>>("messages");
var mongoDBQ = new MongoDBQ<TestData>(collection, 5, TimeSpan.FromSeconds(5), TimeSpan.FromMinutes(1));
while (true)
  {
    var message = await mongoDBQ.Dequeue();
    //Sleep if message is null?
    try
      {
        //do something with message.Body
        await mongoDBQ.Complete(message); //mark as completed
      }

      catch (System.Exception)
      {
        //Backoff and retry it later
        message.ScheduledEnqueueTime = DateTime.UtcNow.AddMinutes(5);
        await mongoDBQ.Fail(message);
        //this makes the message available for retry, alternatively use mongoDBQ.Delete(message) if this is terminal
      }
  }

MongoDBQ constructor parameters:

  • maxDeliveryCount: The maximum number of times a message can be delivered before it is considered poisoned.
  • lockDuration: The duration for which a message should be locked after being dequeued. When the lock expires, the message becomes available for dequeueing again.
  • expireAfter: Optional time after which a completed message should be removed from the collection.
  • cosmosDB: Enable CosmosDB specific features like Time-To-Live (TTL) for automatic removal of expired messages.

MongoDBQ.Dequeue parameters:

  • count: The number of messages to dequeue from the queue. The method will attempt to dequeue the specified number of messages but may return fewer messages if there are not enough available.
  • partitionKey: The optional partition key to use for dequeueing messages. If provided, the method will only dequeue messages with a matching partition key. This is useful for processing messages in parallel while ensuring that messages with the same partition key are processed in order. It could also allows you to have messages for different services in the same collection.
  • autoComplete: A boolean parameter indicating whether the dequeued messages should be automatically marked as completed after they are dequeued. If set to true, the method will mark the dequeued messages as completed, preventing them from being dequeued again. If set to false, the dequeued messages will remain in the queue, and you will need to manually complete or fail them based on your processing logic.
  • cancellationToken: An optional cancellation token that can be used to cancel the dequeue operation. If the provided cancellation token is triggered, the method will stop dequeueing messages and return the dequeued messages up to that point.

MongoDBQ.DequeueAsyncEnumerable parameters:

  • partitionKey: The optional partition key to use for streaming messages. If provided, the method will only stream messages with a matching partition key. This is useful for processing messages in parallel while ensuring that messages with the same partition key are processed in order. It could also allows you to have messages for different services in the same collection.
  • autoComplete: A boolean parameter indicating whether the dequeued messages should be automatically marked as completed after they are dequeued. If set to true, the method will mark the dequeued messages as completed, preventing them from being dequeued again. If set to false, the dequeued messages will remain in the queue, and you will need to manually complete or fail them based on your processing logic.
  • cancellationToken: An optional cancellation token that can be used to cancel the stream operation. If the provided cancellation token is triggered, the method will stop streaming messages and return the dequeued messages up to that point.

Message properties:

  • Set the Id property to enable deduplication; I use Identifiable to create a deterministic name-based GUID from properties of the message body.
  • Set ScheduledEnqueueTime to schedule the message for processing in the future.
  • Set PartitionKey to partition messages in the collection and then use MongoDBQ.Dequeue(partitionKey).

Optimistic completion

Greater performance can be achieved by dequeueing batches, using autoComplete, and reversing the completion by calling mongoDBQ.Fail(message) for those that raise an error. Ensure this occurs within the expiry window if you're using TTLs.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.1 795 10/19/2023
1.2.0 180 10/18/2023
1.1.0 232 9/25/2023
1.0.12 273 4/13/2023
1.0.11 209 4/13/2023
1.0.10 200 4/13/2023
1.0.9 233 4/9/2023
1.0.8 245 4/5/2023