Microsoft Azure Schema Registry Avro Serializer Client Library for Python
Project description
Azure Schema Registry Avro Serializer client library for Python
Azure Schema Registry is a schema repository service hosted by Azure Event Hubs, providing schema storage, versioning, and management. This package provides an Avro serializer capable of serializing and deserializing payloads containing Schema Registry schema identifiers and Avro-encoded data.
Source code | Package (PyPi) | API reference documentation | Samples | Changelog
Getting started
Install the package
Install the Azure Schema Registry Avro Serializer client library and Azure Identity client library for Python with pip:
pip install azure-schemaregistry-avroserializer azure-identity
Prerequisites:
To use this package, you must have:
- Azure subscription - Create a free account
- Azure Schema Registry
- Python 2.7, 3.5 or later - Install Python
Authenticate the client
Interaction with Schema Registry Avro Serializer starts with an instance of SchemaRegistryAvroSerializer class. You need the endpoint, AAD credential and schema group name to instantiate the client object.
Create client using the azure-identity library:
from azure.schemaregistry import SchemaRegistryClient
from azure.schemaregistry.serializer.avroserializer import SchemaRegistryAvroSerializer
from azure.identity import DefaultAzureCredential
credential = DefaultAzureCredential()
endpoint = '<< ENDPOINT OF THE SCHEMA REGISTRY >>'
schema_group = '<< GROUP NAME OF THE SCHEMA >>'
schema_registry_client = SchemaRegistryClient(endpoint, credential)
serializer = SchemaRegistryAvroSerializer(schema_registry_client, schema_group)
Key concepts
SchemaRegistryAvroSerializer
Provides API to serialize to and deserialize from Avro Binary Encoding plus a header with schema ID. Uses SchemaRegistryClient to get schema IDs from schema content or vice versa.
Message format
The same format is used by schema registry serializers across Azure SDK languages.
Messages are encoded as follows:
-
4 bytes: Format Indicator
- Currently always zero to indicate format below.
-
32 bytes: Schema ID
- UTF-8 hexadecimal representation of GUID.
- 32 hex digits, no hyphens.
- Same format and byte order as string from Schema Registry service.
-
Remaining bytes: Avro payload (in general, format-specific payload)
- Avro Binary Encoding
- NOT Avro Object Container File, which includes the schema and defeats the purpose of this serialzer to move the schema out of the message payload and into the schema registry.
Examples
The following sections provide several code snippets covering some of the most common Schema Registry tasks, including:
Serialization
import os
from azure.schemaregistry import SchemaRegistryClient
from azure.schemaregistry.serializer.avroserializer import SchemaRegistryAvroSerializer
from azure.identity import DefaultAzureCredential
token_credential = DefaultAzureCredential()
endpoint = os.environ['SCHEMA_REGISTRY_ENDPOINT']
schema_group = "<your-group-name>"
schema_registry_client = SchemaRegistryClient(endpoint, token_credential)
serializer = SchemaRegistryAvroSerializer(schema_registry_client, schema_group)
schema_string = """
{"namespace": "example.avro",
"type": "record",
"name": "User",
"fields": [
{"name": "name", "type": "string"},
{"name": "favorite_number", "type": ["int", "null"]},
{"name": "favorite_color", "type": ["string", "null"]}
]
}"""
with serializer:
dict_data = {"name": "Ben", "favorite_number": 7, "favorite_color": "red"}
encoded_bytes = serializer.serialize(dict_data, schema_string)
Deserialization
import os
from azure.schemaregistry import SchemaRegistryClient
from azure.schemaregistry.serializer.avroserializer import SchemaRegistryAvroSerializer
from azure.identity import DefaultAzureCredential
token_credential = DefaultAzureCredential()
endpoint = os.environ['SCHEMA_REGISTRY_ENDPOINT']
schema_group = "<your-group-name>"
schema_registry_client = SchemaRegistryClient(endpoint, token_credential)
serializer = SchemaRegistryAvroSerializer(schema_registry_client, schema_group)
with serializer:
encoded_bytes = b'<data_encoded_by_azure_schema_registry_avro_serializer>'
decoded_data = serializer.deserialize(encoded_bytes)
Troubleshooting
General
Azure Schema Registry Avro Serializer raise exceptions defined in Azure Core.
Logging
This library uses the standard logging library for logging. Basic information about HTTP sessions (URLs, headers, etc.) is logged at INFO level.
Detailed DEBUG level logging, including request/response bodies and unredacted
headers, can be enabled on a client with the logging_enable
argument:
import sys
import logging
from azure.schemaregistry import SchemaRegistryClient
from azure.schemaregistry.serializer.avroserializer import SchemaRegistryAvroSerializer
from azure.identity import DefaultAzureCredential
# Create a logger for the SDK
logger = logging.getLogger('azure.schemaregistry')
logger.setLevel(logging.DEBUG)
# Configure a console output
handler = logging.StreamHandler(stream=sys.stdout)
logger.addHandler(handler)
credential = DefaultAzureCredential()
schema_registry_client = SchemaRegistryClient("<your-end-point>", credential)
# This client will log detailed information about its HTTP sessions, at DEBUG level
serializer = SchemaRegistryAvroSerializer(schema_registry_client, "<your-group-name>", logging_enable=True)
Similarly, logging_enable
can enable detailed logging for a single operation,
even when it isn't enabled for the client:
serializer.serialie(dict_data, schema_content, logging_enable=True)
Next steps
More sample code
Please find further examples in the samples directory demonstrating common Azure Schema Registry Avro Serializer scenarios.
Contributing
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
Release History
1.0.0b1 (2020-09-09)
Version 1.0.0b1 is the first preview of our efforts to create a user-friendly and Pythonic client library for Azure Schema Registry Avro Serializer.
New features
SchemaRegistryAvroSerializer
is the top-level client class that provides the functionality to encode and decode avro data utilizing the avro library. It will automatically register schema and retrieve schema from Azure Schema Registry Service. It provides two methods:serialize
: Serialize dict data into bytes according to the given schema and register schema if needed.deserialize
: Deserialize bytes data into dict data by automatically retrieving schema from the service.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for azure-schemaregistry-avroserializer-1.0.0b1.zip
Algorithm | Hash digest | |
---|---|---|
SHA256 | b2072b1a2820ec22dc708c6877bab6935e2ce1c1f52cb00abe4e1d056c30f267 |
|
MD5 | daadeff996ebba78c7ef6f115a20781a |
|
BLAKE2b-256 | 37e3dc88c393aa11dc5644d82eeccddc336027939ac851c8aaffaccb76c7c547 |
Hashes for azure_schemaregistry_avroserializer-1.0.0b1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f7b85f719239d30ae8d4a632e9e75452fd8e9e51ef1f615053ec83b3f3aec194 |
|
MD5 | 157ed0dbe5b8d82455432b2e541d10e5 |
|
BLAKE2b-256 | e3cec1a064e58c6a7690e6240bcf82bd33fec9070b9a64755d2b7d3745644c15 |