All Projects → FasterXML → Jackson Dataformats Binary

FasterXML / Jackson Dataformats Binary

Uber-project for standard Jackson binary format backends: avro, cbor, ion, protobuf, smile

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Jackson Dataformats Binary

Ratatool
A tool for data sampling, data generation, and data diffing
Stars: ✭ 279 (+26.24%)
Mutual labels:  protobuf, avro
Csm
Source code for the Cities: Skylines Multiplayer mod (CSM)
Stars: ✭ 457 (+106.79%)
Mutual labels:  hacktoberfest, protobuf
Kotlinx.serialization
Kotlin multiplatform / multi-format serialization
Stars: ✭ 3,550 (+1506.33%)
Mutual labels:  protobuf, cbor
javascript-serialization-benchmark
Comparison and benchmark of JavaScript serialization libraries (Protocol Buffer, Avro, BSON, etc.)
Stars: ✭ 54 (-75.57%)
Mutual labels:  protobuf, avro
Protobuf Nim
Protobuf implementation in pure Nim that leverages the power of the macro system to not depend on any external tools
Stars: ✭ 90 (-59.28%)
Mutual labels:  hacktoberfest, protobuf
Cpp Serializers
Benchmark comparing various data serialization libraries (thrift, protobuf etc.) for C++
Stars: ✭ 533 (+141.18%)
Mutual labels:  protobuf, avro
Ola
The Open Lighting Architecture - The Travel Adaptor for the Lighting Industry
Stars: ✭ 424 (+91.86%)
Mutual labels:  hacktoberfest, protobuf
Rq
Record Query - A tool for doing record analysis and transformation
Stars: ✭ 1,808 (+718.1%)
Mutual labels:  protobuf, avro
Avro Builder
Ruby DSL to create Avro schemas
Stars: ✭ 82 (-62.9%)
Mutual labels:  hacktoberfest, avro
Gcs Tools
GCS support for avro-tools, parquet-tools and protobuf
Stars: ✭ 57 (-74.21%)
Mutual labels:  protobuf, avro
Schema Registry
Confluent Schema Registry for Kafka
Stars: ✭ 1,647 (+645.25%)
Mutual labels:  protobuf, avro
Mu Haskell
Mu (μ) is a purely functional framework for building micro services.
Stars: ✭ 215 (-2.71%)
Mutual labels:  hacktoberfest, avro
Tfsec
Security scanner for your Terraform code
Stars: ✭ 3,622 (+1538.91%)
Mutual labels:  hacktoberfest
Action Doctl
GitHub Actions for DigitalOcean - doctl
Stars: ✭ 219 (-0.9%)
Mutual labels:  hacktoberfest
Site
The new frontend/backend code for https://christine.website
Stars: ✭ 220 (-0.45%)
Mutual labels:  hacktoberfest
React Native Simple Dialogs
⚛ Cross-platform React Native dialogs based on the Modal component
Stars: ✭ 218 (-1.36%)
Mutual labels:  hacktoberfest
Docs
Repository of Twilio SendGrid's product documentation.
Stars: ✭ 221 (+0%)
Mutual labels:  hacktoberfest
Create Cljs App
Set up a modern CLJS web app by running one command.
Stars: ✭ 220 (-0.45%)
Mutual labels:  hacktoberfest
City Scrapers
Scrape, standardize and share public meetings from local government websites
Stars: ✭ 220 (-0.45%)
Mutual labels:  hacktoberfest
Malwless
Test Blue Team detections without running any attack.
Stars: ✭ 215 (-2.71%)
Mutual labels:  hacktoberfest

Overview

This is a multi-module umbrella project for Jackson standard binary dataformat backends.

Dataformat backends are used to support format alternatives to JSON, using general-purpose Jackson API. Formats included allow access using all 3 API styles (streaming, databinding, tree model).

For Jackson 2.x this is done by sub-classing Jackson core abstractions of:

  • All backends sub-class JsonFactory, which is factory for:
    • JsonParser for reading data (decoding data encoding in supported format)
    • JsonGenerator for writing data (encoding data using supported format)
  • Starting with 2.10 there is also sub-class of ObjectMapper (like CBORMapper, SmileMapper) for all formats, mostly for convenience
  • Jackson 2.10 also added "Builder" style construction for above-mentioned factories, mappers.

Status

Build Status

Binary formats supported

Currently included backends are:

License

All modules are licensed under Apache License 2.0.

Maven dependencies

To use these format backends Maven-based projects, use following dependency:

<dependency>
  <groupId>com.fasterxml.jackson.dataformat</groupId>
  <artifactId>jackson-dataformat-[FORMAT]</artifactId>
  <version>2.12.2</version>
</dependency>

where [FORMAT] is one of supported modules (avro, cbor, smile etc)

Development

Maintainers

You may at-reference them as necessary but please keep in mind that all maintenance work is strictly voluntary (no one gets paid to work on this or any other Jackson components) so there is no guarantee for timeliness of responses.

Branches

master branch is for developing the next major Jackson version -- 3.0 -- but there are active maintenance branches in which much of development happens:

  • 2.13 is for developing the next 2.x version
  • 2.12 and 2.11 are for backported fixes for 2.12/2.11 versions (respectively)

Older branches are usually not changed but are available for historic reasons. All released versions have matching git tags (jackson-dataformats-binary-2.10.3).

Note that since individual format modules used to live in their own repositories, older branches (before 2.8) and tags do not exist in this repository.

Other Jackson binary backends

In addition to binary format backends hosted by FasterXML in this repo, there are other known Jackson backends for binary data formats. For example:

More

See Wiki for more information (javadocs).

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].