avlizer

Avro Data Serializer for Erlang

Latest version: 0.4.0 registry icon
Maintenance score
0
Safety score
0
Popularity score
72
Check your open source dependency risks. Get immediate insight about security, stability and licensing risks.
Security
  Vulnerabilities
Version Suggest Low Medium High Critical
0.4.0 0 0 0 0 0
0.3.3 0 0 0 0 0
0.3.2 0 0 0 0 0
0.3.0 0 0 0 0 0
0.2.3 0 0 0 0 0
0.2.2 0 0 0 0 0
0.2.1 0 0 0 0 0
0.2.0 0 0 0 0 0
0.1.1 0 0 0 0 0
0.1.0 0 0 0 0 0

Stability
Latest release:

0.4.0 - This version may not be safe as it has not been updated for a long time. Find out if your coding project uses this component and get notified of any reported security vulnerabilities with Meterian-X Open Source Security Platform

Licensing

Maintain your licence declarations and avoid unwanted licences to protect your IP the way you intended.

Apache-2.0   -   Apache License 2.0

Not a wildcard

Not proprietary

OSI Compliant



avlizer - Avro Serializer for Erlang

avlizer is built on top of erlavro The design goal of this application is to provide APIs for users to serialize or deserialize data with minimal overhead of schema management.

Integrations

Confluent Schema Registry

Confluent schema registry provides REST APIs for schema registration and lookups.

Config

Make sure schema registry URL is present in sys.config as below

{avlizer, [{avlizer_confluent, #{schema_registry_url => URL}}]}

Or set os env variable:

AVLIZER_CONFLUENT_SCHEMAREGISTRY_URL

Authentication support

avlizer currently supports Basic authentication mechanism, to use it make sure schema_registry_auth tuple {Mechanism, File}, is present in sys.config, where File is the path to a text file which contains two lines, first line for username and second line for password

{avlizer, [{avlizer_confluent, #{
    schema_registry_url => URL, 
    schema_registry_auth => {basic, File}}
}]}

Or set authorization env variables:

AVLIZER_CONFLUENT_SCHEMAREGISTRY_AUTH_MECHANISM

AVLIZER_CONFLUENT_SCHEMAREGISTRY_AUTH_USERNAME

AVLIZER_CONFLUENT_SCHEMAREGISTRY_AUTH_PASSWORD