Schemas for the Arrakis API
Project description
Arrakis Schema Specification
This repository defines the schema for all data, metadata and API requests for
the arrakis LIGO data distribution system.
Schemas are defined in one of two places:
endpoints/: Endpoints served from Arrakis serverpublication/: Data published into Kafka
Endpoints
The Arrakis server responds to API requests corresponding to the four main actions exposed by the client API:
- stream: endpoints/stream
- describe: endpoints/describe
- find: endpoints/find
- count: endpoints/count
as well as two actions which aid in publication:
- partition: endpoints/partition
- publish: endpoints/publish
All API requests are done in a two-stage approach by first sending an
Arrow Flight descriptor to the server, returning back a Flight info object
which contains the request and the server to contact, contained within
a Flight ticket. This ticket is then sent to receive back the expected
payload with a specific Arrow flight schema dependent on the request,
serialized in the Arrow
.
The Flight descriptors sent to the server in the first stage are all specified here as JSON packets which are UTF-8-encoded, using the command variant of the Flight descriptor, which can be used to specify any application-specific command.
The Flight descriptor schemas are described within each endpoint in
descriptor.json, while the payload schemas are described via schema.txt. In
addition, a generic descriptor specification for all endpoints is described in
endpoints/descriptor.json.
Versioning
The request schema set is versioned by the package version
(arrakis_schema.SCHEMA_VERSION), which follows semver: releases that
change the schemas bump the minor version when additive and the major
version when breaking (while pre-1.0, the minor position carries breaking
changes, per the usual caret convention). Clients stamp this version into
the request envelope (the optional top-level version field) so servers
can report actionable errors for requests newer than they support.
Publication
Publication is done by first registering a publisher via the publish endpoint with a publisher ID. If authorized to do so, the server will send a response with connection details to connect via Kafka to publish data.
The data is published via Kafka with the schema described in publication/schema.txt.
Packaging
The schema set is packaged twice from this repository, for the two client languages:
- Python: the
arrakis-schemawheel, with the schema documents as package data. - Rust: the
arrakis-schemacrate, embedding the same documents at compile time and mirroring the Python API (SCHEMA_VERSION,load_schema,parse_version,supports).
The version is single-sourced: Cargo.toml holds the one literal
(Cargo cannot read an external version) and the Python packaging
derives its version from it, so one release tag publishes both. The
version-comparison test vectors
(arrakis_schema/tests/version_vectors.json) are shared by both test
suites so the two implementations are pinned to identical semantics.
A nix flake provides a development environment covering both
packagings (nix develop).
Usage
Python
The generic Flight descriptor schema is described within each endpoint in
{endpoint}.json. In addition, a generic descriptor specification for all
endpoints is described in descriptor.json.
from arrakis_schema import load_schema
schema = load_schema("count.json")
Project details
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file arrakis_schema-0.5.0.tar.gz.
File metadata
- Download URL: arrakis_schema-0.5.0.tar.gz
- Upload date:
- Size: 82.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Hatch/1.16.5 cpython/3.13.12 HTTPX/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a8170aa4becf964c10c5f75e9f3fdeb492ed18be3892f3bda62b3dbe7c1140be
|
|
| MD5 |
28659a1e565816590323febd12f01b1b
|
|
| BLAKE2b-256 |
91812ad9f27ba2bf3dd933c21b0e80c86003d9894b0f2b436345426fd2ee60fa
|
File details
Details for the file arrakis_schema-0.5.0-py3-none-any.whl.
File metadata
- Download URL: arrakis_schema-0.5.0-py3-none-any.whl
- Upload date:
- Size: 13.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: Hatch/1.16.5 cpython/3.13.12 HTTPX/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e30660ecae40b049d896831187c48c0fcea98bc8ad4bf5042d8a24681c19245e
|
|
| MD5 |
c0bb9e0d55e98128aeddced3bc79a179
|
|
| BLAKE2b-256 |
0873dfc894155c87609d1cf04ecc3594f0e947629a2132ba15b1f36701a27e30
|