NServiceBus.Compression
5.0.1
dotnet add package NServiceBus.Compression --version 5.0.1
NuGet\Install-Package NServiceBus.Compression -Version 5.0.1
<PackageReference Include="NServiceBus.Compression" Version="5.0.1" />
paket add NServiceBus.Compression --version 5.0.1
#r "nuget: NServiceBus.Compression, 5.0.1"
// Install NServiceBus.Compression as a Cake Addin #addin nuget:?package=NServiceBus.Compression&version=5.0.1 // Install NServiceBus.Compression as a Cake Tool #tool nuget:?package=NServiceBus.Compression&version=5.0.1
NServiceBus.Compression
Adds message body compression to the NServiceBus pipeline.
When to use
Compressing message bodies can be useful when the message body exceeds the transports its maximum message size or just in general to reduce network IO.
Transport | Maximum size |
---|---|
MSMQ | 4MB |
Azure Service Bus Standard | 256KB |
Azure Service Bus Premium | 100MB |
RabbitMQ | No limit |
Note: In the past the maximum message size for Azure Service Bus was much smaller.
Alternatives
Compression only works well on text-based payloads like XML and Json any payload (text or binary) that contains repetitive data.
- Use a binary serializer
- In the past some ready to use packages were available via https://github.com/NServiceBusExtensions but none of the binary serializers are available for NServiceBus 8+.
- ramonsmits/NServiceBus.ProtoBufNet (original archived at NServiceBusExtensions/NServiceBus.ProtoBufNet
- Implementation a binary serializer is simple and just requires a few lines of code
- Use the claim check pattern for binary message attachments via https://github.com/NServiceBusExtensions/NServiceBus.Attachments
- Use any of the above in combination with compression
Version compatibility
NServiceBus | NServiceBus.Compression |
---|---|
v5.x | v1.x |
v6.x | v2.x |
v7.x | v3.x |
v8.x | v4.x |
v9.x | v5.x |
Please note that there might be versions targeting other NServiceBus versions. Please check the Releases for all versions. or check the root of the master
branch of the repository.
Introduction
This package is based on the mutator example from the NServiceBus documentation website but is has these additional features:
- Drop in auto enable compresssion, no need to recompile! Can be saviour if affected by production incidents due to unable to send too large messages.
- Requires messages to be of a minimal size but this thresshold is configurable.
- Compression level can be configured to have more flexibility between CPU cycles and message size.
- Uses a header similar as the http specification
Content-Encoding
.
Configuration
The defaults are:
- Size treshold: 1,000 bytes
- Compression level: Fastest
This is to not spend CPU cycles on messages that are small. Compression not only costs CPU cycles but also introduces latency both during outgoing (compression) and incoming (decompression) messages.
The following only compresses messages over 16KB in size and uses the highest compression level.
endpointConfiguration.CompressMessageBody(System.IO.Compression.CompressionLevel.Optimal, 16 * 1024);
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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. |
-
net8.0
- CommunityToolkit.HighPerformance (>= 8.2.1)
- NServiceBus (>= 9.0.0 && < 10.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.