Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement avro for serialization and deserialization. #12

Open
4 tasks done
afmjoaa opened this issue Jun 14, 2023 · 1 comment
Open
4 tasks done

Implement avro for serialization and deserialization. #12

afmjoaa opened this issue Jun 14, 2023 · 1 comment
Assignees
Labels
good first issue Good for newcomers

Comments

@afmjoaa
Copy link
Collaborator

afmjoaa commented Jun 14, 2023

  • Explore Avro CLI Example
  • Find difference between goavro and go-genavro
  • Add goavro in requirement of GODB
  • Implement Serialization and deserialization between the avro file and go class.
@afmjoaa afmjoaa added the good first issue Good for newcomers label Jun 14, 2023
@Prattoy
Copy link
Collaborator

Prattoy commented Jun 19, 2023

Avro CLI : Commands to manipulate avro data

  • avrocat: read Avro data files and print their content to the console

  • avromod: modify Avro data files in-place

  • avropipe: a pipeline for transforming Avro data

Any type of Avro data manipulation, conversion, or filtering is possible with these commands.

goavro: "goavro" is a popular Go library for handling Avro data. It provides functionality for working with Avro schemas, encoding and decoding Avro data, and validating Avro data against schemas. The library allows you to read and write Avro data in binary or JSON format.

go-genavro: "go-genavro" is a code generation tool for Go that generates Go code from Avro schema files. It takes Avro schema files as input and generates Go structs and methods that allow you to work with Avro data in a type-safe manner. The generated code provides convenient methods for encoding and decoding Avro data and ensures that the data adheres to the defined schema. This library simplifies the process of working with Avro data by generating the necessary Go code based on the Avro schema.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

2 participants