Cloud native framework for building event driven applications in Python.
Project description
Cloud native framework for building event driven applications in Python
Note: This package is under active development and is not recommended for production use
Version: 0.1.23
Documentation: https://performancemedia.github.io/eventiq/
Repository: https://github.com/performancemedia/eventiq
About
The package utilizes anyio
and pydantic
as the only required dependencies.
For messages Cloud Events format is used.
Service can be run as standalone processes, or included into starlette (e.g. FastAPI) applications.
Installation
pip install eventiq
Multiple broker support (in progress)
- Stub (in memory using
asyncio.Queue
for PoC, local development and testing) - NATS (with JetStream)
- Redis Pub/Sub
- Kafka
- Rabbitmq
- Google Cloud PubSub
- And more coming
Optional Dependencies
cli
-typer
- broker of choice:
nats
,kafka
,rabbitmq
,redis
,pubsub
- custom message serializers:
msgpack
,orjson
prometheus
- Metric exposure viaPrometheusMiddleware
opentelemetry
- tracing support
Motivation
Python has many "worker-queue" libraries and frameworks, such as:
However, those libraries don't provide a pub/sub pattern, useful for creating
event driven and loosely coupled systems. Furthermore, the majority of those libraries
do not support asyncio
. This is why this project was born.
Basic usage
import asyncio
from eventiq import Service, CloudEvent, Middleware
from eventiq.backends.nats.broker import JetStreamBroker
class SendMessageMiddleware(Middleware):
async def after_broker_connect(self, broker: "Broker") -> None:
print(f"After service start, running with {broker}")
await asyncio.sleep(10)
for i in range(100):
await broker.publish("test.topic", data={"counter": i})
print("Published event(s)")
broker = JetStreamBroker(url="nats://localhost:4222")
broker.add_middleware(SendMessageMiddleware())
service = Service(name="example-service", broker=broker)
@service.subscribe("test.topic")
async def example_run(message: CloudEvent):
print(f"Received Message {message.id} with data: {message.data}")
if __name__ == "__main__":
service.run()
Scaling
Each message is load-balanced (depending on broker) between all service instances with the same name
.
To scale number of processes you can use containers (docker/k8s), supervisor,
or web server like gunicorn.
Features
- Modern,
asyncio
based python 3.8+ syntax - Minimal dependencies, only
pydantic
andpython-json-logger
are required - Automatic message parsing based on type annotations (like FastAPI)
- Code hot-reload
- Highly scalable: each service can process hundreds of tasks concurrently, all messages are load balanced between all instances by default
- Resilient - at least once delivery for all messages by default
- Customizable & pluggable message encoders (json, msgpack, custom)
- Json formatted logger
- Multiple broker support (Nats, Kafka, Rabbitmq, Redis, PubSub, and more coming)
- Easily extensible via Middlewares and Plugins
- Cloud Events standard as base message structure (no more python specific
*args
and**kwargs
in messages) - AsyncAPI documentation generation from code
- Twelve factor app approach - stdout logging, configuration through environment variables
- Out-of-the-box integration with Prometheus (metrics) and OpenTelemetry (tracing)
- Application bootstrap via
.yaml
file (see examples/configuration)
Project details
Release history Release notifications | RSS feed
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
File details
Details for the file eventiq-0.1.23.tar.gz
.
File metadata
- Download URL: eventiq-0.1.23.tar.gz
- Upload date:
- Size: 35.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 089ccb04369e3fe46178fa336785da07f0db6c94056bbebc41dc400081b19c1c |
|
MD5 | 5a49bcfb2942a111e0b63b02cfd94739 |
|
BLAKE2b-256 | b4b95e617d95c93537b5b47a6ed60dd2ec5f39b92f9616ab522990dbf2b9e6be |
File details
Details for the file eventiq-0.1.23-py3-none-any.whl
.
File metadata
- Download URL: eventiq-0.1.23-py3-none-any.whl
- Upload date:
- Size: 53.2 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 | 35b11eedd7315874ddabf686cfd8264ee0b1ba09c2823a5845fb4f81e8842968 |
|
MD5 | 9b520a7c6287447cdccbbbaf35d6d3c2 |
|
BLAKE2b-256 | 61fc658f4238d7b765b5a42e557bed7cf309fe428313c312b19b97f969aa88c0 |