Async-native Redis-backed RPC and job queue
Project description
Raddish
Raddish is mix of RPC and job queue backed by Redis. You can launch multiple servers that will accept the same function calls in a round-robin fashion. From the client side you can asynchronously submit jobs and block the execution until they are completed.
Getting started
- Implement a server
import asyncio
import logging
import os
from redis.asyncio import Redis
from rich.logging import RichHandler
from raddish import RaddishServer, AsyncWorker
logging.basicConfig(
level=logging.INFO,
format="%(message)s",
datefmt="[%X]",
handlers=[RichHandler(rich_tracebacks=True)],
)
logger = logging.getLogger("raddish-test")
class TestWorker(AsyncWorker):
async def setup(self) -> None:
logger.info("Setting up test worker")
async def __call__(self, input: dict[str, any]) -> dict[str, any]:
logger.info(f"Received input: {input}")
input: int = input["number"]
input += 1
await asyncio.sleep(10)
return {
"number": input,
}
async def main() -> None:
redis_client: Redis = Redis.from_url(
os.environ.get("REDIS_URL", "redis://localhost:6379")
)
server: RaddishServer = RaddishServer(redis_client)
server.add_worker("add_one", TestWorker())
await server.start()
if __name__ == "__main__":
loop = asyncio.get_event_loop()
loop.run_until_complete(main())
- Implement a client
import asyncio
import logging
import os
from redis.asyncio import Redis
from rich.logging import RichHandler
from raddish import AsyncRaddishClient
logging.basicConfig(
level=logging.INFO,
format="%(message)s",
datefmt="[%X]",
handlers=[RichHandler(rich_tracebacks=True)],
)
logger = logging.getLogger("raddish-test")
async def main() -> None:
redis_client: Redis = Redis.from_url(
os.environ.get("REDIS_URL", "redis://localhost:6379")
)
client: AsyncRaddishClient = AsyncRaddishClient(redis_client)
counter: int = 0
for _ in range(5):
logger.info(f"Sending input {counter}")
counter = (await client.call("add_one", {"number": counter}))["number"]
logger.info(f"Received output {counter}")
if __name__ == "__main__":
loop = asyncio.get_event_loop()
loop.run_until_complete(main())
- Launch one or more servers
python server.py
- Launch one or more clients
python client.py
Features
- You can add servers at any time in order to increase capacity
- Asyncio-native
- Servers can be located anywhere where there is internet, no need to have public ip - you only need to be able to connect to the redis server
License
Raddish is licensed under Apache License, Version 2.0
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
raddish-0.2.2.tar.gz
(9.7 kB
view details)
Built Distribution
raddish-0.2.2-py3-none-any.whl
(11.5 kB
view details)
File details
Details for the file raddish-0.2.2.tar.gz
.
File metadata
- Download URL: raddish-0.2.2.tar.gz
- Upload date:
- Size: 9.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9e12dc7cb87225b3d64bd2deac698f0ced0634bbe0d4413f0e1f8663440faa37 |
|
MD5 | 298a9c25fdafcd6e6393514ef6dc1e93 |
|
BLAKE2b-256 | 571a34c56dd1a62124f17144cda6ec1594a5a399e884c4bd55e14c2c049b0264 |
File details
Details for the file raddish-0.2.2-py3-none-any.whl
.
File metadata
- Download URL: raddish-0.2.2-py3-none-any.whl
- Upload date:
- Size: 11.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab76de836fd75c2a3e12cd2cd15c9976a1f124cac28846e25d29daa52f548ab8 |
|
MD5 | d6ce66ab29fdc3010f468bf781a50203 |
|
BLAKE2b-256 | 75a7b109d4d54dfa5b2a2376b7728da70030f54d24ad755b16a17424efd225e9 |