AvroConvert 3.1.3
See the version list below for details.
dotnet add package AvroConvert --version 3.1.3
NuGet\Install-Package AvroConvert -Version 3.1.3
<PackageReference Include="AvroConvert" Version="3.1.3" />
paket add AvroConvert --version 3.1.3
#r "nuget: AvroConvert, 3.1.3"
// Install AvroConvert as a Cake Addin #addin nuget:?package=AvroConvert&version=3.1.3 // Install AvroConvert as a Cake Tool #tool nuget:?package=AvroConvert&version=3.1.3
Avro format combines readability of JSON and compression of binary data serialization.
Benefits
The main purpose of the project was to enhance HTTP communication between microservices. Replacing JSON with Avro brought three main benefits:
- Decreased the communication time between microservices
- Reduced the network traffic by about 30%
- Increased communication security - the data was not visible in plain JSON text
Features
AvroConvert | Apache.Avro | Newtonsoft.Json | |
---|---|---|---|
Rapid serialization | ✔️ | ✔️ | ✔️ |
Easy to use | ✔️ | ❌ | ✔️ |
Built-in compression | ✔️ | ✔️ | ❌ |
Low memory allocation | ✔️ | ✔️ | ✔️ |
Support for C# data structures: Dictionary, List, DateTime... | ✔️ | ❌ | ✔️ |
Support for compression codecs | Deflate<br/> Snappy<br/> GZip<br/> Brotli | Deflate | ❌ |
Readable schema of data structure | ✔️ | ✔️ | ✔️ |
Data is encrypted | ✔️ | ✔️ | ❌ |
Benchmark
Results of BenchmarkDotNet:
Converter | Request Time [ms] | Allocated Memory [MB] | Compressed Size [kB] |
---|---|---|---|
Json | 672.3 | 52.23 | 6044 |
Avro | 384.7 | 76.58 | 2623 |
Json_Gzip | 264.1 | 88.32 | 514 |
Avro_Gzip | 181.2 | 75.05 | 104 |
Json_Brotli | 222.5 | 86.15 | 31 |
Avro_Brotli | 193.5 | 74.75 | 31 |
Article describing Avro format specification and benchmark methodology: https://www.c-sharpcorner.com/blogs/avro-rest-api-as-the-evolution-of-json-based-communication-between-mic
Conclusion: <br> Using Avro for communication between your services significantly reduces communication time and network traffic. Additionally choosing encoding (compression algorithm) can improve the results even further.
Code samples
- Serialization
byte[] avroObject = AvroConvert.Serialize(object yourObject);
<br/>
- Deserialization
CustomClass deserializedObject = AvroConvert.Deserialize<CustomClass>(byte[] avroObject);
<br/>
- Read schema from Avro object
string schemaInJsonFormat = AvroConvert.GetSchema(byte[] avroObject)
<br/>
- Deserialization of large collection of Avro objects one by one
using (var reader = AvroConvert.OpenDeserializer<CustomClass>(new MemoryStream(avroObject)))
{
while (reader.HasNext())
{
var item = reader.ReadNext();
// process item
}
}
Related packages
- Library containing functionalities, which enable communication between microservices via Http using Avro data format
- Library containing extensions for Confluent Kafka platform - used together with Kafka Consumer and Producer
License
The project is CC BY-NC-SA 3.0 licensed.
For commercial purposes purchase AvroConvert on website - Xabe.net
Contribution
We want to improve AvroConvert as much as possible. If you have any idea, found next possible feature, optimization opportunity or better way for integration, leave a comment or pull request.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- BrotliSharpLib (>= 0.3.3)
- FastMember (>= 1.5.0)
- IronSnappy (>= 1.3.0)
- Microsoft.CSharp (>= 4.7.0)
- Newtonsoft.Json (>= 12.0.3)
NuGet packages (6)
Showing the top 5 NuGet packages that depend on AvroConvert:
Package | Downloads |
---|---|
SolTechnology.Avro.Kafka
Library containing extensions for Confluent Kafka platform |
|
Memphis.Client
Memphis.Client SDK intended to make easy integration of Memphis into .NET projects |
|
SolTechnology.Avro.Http
Library containing functionalities, which enable communication between microservices using Avro data format |
|
OptimoveSdk.Engager.Integration
SDK for Engagers intergration with Optimove |
|
SolTechnology.Core.ApiClient
SolTechnology Core API client library |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on AvroConvert:
Repository | Stars |
---|---|
AdrianStrugala/AvroConvert
Rapid Avro serializer for C# .NET
|
Version | Downloads | Last updated | |
---|---|---|---|
3.4.10 | 955 | 10/21/2024 | |
3.4.9 | 14,305 | 9/18/2024 | |
3.4.8 | 52,669 | 5/8/2024 | |
3.4.7 | 2,370 | 4/26/2024 | |
3.4.6 | 27,065 | 3/4/2024 | |
3.4.5 | 5,983 | 2/15/2024 | |
3.4.4 | 13,034 | 1/16/2024 | |
3.4.3 | 76,804 | 12/9/2023 | |
3.4.2 | 6,835 | 12/1/2023 | |
3.4.1 | 12,663 | 11/11/2023 | |
3.4.0 | 24,712 | 9/18/2023 | |
3.3.7 | 16,879 | 8/7/2023 | |
3.3.6 | 33,785 | 5/29/2023 | |
3.3.5 | 7,898 | 5/11/2023 | |
3.3.4 | 55,946 | 3/3/2023 | |
3.3.3 | 579 | 2/28/2023 | |
3.3.2 | 21,244 | 2/6/2023 | |
3.3.1 | 2,904 | 1/27/2023 | |
3.3.0 | 100,094 | 10/11/2022 | |
3.2.9 | 76,002 | 6/22/2022 | |
3.2.8 | 2,208 | 6/1/2022 | |
3.2.7 | 2,081 | 5/23/2022 | |
3.2.6 | 815 | 5/16/2022 | |
3.2.5 | 60,892 | 4/13/2022 | |
3.2.4 | 837 | 4/10/2022 | |
3.2.3 | 29,755 | 10/29/2021 | |
3.2.2 | 27,378 | 10/2/2021 | |
3.2.1 | 1,057 | 9/29/2021 | |
3.2.0 | 4,477 | 9/14/2021 | |
3.1.5 | 24,446 | 8/30/2021 | |
3.1.4 | 5,547 | 8/12/2021 | |
3.1.3 | 6,076 | 8/2/2021 | |
3.1.2 | 4,365 | 6/24/2021 | |
3.1.1 | 1,162 | 6/14/2021 | |
3.1.0 | 24,318 | 5/15/2021 | |
3.0.1 | 6,312 | 4/2/2021 | |
3.0.0 | 24,569 | 3/26/2021 | |
2.7.1 | 54,811 | 2/5/2021 | |
2.7.0 | 34,595 | 12/18/2020 | |
2.6.3 | 3,116 | 10/25/2020 | |
2.6.2 | 499 | 10/23/2020 | |
2.6.1 | 3,984 | 7/25/2020 | |
2.6.0 | 584 | 7/22/2020 | |
2.5.1 | 1,436 | 6/11/2020 | |
2.5.0 | 16,662 | 5/15/2020 | |
2.4.1 | 1,454 | 4/14/2020 | |
2.4.0 | 968 | 3/25/2020 | |
2.3.0 | 795 | 3/19/2020 | |
2.2.2 | 1,102 | 2/7/2020 | |
2.2.1 | 585 | 2/7/2020 | |
2.2.0 | 679 | 1/27/2020 | |
2.1.0 | 571 | 1/16/2020 | |
2.0.0 | 567 | 1/4/2020 | |
1.8.1 | 853 | 12/9/2019 | |
1.8.0 | 3,365 | 8/30/2019 | |
1.7.0 | 623 | 8/22/2019 | |
1.6.0 | 647 | 7/22/2019 | |
1.5.1 | 756 | 7/14/2019 | |
1.5.0 | 753 | 7/11/2019 | |
1.4.0 | 615 | 6/17/2019 | |
1.3.0 | 658 | 6/4/2019 | |
1.2.0 | 717 | 6/3/2019 | |
1.1.0 | 669 | 5/28/2019 | |
1.0.1 | 753 | 5/21/2019 | |
1.0.0 | 1,007 | 4/24/2019 | |
0.8.0 | 977 | 5/1/2019 | |
0.7.0 | 1,059 | 4/22/2019 | |
0.6.3 | 957 | 4/19/2019 | |
0.6.2 | 974 | 4/19/2019 | |
0.6.1 | 946 | 4/19/2019 | |
0.6.0 | 956 | 4/19/2019 | |
0.5.0 | 1,062 | 4/18/2019 | |
0.3.0 | 1,207 | 4/11/2019 | |
0.2.1 | 991 | 4/11/2019 | |
0.2.0 | 982 | 4/11/2019 | |
0.1.0 | 1,081 | 4/10/2019 |