Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arkitektio/rekuest-server-next
developmental repo for rekuest: node management and distibuted task assignment for the arkitekt platform
https://github.com/arkitektio/rekuest-server-next
arkitekt-server experimental next rekuest
Last synced: about 1 month ago
JSON representation
developmental repo for rekuest: node management and distibuted task assignment for the arkitekt platform
- Host: GitHub
- URL: https://github.com/arkitektio/rekuest-server-next
- Owner: arkitektio
- Created: 2023-09-01T16:26:21.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-12T17:37:25.000Z (about 2 months ago)
- Last Synced: 2024-12-12T18:33:18.149Z (about 2 months ago)
- Topics: arkitekt-server, experimental, next, rekuest
- Language: Python
- Homepage: https://arkitekt.live
- Size: 537 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rekuest-Server (Next)
[![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://github.com/arkitektio/rekuest-server/)
![Maintainer](https://img.shields.io/badge/maintainer-jhnnsrs-blue)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)Rekuest is one of the core services of Arkitekt. It represents a central repository of
all the connected apps and their provided functionality, their [Nodes](https://arkitekt.live/docs/terminology/nodes).
It also provides ways of interacting with the apps, by providing a central access point, that
apps and users can assign tasks to. Rekuest then takes care of routing the requests to the
appropriate app, which executres the task and returns the result to rekuest, which in turn routes it back
to the caller. Similar to all other Arkitekt ervices, Rekuest exposes a GraphQL API, that can be used to interact with it.
You can find the interactive documentation for the API [here](https://arkitekt.live/explorer).> [!NOTE]
> What you are currently looking at is the next version of rekuest. It is currently under development and not ready for production. If you are looking for the current version of Rekeust, you can find it [here](https://github.com/arkitektio/rekuest-server).## Rekuest Design
Rekuest itself is designed as a stateless service (in order to be able to scale horizontally), and
interfaces with proven open-source technologies, such as [Redis](https://redis.io/) and [RabbitMQ](https://www.rabbitmq.com/).
to route tasks to the appropriate apps. The following diagram shows the high-level design of Rekuest:![Rekuest Design](./docs/schema.png)
## Developmental Notices
Rekuest is currently being rewritten to support other message brokers, such as [Kafka](https://kafka.apache.org/). This will
however remain an opt-in feature, and RabbitMQ will remain the default message broker. To learn more about this design decision,
please refer to the [Why Not?](https://arkitekt.live/docs/design/why-not) section.You can find the current developmental node of Rekuest [here](https://github.com/arkitektio/rekuest-server-next)
Efforts from this new repository will be merged into this repository once the new version is ready for production.