PollyMongo 1.0.1

dotnet add package PollyMongo --version 1.0.1
                    
NuGet\Install-Package PollyMongo -Version 1.0.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="PollyMongo" Version="1.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="PollyMongo" Version="1.0.1" />
                    
Directory.Packages.props
<PackageReference Include="PollyMongo" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add PollyMongo --version 1.0.1
                    
#r "nuget: PollyMongo, 1.0.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.
#:package PollyMongo@1.0.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=PollyMongo&version=1.0.1
                    
Install as a Cake Addin
#tool nuget:?package=PollyMongo&version=1.0.1
                    
Install as a Cake Tool

PollyMongo

NuGet NuGet Downloads CI

Polly v8 resilience pipelines for MongoDB.Driver — wrap Find, InsertOne, UpdateOne, DeleteOne, and other IMongoCollection<T> calls with retry, timeout, circuit-breaker, and more using a single ResilientMongoCollection<T> decorator. Zero changes to your queries.

var resilient = collection.WithPolly(pipeline =>
    pipeline
        .AddRetry(new RetryStrategyOptions
        {
            MaxRetryAttempts = 3,
            Delay = TimeSpan.FromMilliseconds(200),
            ShouldHandle = new PredicateBuilder().Handle<MongoException>(),
        })
        .AddTimeout(TimeSpan.FromSeconds(5)));

var orders = await resilient.FindAsync(Builders<Order>.Filter.Eq(o => o.CustomerId, id));

Every MongoDB operation is now automatically wrapped with retry + timeout — zero changes to existing queries.


Why PollyMongo?

MongoDB.Driver has no built-in retry or timeout interception beyond connection-level settings. PollyMongo adds operation-level resilience cleanly.

Without PollyMongo With PollyMongo
Write try/catch + retry loops around every query One WithPolly(...) call
Manually cancel long-running operations Timeout managed by the pipeline
Duplicate retry logic across repositories Single pipeline applied everywhere
Must touch every operation to add resilience Zero changes to existing queries

Installation

dotnet add package PollyMongo

Targets net6.0, net8.0, and net9.0.

Dependencies: Polly.Core 8.*, MongoDB.Driver 3.*, Microsoft.Extensions.DependencyInjection.Abstractions 8.*


Quick start

1. Inline pipeline (ad-hoc usage)

using PollyMongo;

var resilient = collection.WithPolly(pipeline =>
    pipeline.AddRetry(new RetryStrategyOptions
    {
        MaxRetryAttempts = 3,
        Delay = TimeSpan.FromMilliseconds(200),
        BackoffType = DelayBackoffType.Exponential,
        ShouldHandle = new PredicateBuilder().Handle<MongoException>(),
    }));

var users = await resilient.FindAsync(Builders<User>.Filter.Empty);

2. Pre-built pipeline

var pipeline = new ResiliencePipelineBuilder()
    .AddRetry(new RetryStrategyOptions { MaxRetryAttempts = 3 })
    .AddTimeout(TimeSpan.FromSeconds(10))
    .Build();

var resilient = collection.WithPolly(pipeline);
var count = await resilient.CountDocumentsAsync(Builders<Order>.Filter.Empty);

3. Dependency injection

// Program.cs
builder.Services.AddPollyMongo(pipeline =>
    pipeline
        .AddRetry(new RetryStrategyOptions { MaxRetryAttempts = 3 })
        .AddTimeout(TimeSpan.FromSeconds(5)));

// Repository
public class OrderRepository(IMongoCollection<Order> collection, ResiliencePipeline pipeline)
{
    public Task<List<Order>> GetAllAsync() =>
        collection.WithPolly(pipeline).FindAsync(Builders<Order>.Filter.Empty);

    public Task InsertAsync(Order order) =>
        collection.WithPolly(pipeline).InsertOneAsync(order);
}

Supported operations

Method Description
FindAsync<T> Returns List<T> matching the filter
FindOneAsync<T> First matching document or default
InsertOneAsync Insert a single document
InsertManyAsync Insert multiple documents
UpdateOneAsync Update first matching document
UpdateManyAsync Update all matching documents
ReplaceOneAsync Replace first matching document
DeleteOneAsync Delete first matching document
DeleteManyAsync Delete all matching documents
CountDocumentsAsync Count matching documents
FindOneAndUpdateAsync Atomic find + update
FindOneAndDeleteAsync Atomic find + delete
FindOneAndReplaceAsync Atomic find + replace

Pipeline order

Polly strategies are applied outer-to-inner (left-to-right). The recommended order is:

[Timeout] → [Retry] → [Circuit Breaker] → [MongoDB]
pipeline
    .AddTimeout(TimeSpan.FromSeconds(10))    // 1. Overall deadline
    .AddRetry(retryOptions)                  // 2. Retry on failure
    .AddCircuitBreaker(cbOptions)            // 3. Open circuit if overloaded

ASP.NET Core example

var builder = WebApplication.CreateBuilder(args);

builder.Services.AddSingleton<IMongoClient>(_ =>
    new MongoClient(builder.Configuration.GetConnectionString("Mongo")));

builder.Services.AddScoped(sp =>
    sp.GetRequiredService<IMongoClient>()
      .GetDatabase("mydb")
      .GetCollection<Order>("orders"));

builder.Services.AddPollyMongo(pipeline =>
    pipeline
        .AddRetry(new RetryStrategyOptions
        {
            MaxRetryAttempts = 3,
            Delay = TimeSpan.FromMilliseconds(100),
            BackoffType = DelayBackoffType.Exponential,
            ShouldHandle = new PredicateBuilder()
                .Handle<MongoConnectionException>()
                .Handle<MongoConnectionPoolWaitQueueFullException>()
                .Handle<MongoExecutionTimeoutException>(),
        })
        .AddTimeout(TimeSpan.FromSeconds(30))
        .AddCircuitBreaker(new CircuitBreakerStrategyOptions
        {
            FailureRatio = 0.5,
            MinimumThroughput = 10,
            SamplingDuration = TimeSpan.FromSeconds(30),
            BreakDuration = TimeSpan.FromSeconds(15),
        }));

Package Downloads Description
PollyEFCore Downloads Polly v8 resilience for EF Core queries and SaveChanges
PollyCosmosDb Downloads Polly v8 resilience for Azure Cosmos DB with CosmosTransientErrors predicate
PollyDapper Downloads Polly v8 resilience for Dapper queries and commands
PollySqlClient Downloads Polly v8 resilience for SQL Server and Azure SQL with SqlServerTransientErrors predicate
PollyMediatR Downloads Polly v8 resilience pipelines for MediatR
PollyRedis Downloads Polly v8 resilience for StackExchange.Redis
PollyHealthChecks Downloads ASP.NET Core health checks for Polly v8 circuit breakers
PollyOpenAI Downloads Polly v8 resilience for OpenAI and Azure OpenAI
PollyElasticsearch Polly v8 for Elastic.Clients.Elasticsearch
PollyAzureKeyVault Polly v8 for Azure Key Vault
PollySendGrid Polly v8 for SendGrid
PollyMassTransit Polly v8 for MassTransit
PollyAzureTableStorage Polly v8 for Azure Table Storage
PollyMailKit MailKit SMTP email client
PollyAzureQueueStorage Azure Queue Storage QueueClient
PollyHangfire Hangfire IBackgroundJobClient
PollyBackoff Downloads Jitter, linear & custom backoff for Polly v8 retry
PollyChaos Downloads Fault & latency injection (Simmy for Polly v8)
PollyAzureEventHub Polly v8 for Azure Event Hubs
PollyAzureServiceBus Downloads Polly v8 resilience for Azure Service Bus

💼 Need .NET consulting?

The author of this package is available for consulting on Polly v8 resilience, Azure cloud architecture, and clean .NET design.

→ solidqualitysolutions.com · LinkedIn

License

MIT

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 is compatible.  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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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.0.1 98 7/7/2026
1.0.0 107 6/24/2026

1.0.1: Fix package icon (was showing an incorrect/placeholder image). 1.0.0: Initial release. ResilientMongoCollection wraps IMongoCollection calls in a Polly v8 ResiliencePipeline. Supports net6.0, net8.0, and net9.0.