AvroConvert 3.4.12
dotnet add package AvroConvert --version 3.4.12
NuGet\Install-Package AvroConvert -Version 3.4.12
<PackageReference Include="AvroConvert" Version="3.4.12" />
paket add AvroConvert --version 3.4.12
#r "nuget: AvroConvert, 3.4.12"
// Install AvroConvert as a Cake Addin #addin nuget:?package=AvroConvert&version=3.4.12 // Install AvroConvert as a Cake Tool #tool nuget:?package=AvroConvert&version=3.4.12
<p align="center"> <img alt="SolTechnology-logo" src="./docs/logo.png" width="200"> </p>
<h2 align="center"> AvroConvert </h2>
<p align="center"> <a> Rapid Avro serializer for C# .NET </a> </p>
<p align="center"> <a href="https://github.com/AdrianStrugala/AvroConvert"><img src="https://img.shields.io/github/stars/AdrianStrugala/AvroConvert.svg?label=%E2%AD%90%20Stars%20%E2%AD%90&color=yellow&style=flat&logo=github"></a> <a href="https://adrianstrugala.github.io/AvroConvert/"><img src="https://img.shields.io/badge/AvroConvertOnline-Try%20Now-blue.svg?logo=google-chrome"></a> <br> <a href="https://www.nuget.org/packages/AvroConvert"><img src="https://img.shields.io/nuget/v/AvroConvert.svg?logo=nuget"></a> <a href="https://github.com/AdrianStrugala/AvroConvert/actions/workflows/build&test.yml"><img src="https://github.com/AdrianStrugala/AvroConvert/actions/workflows/build&test.yml/badge.svg"></a> <a href="https://www.nuget.org/packages/AvroConvert"><img src="https://img.shields.io/nuget/dt/AvroConvert.svg?label=NuGet%20Downloads&logo=nuget&color=blue"></a> <br>
</p>
Docs
Apache Avro format documentation
First steps with Avro in the .NET
Benefits
Avro format combines readability of JSON and data compression of binary serialization.
AvroConvert | Apache.Avro | Newtonsoft.Json | |
---|---|---|---|
Rapid serialization | ✔️ | ✔️ | ✔️ |
Low memory allocation | ✔️ | ✔️ | ✔️ |
Readable schema of data structure | ✔️ | ✔️ | ✔️ |
Support for C# native objects (Dictionary, List, DateTime...) | ✔️ | ❌ | ✔️ |
Built-in data encryption | ✔️ | ✔️ | ❌ |
Support for compression codecs | Deflate<br/> Snappy<br/> GZip<br/> Brotli | Deflate | ❌ |
Introducing Avro to the projects brings three main benefits:
- Reduction of data size and storage cost
- Decrease of the communication time and the network traffic between microservices
- Increased security - the data is not visible in plain text format
Article describing Avro format specification and Avro API idea: 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 data size and network traffic. Additionally choosing encoding (compression algorithm) can improve the results even further.
Features
- 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
}
}
- Generation of C# models from Avro file or schema
string resultModel = AvroConvert.GenerateModel(avroObject);
- Conversion of Avro to JSON directly
var resultJson = AvroConvert.Avro2Json(avroObject);
Extended list: <br>
- Serialization of .NET object to Avro format
- Deserialization of Avro data to .NET object
- Other Avro data related operations
- Schema related
License
AvroConvert is licensed under the CC BY-NC-SA 3.0 license.
For commercial use, please purchase a license.
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.
Thank you a million to all the contributors to the library, including those that raise issues, started conversations, and those who send pull requests. Thank you!
These amazing people have contributed to AvroConvert:
<a href="https://github.com/AdrianStrugala/AvroConvert/graphs/contributors"> <img src="https://contrib.rocks/image?repo=AdrianStrugala/AvroConvert" /> </a>
Related Work
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. 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. net9.0 was computed. 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. |
.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)
- IronSnappy (>= 1.3.1)
- Microsoft.CSharp (>= 4.7.0)
- Newtonsoft.Json (>= 13.0.3)
- Portable.System.DateTimeOnly (>= 6.0.3)
-
net6.0
- BrotliSharpLib (>= 0.3.3)
- IronSnappy (>= 1.3.1)
- Newtonsoft.Json (>= 13.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.12 | 273 | 3/7/2025 | |
3.4.11 | 283 | 3/6/2025 | |
3.4.10 | 31,226 | 10/21/2024 | |
3.4.9 | 57,924 | 9/18/2024 | |
3.4.8 | 92,767 | 5/8/2024 | |
3.4.7 | 3,583 | 4/26/2024 | |
3.4.6 | 33,056 | 3/4/2024 | |
3.4.5 | 8,082 | 2/15/2024 | |
3.4.4 | 20,528 | 1/16/2024 | |
3.4.3 | 84,542 | 12/9/2023 | |
3.4.2 | 9,094 | 12/1/2023 | |
3.4.1 | 13,864 | 11/11/2023 | |
3.4.0 | 27,434 | 9/18/2023 | |
3.3.7 | 20,377 | 8/7/2023 | |
3.3.6 | 37,345 | 5/29/2023 | |
3.3.5 | 8,188 | 5/11/2023 | |
3.3.4 | 64,152 | 3/3/2023 | |
3.3.3 | 605 | 2/28/2023 | |
3.3.2 | 21,493 | 2/6/2023 | |
3.3.1 | 2,997 | 1/27/2023 | |
3.3.0 | 113,242 | 10/11/2022 | |
3.2.9 | 76,793 | 6/22/2022 | |
3.2.8 | 2,307 | 6/1/2022 | |
3.2.7 | 2,276 | 5/23/2022 | |
3.2.6 | 862 | 5/16/2022 | |
3.2.5 | 62,358 | 4/13/2022 | |
3.2.4 | 861 | 4/10/2022 | |
3.2.3 | 30,076 | 10/29/2021 | |
3.2.2 | 28,700 | 10/2/2021 | |
3.2.1 | 1,111 | 9/29/2021 | |
3.2.0 | 5,265 | 9/14/2021 | |
3.1.5 | 25,027 | 8/30/2021 | |
3.1.4 | 5,710 | 8/12/2021 | |
3.1.3 | 7,643 | 8/2/2021 | |
3.1.2 | 4,404 | 6/24/2021 | |
3.1.1 | 1,183 | 6/14/2021 | |
3.1.0 | 26,316 | 5/15/2021 | |
3.0.1 | 6,496 | 4/2/2021 | |
3.0.0 | 24,729 | 3/26/2021 | |
2.7.1 | 55,330 | 2/5/2021 | |
2.7.0 | 34,638 | 12/18/2020 | |
2.6.3 | 3,139 | 10/25/2020 | |
2.6.2 | 522 | 10/23/2020 | |
2.6.1 | 4,278 | 7/25/2020 | |
2.6.0 | 610 | 7/22/2020 | |
2.5.1 | 1,530 | 6/11/2020 | |
2.5.0 | 17,799 | 5/15/2020 | |
2.4.1 | 1,483 | 4/14/2020 | |
2.4.0 | 994 | 3/25/2020 | |
2.3.0 | 1,031 | 3/19/2020 | |
2.2.2 | 1,129 | 2/7/2020 | |
2.2.1 | 610 | 2/7/2020 | |
2.2.0 | 705 | 1/27/2020 | |
2.1.0 | 599 | 1/16/2020 | |
2.0.0 | 592 | 1/4/2020 | |
1.8.1 | 879 | 12/9/2019 | |
1.8.0 | 3,527 | 8/30/2019 | |
1.7.0 | 652 | 8/22/2019 | |
1.6.0 | 673 | 7/22/2019 | |
1.5.1 | 793 | 7/14/2019 | |
1.5.0 | 779 | 7/11/2019 | |
1.4.0 | 642 | 6/17/2019 | |
1.3.0 | 684 | 6/4/2019 | |
1.2.0 | 744 | 6/3/2019 | |
1.1.0 | 698 | 5/28/2019 | |
1.0.1 | 784 | 5/21/2019 | |
1.0.0 | 1,060 | 4/24/2019 | |
0.8.0 | 1,032 | 5/1/2019 | |
0.7.0 | 1,116 | 4/22/2019 | |
0.6.3 | 1,012 | 4/19/2019 | |
0.6.2 | 1,027 | 4/19/2019 | |
0.6.1 | 999 | 4/19/2019 | |
0.6.0 | 1,009 | 4/19/2019 | |
0.5.0 | 1,129 | 4/18/2019 | |
0.3.0 | 1,288 | 4/11/2019 | |
0.2.1 | 1,045 | 4/11/2019 | |
0.2.0 | 1,037 | 4/11/2019 | |
0.1.0 | 1,163 | 4/10/2019 |