NServiceBus.RateLimiter 3.1.0

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

// Install NServiceBus.RateLimiter as a Cake Tool
#tool nuget:?package=NServiceBus.RateLimiter&version=3.1.0

NServiceBus.RateLimiter

Before NServiceBus 6 there was the ability to throttle the number of messages processed per second. This feature was deprecated because throttling can be conflicting with the different types of tranports and transaction modes. This package restores and improves this functionality.

Version compatibility

NServiceBus NServiceBus.RateLimiter
v6.x v1.x
v7.x v2.x
v8.x v3.x

Use cases

Rate limiting can be used to reduce the pressure on your infrastructure or the infrastructure of others. Lets assume you send out a mass mailing and you do not want to consume a lot of bandwidth or maybe you are calling into a third party services that doesn't allow more then 100 requests per second. Rate limiting can help to make the whole processing more efficient without triggering unneeded retry logic.

Important

The packages registers itself in the first stage of the pipeline (ITransportReceiveContext) this means that when this behavior is called the message is actually already retrieved from the queue. If you use a transactional queue this means that your transport transaction duration will increase (MSMQ, SQL Server, etc.). If you use lease based transport (Azure Service Bus or Azure Storage Queues) the lease duration might conflict with the processing delay introduced and unintentionally cause more-than-once processing.

For this reason a warning log entry is written when the delay takes more then 5 seconds.

Message 'A88A7826-79B3-4203-BB3C-266DE76754F0' delayed by 00:01:15 due to throttling or due to other handlers taking a lot of time to complete. This can conflict with message lease times or transaction timeouts. Consider lowering the burst size or to shorten the rate limiting duration.

Consider lowering the burst size as that might cause the rate limit to be reached very fast.

Recommendations

It is recommended to:

  1. Disable prefetching if a transport supports this. Prefetching doesn't make sense if the processing gets delayed.
  2. Lower the concurrency limit which by default is equal the the number of cores of the machine

Installation

Install the Nuget package NServiceBus.RateLimiter

Configuration

Example: Automatic interval calculation

Calculates the smallest interval based on rate expressed in items per second based on the allowed concurrency.

endpointConfiguration.ApplyRateLimiting(int limitPersecond)

Limits the processing rate per second based on limitPersecond.

Example: Specify maximum burst size

If you allow for 100 messages per second, with a concurrency of 4 then the logic will limit processing of 4 messages every 400 milliseconds.

endpointConfiguration.ApplyRateLimiting(limitPerSecond:10, burstSize:4);

NOTE: The burst window duration must be larger than 100 milliseconds. The burstSize argument must always be atleast 1/10th the size of limitPerSecond.

Example: Manually enter a limit and burst window duration

Manual control over the rate limit and duration.

endpointConfiguration.ApplyRateLimiting(int limit, TimeSpan duration)

If you do not want to use the smallest interval, but want to allow for higher burst rates then set concurrency to the max burst size.

Example: Large bursts

To allow bursts of 250 items at an average rate of 10 messages per second just enter the max burst size. This will internally calculate the corresponding burst window duration. Here this would be 250 messages / 10 messages per second = 25 seconds.

endpointConfiguration.ApplyRateLimiting(limitPerSecond:10, burstSize:250);

Using this logic to cope with sudden peaks of incoming messages but still maintain an average rate of messages per second.

Example: Disable duration log entry message

By default, is processing does not start within 5 seconds a message is written to the log. This can be disabled.

endpointConfiguration.ApplyRateLimiting(cfg=>{
  cfg.Duration = TimeSpan.FromSeconds(1),
  cfg.Limit = 10,
  cfg.StartDurationThreshold = Timeout.InfiniteTimeSpan; // or TimeSpan.FromMilliseconds(-1);
cfg.
});
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. 
.NET Framework net472 is compatible.  net48 was computed.  net481 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
3.1.0 463 7/16/2023
3.0.0 310 12/9/2022
2.1.0 60,641 5/23/2020
2.0.0 1,479 9/24/2019
1.0.4 3,151 11/25/2017