RegistryApi¶
-
class
kafkit.registry.aiohttp.
RegistryApi
(*, session: ClientSession, url: str)¶ Bases:
kafkit.registry.sansio.RegistryApi
A Confluent Schema Registry client that uses aiohttp.
Parameters: - session (
aiohttp.ClientSession
) – An aiohttp client session. - url (
str
) – The Confluent Schema Registry URL (e.g. http://registry:8081).
Attributes Summary
schema_cache
The schema cache ( SchemaCache
).subject_cache
The subject cache ( SubjectCache
).Methods Summary
delete
(url, url_vars, str]] = None, *, data)Send an HTTP DELETE request. get
(url, url_vars, str]] = None)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, int] =)Get a schema for a subject in the registry. patch
(url, url_vars, Any]] = None, *, data)Send an HTTP PATCH request. post
(url, url_vars, str]] = None, *, data)Send an HTTP POST request. put
(url, url_vars, str]] = None, data)Send an HTTP PUT request. register_schema
(schema, Any], subject)Register a schema or get the ID of an existing schema. Attributes Documentation
-
schema_cache
¶ The schema cache (
SchemaCache
).
-
subject_cache
¶ The subject cache (
SubjectCache
).
Methods Documentation
-
delete
(url: str, url_vars: Optional[Mapping[str, str]] = None, *, data: Any = b'') → Any¶ Send an HTTP DELETE request.
Parameters: - url (
str
) – The endpoint path, usually relative to theRegistryApi.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 templatedurl
parameter. - data (object, optional) – The body of the request as a JSON-serializable object.
Returns: The response body. If the response is JSON, the data is parsed into a Python object.
Return type: data
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.
- url (
-
get
(url: str, url_vars: Optional[Mapping[str, str]] = None) → Any¶ Send an HTTP GET request.
Parameters: Returns: The response body. If the response is JSON, the data is parsed into a Python object.
Return type: data
Raises: kafkit.registry.RegistryRedirectionError
– Raised if the server returns a 3XX status.kafkit.registry.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.
-
get_schema_by_id
(schema_id: int) → Dict[str, Any]¶ 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
.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
.
-
get_schema_by_subject
(subject: str, version: Union[str, int] = 'latest') → Dict[str, Any]¶ Get a schema for a subject in the registry.
Wraps
GET /subjects/(string: subject)/versions/(versionId: version)
Parameters: 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
."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: 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.
-
patch
(url: str, url_vars: Optional[Mapping[Any, Any]] = None, *, data: Any) → Any¶ Send an HTTP PATCH request.
Parameters: - url (
str
) – The endpoint path, usually relative to theRegistryApi.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 templatedurl
parameter. - data (object) – The body of the request as a JSON-serializable object.
Returns: The response body. If the response is JSON, the data is parsed into a Python object.
Return type: data
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.
- url (
-
post
(url: str, url_vars: Optional[Mapping[str, str]] = None, *, data: Any) → Any¶ Send an HTTP POST request.
Parameters: - url (
str
) – The endpoint path, usually relative to theRegistryApi.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 templatedurl
parameter. - data (object) – The body of the request as a JSON-serializable object.
Returns: The response body. If the response is JSON, the data is parsed into a Python object.
Return type: data
Raises: kafkit.registry.RegistryRedirectionError
– Raised if the server returns a 3XX status.kafkit.registry.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.
- url (
-
put
(url: str, url_vars: Optional[Mapping[str, str]] = None, data: Any = b'') → Any¶ Send an HTTP PUT request.
Parameters: - url (
str
) – The endpoint path, usually relative to theRegistryApi.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 templatedurl
parameter. - data (object, optional) – The body of the request as a JSON-serializable object.
Returns: The response body. If the response is JSON, the data is parsed into a Python object.
Return type: data
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.
- url (
-
register_schema
(schema: Mapping[str, Any], subject: Optional[str] = None) → int¶ 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.
Returns: schema_id – The ID of the schema in the registry.
Return type: 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
.- schema (
- session (