RegistryApi#
- class kafkit.registry.sansio.RegistryApi(*, url)#
Bases:
object
A baseclass for Confluent Schema Registry clients.
- Parameters:
url (
str
) –
Attributes Summary
The schema cache (
SchemaCache
).The subject cache (
SubjectCache
).Methods Summary
delete
(url[, url_vars, data])Send an HTTP DELETE request.
get
(url[, url_vars])Send an HTTP GET request.
get_schema_by_id
(schema_id)Get a schema from the registry given its ID.
get_schema_by_subject
(subject[, version])Get a schema for a subject in the registry.
patch
(url[, url_vars])Send an HTTP PATCH request.
post
(url[, url_vars])Send an HTTP POST request.
put
(url[, url_vars, data])Send an HTTP PUT request.
register_schema
(schema[, subject, compatibility])Register a schema or get the ID of an existing schema.
set_subject_compatibility
(subject, compatibility)- param subject:
Attributes Documentation
- schema_cache#
The schema cache (~kafkit.registry.sansio.SchemaCache).
- subject_cache#
The subject cache (~kafkit.registry.sansio.SubjectCache).
Methods Documentation
- async delete(url, url_vars=None, *, data=b'')#
Send an HTTP DELETE request.
- Parameters:
url (str) – The endpoint path, usually relative to the
RegistryApi.url
attribute (an absolute URL is also okay). The url can be templated (/a{/b}/c
, whereb
is a variable).url_vars (dict, optional) – A dictionary of variable names and values to expand the templated
url
parameter.data (
Any
, default:b''
) –
- Returns:
data – The response body. If the response is JSON, the data is parsed into a Python object.
- Return type:
- Raises:
kafkit.registry.RegistryRedirectionError – Raised if the server returns a 3XX status.
kafkit.registry.RegistryBadRequestError – Raised if the server returns a 4XX status because the request is incorrect, not authenticated, or not authorized.
kafkit.registry.RegistryBrokenError – Raised if the server returns a 5XX status because something is wrong with the server itself.
- async get(url, url_vars=None)#
Send an HTTP GET request.
- Parameters:
url (str) – The endpoint path, usually relative to the
RegistryApi.url
attribute (an absolute URL is also okay). The url can be templated (/a{/b}/c
, whereb
is a variable).url_vars (dict, optional) – A dictionary of variable names and values to expand the templated
url
parameter.
- Returns:
data – The response body. If the response is JSON, the data is parsed into a Python object.
- Return type:
- Raises:
kafkit.registry.RegistryRedirectionError – Raised if the server returns a 3XX status.
kafkit.registry.RegistryBadRequestError – Raised if the server returns a 4XX status because the request is incorrect, not authenticated, or not authorized.
kafkit.registry.RegistryBrokenError – Raised if the server returns a 5XX status because something is wrong with the server itself.
- async get_schema_by_id(schema_id)#
Get a schema from the registry given its ID.
Wraps
GET /schemas/ids/{int: id}
.- Parameters:
schema_id (int) – The ID of the schema in the registry.
- Returns:
schema – The Avro schema. The schema is pre-parsed by fastavro.parse_schema <fastavro._schema_py.parse_schema>.
- Return type:
dict
See also
Notes
The schema and ID are cached locally so that repeated calls are fast. This cache is shared by other high-level methods, like register_schema.
- async get_schema_by_subject(subject, version='latest')#
Get a schema for a subject in the registry.
Wraps
GET /subjects/(string: subject)/versions/(versionId: version)
- Parameters:
subject (str) – Name of the subject in the Schema Registry.
version (int or str, optional) – The version of the schema with respect to the
subject
. To get the latest schema, supply"latest"
(default).
- Returns:
schema_info – A dictionary with the schema and metadata about the schema. The keys are:
"schema"
The schema itself, preparsed by fastavro.parse_schema <fastavro._schema_py.parse_schema>.
"subject"
The subject this schema is registered under in the registry.
"version"
The version of this schema with respect to the
subject
."id"
The ID of this schema (compatible with get_schema_by_id).
- Return type:
dict
See also
Notes
Results from this method are cached locally, so repeated calls are fast. Keep in mind that any call with the
version
parameter set to"latest"
will always miss the cache. The schema is still cached, though, under it’s true subject version. If you app repeatedly calls this method, and you want to make use of caching, replace"latest"
versions with integer versions once they’re known.
- async patch(url, url_vars=None, *, data)#
Send an HTTP PATCH request.
- Parameters:
url (str) – The endpoint path, usually relative to the
RegistryApi.url
attribute (an absolute URL is also okay). The url can be templated (/a{/b}/c
, whereb
is a variable).url_vars (dict, optional) – A dictionary of variable names and values to expand the templated
url
parameter.data (object) – The body of the request as a JSON-serializable object.
- Returns:
data – The response body. If the response is JSON, the data is parsed into a Python object.
- Return type:
- Raises:
kafkit.registry.RegistryRedirectionError – Raised if the server returns a 3XX status.
kafkit.registry.RegistryBadRequestError – Raised if the server returns a 4XX status because the request is incorrect, not authenticated, or not authorized.
kafkit.registry.RegistryBrokenError – Raised if the server returns a 5XX status because something is wrong with the server itself.
- async post(url, url_vars=None, *, data)#
Send an HTTP POST request.
- Parameters:
url (str) – The endpoint path, usually relative to the
RegistryApi.url
attribute (an absolute URL is also okay). The url can be templated (/a{/b}/c
, whereb
is a variable).url_vars (dict, optional) – A dictionary of variable names and values to expand the templated
url
parameter.data (object) – The body of the request as a JSON-serializable object.
- Returns:
data – The response body. If the response is JSON, the data is parsed into a Python object.
- Return type:
- Raises:
kafkit.registry.RegistryRedirectionError – Raised if the server returns a 3XX status.
kafkit.registry.RegistryBadRequestError – Raised if the server returns a 4XX status because the request is incorrect, not authenticated, or not authorized.
kafkit.registry.RegistryBrokenError – Raised if the server returns a 5XX status because something is wrong with the server itself.
- async put(url, url_vars=None, data=b'')#
Send an HTTP PUT request.
- Parameters:
url (str) – The endpoint path, usually relative to the
RegistryApi.url
attribute (an absolute URL is also okay). The url can be templated (/a{/b}/c
, whereb
is a variable).url_vars (dict, optional) – A dictionary of variable names and values to expand the templated
url
parameter.data (bytes, optional) – The body of the request as a JSON-serializable object.
- Returns:
data – The response body. If the response is JSON, the data is parsed into a Python object.
- Return type:
- Raises:
kafkit.registry.RegistryRedirectionError – Raised if the server returns a 3XX status.
kafkit.registry.RegistryBadRequestError – Raised if the server returns a 4XX status because the request is incorrect, not authenticated, or not authorized.
kafkit.registry.RegistryBrokenError – Raised if the server returns a 5XX status because something is wrong with the server itself.
- async register_schema(schema, subject=None, compatibility=None)#
Register a schema or get the ID of an existing schema.
Wraps
POST /subjects/(string: subject)/versions
.- Parameters:
schema (dict) – An Avro schema as a Python dictionary.
subject (str, optional) – The subject to register the schema under. If not provided, the fully-qualified name of the schema is adopted as the subject name.
compatibility (str, optional) – The compatibility level to use for the subject. If not provided, the existing compatibility level is used (or the server’s default compatibility level if subject does not have a specific compatibility level).
- Returns:
schema_id – The ID of the schema in the registry.
- Return type:
int
Notes
The schema and ID are cached locally so that repeated calls are fast. This cache is shared by other high-level methods, like get_schema_by_id.